sessiond: add clear notifier
[lttng-tools.git] / src / bin / lttng-sessiond / session.c
CommitLineData
5b74c7b1
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
d14d33bf
AM
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
91d76f53 7 *
5b74c7b1
DG
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
d14d33bf 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5b74c7b1
DG
11 * GNU General Public License for more details.
12 *
d14d33bf
AM
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
5b74c7b1
DG
16 */
17
6c1c0768 18#define _LGPL_SOURCE
6c9cc2ab 19#include <limits.h>
d022620a 20#include <inttypes.h>
5b74c7b1
DG
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
a304c14c 24#include <sys/stat.h>
f6a9efaa 25#include <urcu.h>
3d071855
MD
26#include <dirent.h>
27#include <sys/types.h>
99d688f2 28#include <pthread.h>
5b74c7b1 29
990570ed 30#include <common/common.h>
82b69413
JG
31#include <common/utils.h>
32#include <common/trace-chunk.h>
db758600 33#include <common/sessiond-comm/sessiond-comm.h>
5d65beab 34#include <lttng/location-internal.h>
e32d7f27
JG
35#include "lttng-sessiond.h"
36#include "kernel.h"
1e307fab 37
5b74c7b1 38#include "session.h"
23324029 39#include "utils.h"
dd73d57b 40#include "trace-ust.h"
a7333da7 41#include "timer.h"
7fdbed1c 42#include "cmd.h"
5b74c7b1 43
3e3665b8
JG
44struct ltt_session_destroy_notifier_element {
45 ltt_session_destroy_notifier notifier;
46 void *user_data;
47};
48
ccbdaca4
MD
49struct ltt_session_clear_notifier_element {
50 ltt_session_clear_notifier notifier;
51 void *user_data;
52};
53
8c0faa1d 54/*
b5541356 55 * NOTES:
8c0faa1d 56 *
b5541356
DG
57 * No ltt_session.lock is taken here because those data structure are widely
58 * spread across the lttng-tools code base so before caling functions below
59 * that can read/write a session, the caller MUST acquire the session lock
54d01ffb 60 * using session_lock() and session_unlock().
8c0faa1d 61 */
8c0faa1d 62
5b74c7b1 63/*
b5541356 64 * Init tracing session list.
5b74c7b1 65 *
b5541356 66 * Please see session.h for more explanation and correct usage of the list.
5b74c7b1 67 */
b5541356
DG
68static struct ltt_session_list ltt_session_list = {
69 .head = CDS_LIST_HEAD_INIT(ltt_session_list.head),
70 .lock = PTHREAD_MUTEX_INITIALIZER,
99d688f2 71 .removal_cond = PTHREAD_COND_INITIALIZER,
a24f7994 72 .next_uuid = 0,
b5541356 73};
5b74c7b1 74
1c1c3634
DG
75/* These characters are forbidden in a session name. Used by validate_name. */
76static const char *forbidden_name_chars = "/";
77
23324029
JD
78/* Global hash table to keep the sessions, indexed by id. */
79static struct lttng_ht *ltt_sessions_ht_by_id = NULL;
80
1c1c3634
DG
81/*
82 * Validate the session name for forbidden characters.
83 *
84 * Return 0 on success else -1 meaning a forbidden char. has been found.
85 */
86static int validate_name(const char *name)
87{
88 int ret;
89 char *tok, *tmp_name;
90
91 assert(name);
92
93 tmp_name = strdup(name);
94 if (!tmp_name) {
95 /* ENOMEM here. */
96 ret = -1;
97 goto error;
98 }
99
100 tok = strpbrk(tmp_name, forbidden_name_chars);
101 if (tok) {
102 DBG("Session name %s contains a forbidden character", name);
103 /* Forbidden character has been found. */
104 ret = -1;
105 goto error;
106 }
107 ret = 0;
108
109error:
110 free(tmp_name);
111 return ret;
112}
113
5b74c7b1 114/*
050349bb 115 * Add a ltt_session structure to the global list.
5b74c7b1 116 *
050349bb 117 * The caller MUST acquire the session list lock before.
44e96653 118 * Returns the unique identifier for the session.
5b74c7b1 119 */
d022620a 120static uint64_t add_session_list(struct ltt_session *ls)
5b74c7b1 121{
0525e9ae
DG
122 assert(ls);
123
5b74c7b1 124 cds_list_add(&ls->list, &ltt_session_list.head);
a24f7994 125 return ltt_session_list.next_uuid++;
5b74c7b1
DG
126}
127
128/*
050349bb 129 * Delete a ltt_session structure to the global list.
b5541356 130 *
050349bb 131 * The caller MUST acquire the session list lock before.
5b74c7b1
DG
132 */
133static void del_session_list(struct ltt_session *ls)
134{
0525e9ae
DG
135 assert(ls);
136
5b74c7b1 137 cds_list_del(&ls->list);
5b74c7b1
DG
138}
139
b5541356 140/*
050349bb 141 * Return a pointer to the session list.
b5541356 142 */
54d01ffb 143struct ltt_session_list *session_get_list(void)
b5541356
DG
144{
145 return &ltt_session_list;
146}
147
99d688f2
JG
148/*
149 * Returns once the session list is empty.
150 */
151void session_list_wait_empty(void)
152{
153 pthread_mutex_lock(&ltt_session_list.lock);
154 while (!cds_list_empty(&ltt_session_list.head)) {
155 pthread_cond_wait(&ltt_session_list.removal_cond,
156 &ltt_session_list.lock);
157 }
158 pthread_mutex_unlock(&ltt_session_list.lock);
159}
160
b5541356 161/*
6c9cc2ab 162 * Acquire session list lock
b5541356 163 */
54d01ffb 164void session_lock_list(void)
b5541356 165{
6c9cc2ab 166 pthread_mutex_lock(&ltt_session_list.lock);
b5541356
DG
167}
168
71e0a100
JG
169/*
170 * Try to acquire session list lock
171 */
172int session_trylock_list(void)
173{
174 return pthread_mutex_trylock(&ltt_session_list.lock);
175}
176
b5541356 177/*
6c9cc2ab 178 * Release session list lock
b5541356 179 */
54d01ffb 180void session_unlock_list(void)
b5541356 181{
6c9cc2ab 182 pthread_mutex_unlock(&ltt_session_list.lock);
b5541356
DG
183}
184
dd73d57b
JG
185/*
186 * Get the session's consumer destination type.
187 *
188 * The caller must hold the session lock.
189 */
190enum consumer_dst_type session_get_consumer_destination_type(
191 const struct ltt_session *session)
192{
193 /*
194 * The output information is duplicated in both of those session types.
195 * Hence, it doesn't matter from which it is retrieved. However, it is
196 * possible for only one of them to be set.
197 */
198 return session->kernel_session ?
199 session->kernel_session->consumer->type :
200 session->ust_session->consumer->type;
201}
202
203/*
204 * Get the session's consumer network hostname.
205 * The caller must ensure that the destination is of type "net".
206 *
207 * The caller must hold the session lock.
208 */
209const char *session_get_net_consumer_hostname(const struct ltt_session *session)
210{
211 const char *hostname = NULL;
212 const struct consumer_output *output;
213
214 output = session->kernel_session ?
215 session->kernel_session->consumer :
216 session->ust_session->consumer;
217
218 /*
219 * hostname is assumed to be the same for both control and data
220 * connections.
221 */
222 switch (output->dst.net.control.dtype) {
223 case LTTNG_DST_IPV4:
224 hostname = output->dst.net.control.dst.ipv4;
225 break;
226 case LTTNG_DST_IPV6:
227 hostname = output->dst.net.control.dst.ipv6;
228 break;
229 default:
230 abort();
231 }
232 return hostname;
233}
234
235/*
236 * Get the session's consumer network control and data ports.
237 * The caller must ensure that the destination is of type "net".
238 *
239 * The caller must hold the session lock.
240 */
241void session_get_net_consumer_ports(const struct ltt_session *session,
242 uint16_t *control_port, uint16_t *data_port)
243{
244 const struct consumer_output *output;
245
246 output = session->kernel_session ?
247 session->kernel_session->consumer :
248 session->ust_session->consumer;
249 *control_port = output->dst.net.control.port;
250 *data_port = output->dst.net.data.port;
251}
252
5d65beab
JG
253/*
254 * Get the location of the latest trace archive produced by a rotation.
255 *
256 * The caller must hold the session lock.
257 */
258struct lttng_trace_archive_location *session_get_trace_archive_location(
3e3665b8 259 const struct ltt_session *session)
5d65beab 260{
d2956687 261 int ret;
5d65beab 262 struct lttng_trace_archive_location *location = NULL;
d2956687
JG
263 char *chunk_path = NULL;
264
265 if (session->rotation_state != LTTNG_ROTATION_STATE_COMPLETED ||
266 !session->last_archived_chunk_name) {
267 goto end;
268 }
5d65beab 269
5d65beab
JG
270 switch (session_get_consumer_destination_type(session)) {
271 case CONSUMER_DST_LOCAL:
ecd1a12f
MD
272 ret = asprintf(&chunk_path,
273 "%s/" DEFAULT_ARCHIVED_TRACE_CHUNKS_DIRECTORY "/%s",
274 session_get_base_path(session),
275 session->last_archived_chunk_name);
276 if (ret == -1) {
277 goto end;
278 }
5d65beab 279 location = lttng_trace_archive_location_local_create(
d2956687 280 chunk_path);
5d65beab
JG
281 break;
282 case CONSUMER_DST_NET:
283 {
284 const char *hostname;
285 uint16_t control_port, data_port;
286
287 hostname = session_get_net_consumer_hostname(session);
288 session_get_net_consumer_ports(session,
289 &control_port,
290 &data_port);
291 location = lttng_trace_archive_location_relay_create(
292 hostname,
293 LTTNG_TRACE_ARCHIVE_LOCATION_RELAY_PROTOCOL_TYPE_TCP,
ecd1a12f 294 control_port, data_port, session->last_chunk_path);
5d65beab
JG
295 break;
296 }
297 default:
298 abort();
299 }
300end:
d2956687 301 free(chunk_path);
5d65beab
JG
302 return location;
303}
304
23324029
JD
305/*
306 * Allocate the ltt_sessions_ht_by_id HT.
9c6518bc
JG
307 *
308 * The session list lock must be held.
23324029 309 */
f848281f 310static int ltt_sessions_ht_alloc(void)
23324029
JD
311{
312 int ret = 0;
313
314 DBG("Allocating ltt_sessions_ht_by_id");
315 ltt_sessions_ht_by_id = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
316 if (!ltt_sessions_ht_by_id) {
317 ret = -1;
318 ERR("Failed to allocate ltt_sessions_ht_by_id");
319 goto end;
320 }
321end:
322 return ret;
323}
324
325/*
326 * Destroy the ltt_sessions_ht_by_id HT.
9c6518bc
JG
327 *
328 * The session list lock must be held.
23324029 329 */
accdc9bf 330static void ltt_sessions_ht_destroy(void)
23324029
JD
331{
332 if (!ltt_sessions_ht_by_id) {
333 return;
334 }
335 ht_cleanup_push(ltt_sessions_ht_by_id);
336 ltt_sessions_ht_by_id = NULL;
337}
338
339/*
340 * Add a ltt_session to the ltt_sessions_ht_by_id.
341 * If unallocated, the ltt_sessions_ht_by_id HT is allocated.
342 * The session list lock must be held.
343 */
344static void add_session_ht(struct ltt_session *ls)
345{
346 int ret;
347
348 assert(ls);
349
350 if (!ltt_sessions_ht_by_id) {
351 ret = ltt_sessions_ht_alloc();
352 if (ret) {
353 ERR("Error allocating the sessions HT");
354 goto end;
355 }
356 }
357 lttng_ht_node_init_u64(&ls->node, ls->id);
358 lttng_ht_add_unique_u64(ltt_sessions_ht_by_id, &ls->node);
359
360end:
361 return;
362}
363
364/*
365 * Test if ltt_sessions_ht_by_id is empty.
366 * Return 1 if empty, 0 if not empty.
367 * The session list lock must be held.
368 */
def88971 369static int ltt_sessions_ht_empty(void)
23324029
JD
370{
371 int ret;
372
373 if (!ltt_sessions_ht_by_id) {
374 ret = 1;
375 goto end;
376 }
377
378 ret = lttng_ht_get_count(ltt_sessions_ht_by_id) ? 0 : 1;
379end:
380 return ret;
381}
382
383/*
384 * Remove a ltt_session from the ltt_sessions_ht_by_id.
385 * If empty, the ltt_sessions_ht_by_id HT is freed.
386 * The session list lock must be held.
387 */
388static void del_session_ht(struct ltt_session *ls)
389{
390 struct lttng_ht_iter iter;
391 int ret;
392
393 assert(ls);
394 assert(ltt_sessions_ht_by_id);
395
396 iter.iter.node = &ls->node.node;
397 ret = lttng_ht_del(ltt_sessions_ht_by_id, &iter);
398 assert(!ret);
399
400 if (ltt_sessions_ht_empty()) {
401 DBG("Empty ltt_sessions_ht_by_id, destroying it");
402 ltt_sessions_ht_destroy();
403 }
404}
405
b5541356 406/*
6c9cc2ab 407 * Acquire session lock
b5541356 408 */
54d01ffb 409void session_lock(struct ltt_session *session)
b5541356 410{
0525e9ae
DG
411 assert(session);
412
6c9cc2ab
DG
413 pthread_mutex_lock(&session->lock);
414}
b5541356 415
6c9cc2ab
DG
416/*
417 * Release session lock
418 */
54d01ffb 419void session_unlock(struct ltt_session *session)
6c9cc2ab 420{
0525e9ae
DG
421 assert(session);
422
6c9cc2ab 423 pthread_mutex_unlock(&session->lock);
b5541356
DG
424}
425
82b69413
JG
426static
427int _session_set_trace_chunk_no_lock_check(struct ltt_session *session,
d2956687
JG
428 struct lttng_trace_chunk *new_trace_chunk,
429 struct lttng_trace_chunk **_current_trace_chunk)
82b69413 430{
78fc586b 431 int ret = 0;
82b69413 432 unsigned int i, refs_to_acquire = 0, refs_acquired = 0, refs_to_release = 0;
82b69413
JG
433 struct cds_lfht_iter iter;
434 struct consumer_socket *socket;
d2956687
JG
435 struct lttng_trace_chunk *current_trace_chunk;
436 uint64_t chunk_id;
437 enum lttng_trace_chunk_status chunk_status;
82b69413 438
d2956687 439 rcu_read_lock();
82b69413 440 /*
d2956687
JG
441 * Ownership of current trace chunk is transferred to
442 * `current_trace_chunk`.
82b69413 443 */
d2956687
JG
444 current_trace_chunk = session->current_trace_chunk;
445 session->current_trace_chunk = NULL;
82b69413 446 if (session->ust_session) {
d2956687
JG
447 lttng_trace_chunk_put(
448 session->ust_session->current_trace_chunk);
449 session->ust_session->current_trace_chunk = NULL;
82b69413
JG
450 }
451 if (session->kernel_session) {
d2956687
JG
452 lttng_trace_chunk_put(
453 session->kernel_session->current_trace_chunk);
454 session->kernel_session->current_trace_chunk = NULL;
82b69413 455 }
d2956687
JG
456 if (!new_trace_chunk) {
457 ret = 0;
458 goto end;
82b69413 459 }
d2956687
JG
460 chunk_status = lttng_trace_chunk_get_id(new_trace_chunk, &chunk_id);
461 assert(chunk_status == LTTNG_TRACE_CHUNK_STATUS_OK);
82b69413 462
d2956687
JG
463 refs_to_acquire = 1;
464 refs_to_acquire += !!session->ust_session;
465 refs_to_acquire += !!session->kernel_session;
466
467 for (refs_acquired = 0; refs_acquired < refs_to_acquire;
468 refs_acquired++) {
469 if (!lttng_trace_chunk_get(new_trace_chunk)) {
470 ERR("Failed to acquire reference to new trace chunk of session \"%s\"",
471 session->name);
472 goto error;
82b69413
JG
473 }
474 }
475
d2956687 476 if (session->ust_session) {
e5add6d0
JG
477 const uint64_t relayd_id =
478 session->ust_session->consumer->net_seq_index;
479 const bool is_local_trace =
480 session->ust_session->consumer->type ==
481 CONSUMER_DST_LOCAL;
482
d2956687
JG
483 session->ust_session->current_trace_chunk = new_trace_chunk;
484 if (is_local_trace) {
485 enum lttng_error_code ret_error_code;
82b69413 486
d2956687
JG
487 ret_error_code = ust_app_create_channel_subdirectories(
488 session->ust_session);
489 if (ret_error_code != LTTNG_OK) {
82b69413
JG
490 goto error;
491 }
d2956687
JG
492 }
493 cds_lfht_for_each_entry(
494 session->ust_session->consumer->socks->ht,
495 &iter, socket, node.node) {
496 pthread_mutex_lock(socket->lock);
497 ret = consumer_create_trace_chunk(socket,
498 relayd_id,
5da88b0f
MD
499 session->id, new_trace_chunk,
500 DEFAULT_UST_TRACE_DIR);
d2956687
JG
501 pthread_mutex_unlock(socket->lock);
502 if (ret) {
503 goto error;
504 }
505 }
506 }
82b69413 507 if (session->kernel_session) {
e5add6d0
JG
508 const uint64_t relayd_id =
509 session->kernel_session->consumer->net_seq_index;
510 const bool is_local_trace =
511 session->kernel_session->consumer->type ==
512 CONSUMER_DST_LOCAL;
513
d2956687
JG
514 session->kernel_session->current_trace_chunk = new_trace_chunk;
515 if (is_local_trace) {
516 enum lttng_error_code ret_error_code;
517
518 ret_error_code = kernel_create_channel_subdirectories(
519 session->kernel_session);
520 if (ret_error_code != LTTNG_OK) {
d2956687
JG
521 goto error;
522 }
523 }
524 cds_lfht_for_each_entry(
525 session->kernel_session->consumer->socks->ht,
526 &iter, socket, node.node) {
527 pthread_mutex_lock(socket->lock);
528 ret = consumer_create_trace_chunk(socket,
529 relayd_id,
5da88b0f
MD
530 session->id, new_trace_chunk,
531 DEFAULT_KERNEL_TRACE_DIR);
d2956687
JG
532 pthread_mutex_unlock(socket->lock);
533 if (ret) {
534 goto error;
535 }
536 }
537 }
82b69413
JG
538
539 /*
540 * Update local current trace chunk state last, only if all remote
d2956687 541 * creations succeeded.
82b69413
JG
542 */
543 session->current_trace_chunk = new_trace_chunk;
d2956687
JG
544 LTTNG_OPTIONAL_SET(&session->most_recent_chunk_id, chunk_id);
545end:
546 if (_current_trace_chunk) {
547 *_current_trace_chunk = current_trace_chunk;
548 current_trace_chunk = NULL;
549 }
550end_no_move:
551 rcu_read_unlock();
552 lttng_trace_chunk_put(current_trace_chunk);
553 return ret;
554error:
82b69413 555 if (session->ust_session) {
d2956687 556 session->ust_session->current_trace_chunk = NULL;
82b69413
JG
557 }
558 if (session->kernel_session) {
d2956687 559 session->kernel_session->current_trace_chunk = NULL;
82b69413 560 }
d2956687 561 /*
82b69413
JG
562 * Release references taken in the case where all references could not
563 * be acquired.
564 */
565 refs_to_release = refs_to_acquire - refs_acquired;
566 for (i = 0; i < refs_to_release; i++) {
567 lttng_trace_chunk_put(new_trace_chunk);
568 }
d2956687
JG
569 ret = -1;
570 goto end_no_move;
82b69413
JG
571}
572
d2956687 573struct lttng_trace_chunk *session_create_new_trace_chunk(
348a81dc
JG
574 const struct ltt_session *session,
575 const struct consumer_output *consumer_output_override,
82b69413
JG
576 const char *session_base_path_override,
577 const char *chunk_name_override)
578{
579 int ret;
82b69413
JG
580 struct lttng_trace_chunk *trace_chunk = NULL;
581 enum lttng_trace_chunk_status chunk_status;
d2956687 582 const time_t chunk_creation_ts = time(NULL);
348a81dc
JG
583 bool is_local_trace;
584 const char *base_path;
cbf53d23 585 struct lttng_directory_handle *session_output_directory = NULL;
82b69413
JG
586 const struct lttng_credentials session_credentials = {
587 .uid = session->uid,
588 .gid = session->gid,
589 };
590 uint64_t next_chunk_id;
348a81dc
JG
591 const struct consumer_output *output;
592
593 if (consumer_output_override) {
594 output = consumer_output_override;
595 } else {
596 assert(session->ust_session || session->kernel_session);
597 output = session->ust_session ?
598 session->ust_session->consumer :
599 session->kernel_session->consumer;
600 }
601
602 is_local_trace = output->type == CONSUMER_DST_LOCAL;
603 base_path = session_base_path_override ? :
604 consumer_output_get_base_path(output);
82b69413 605
d2956687
JG
606 if (chunk_creation_ts == (time_t) -1) {
607 PERROR("Failed to sample time while creation session \"%s\" trace chunk",
82b69413 608 session->name);
82b69413
JG
609 goto error;
610 }
82b69413 611
d2956687
JG
612 next_chunk_id = session->most_recent_chunk_id.is_set ?
613 session->most_recent_chunk_id.value + 1 : 0;
82b69413 614
d2956687
JG
615 trace_chunk = lttng_trace_chunk_create(next_chunk_id,
616 chunk_creation_ts);
82b69413 617 if (!trace_chunk) {
82b69413
JG
618 goto error;
619 }
620
621 if (chunk_name_override) {
622 chunk_status = lttng_trace_chunk_override_name(trace_chunk,
623 chunk_name_override);
d2956687 624 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
82b69413
JG
625 goto error;
626 }
627 }
628
629 if (!is_local_trace) {
630 /*
631 * No need to set crendentials and output directory
632 * for remote trace chunks.
633 */
d2956687 634 goto end;
82b69413
JG
635 }
636
637 chunk_status = lttng_trace_chunk_set_credentials(trace_chunk,
638 &session_credentials);
639 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
82b69413
JG
640 goto error;
641 }
642
d2956687
JG
643 DBG("Creating base output directory of session \"%s\" at %s",
644 session->name, base_path);
82b69413
JG
645 ret = utils_mkdir_recursive(base_path, S_IRWXU | S_IRWXG,
646 session->uid, session->gid);
647 if (ret) {
82b69413
JG
648 goto error;
649 }
cbf53d23
JG
650 session_output_directory = lttng_directory_handle_create(base_path);
651 if (!session_output_directory) {
82b69413
JG
652 goto error;
653 }
654 chunk_status = lttng_trace_chunk_set_as_owner(trace_chunk,
cbf53d23
JG
655 session_output_directory);
656 lttng_directory_handle_put(session_output_directory);
657 session_output_directory = NULL;
82b69413 658 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
82b69413
JG
659 goto error;
660 }
d2956687
JG
661end:
662 return trace_chunk;
82b69413 663error:
cbf53d23 664 lttng_directory_handle_put(session_output_directory);
82b69413 665 lttng_trace_chunk_put(trace_chunk);
d2956687
JG
666 trace_chunk = NULL;
667 goto end;
668}
669
343defc2 670int session_close_trace_chunk(struct ltt_session *session,
bbc4768c 671 struct lttng_trace_chunk *trace_chunk,
343defc2 672 enum lttng_trace_chunk_command_type close_command,
ecd1a12f 673 char *closed_trace_chunk_path)
d2956687
JG
674{
675 int ret = 0;
676 bool error_occurred = false;
677 struct cds_lfht_iter iter;
678 struct consumer_socket *socket;
679 enum lttng_trace_chunk_status chunk_status;
680 const time_t chunk_close_timestamp = time(NULL);
681
343defc2
MD
682 chunk_status = lttng_trace_chunk_set_close_command(
683 trace_chunk, close_command);
684 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
685 ret = -1;
686 goto end;
bbc4768c
JG
687 }
688
d2956687
JG
689 if (chunk_close_timestamp == (time_t) -1) {
690 ERR("Failed to sample the close timestamp of the current trace chunk of session \"%s\"",
691 session->name);
692 ret = -1;
693 goto end;
694 }
695 chunk_status = lttng_trace_chunk_set_close_timestamp(trace_chunk,
696 chunk_close_timestamp);
697 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
698 ERR("Failed to set the close timestamp of the current trace chunk of session \"%s\"",
699 session->name);
700 ret = -1;
701 goto end;
702 }
703
704 if (session->ust_session) {
0a184d4e
JG
705 const uint64_t relayd_id =
706 session->ust_session->consumer->net_seq_index;
707
d2956687
JG
708 cds_lfht_for_each_entry(
709 session->ust_session->consumer->socks->ht,
710 &iter, socket, node.node) {
711 pthread_mutex_lock(socket->lock);
712 ret = consumer_close_trace_chunk(socket,
0a184d4e 713 relayd_id,
d2956687 714 session->id,
ecd1a12f 715 trace_chunk, closed_trace_chunk_path);
d2956687
JG
716 pthread_mutex_unlock(socket->lock);
717 if (ret) {
718 ERR("Failed to close trace chunk on user space consumer");
719 error_occurred = true;
720 }
721 }
722 }
723 if (session->kernel_session) {
0a184d4e
JG
724 const uint64_t relayd_id =
725 session->kernel_session->consumer->net_seq_index;
726
d2956687
JG
727 cds_lfht_for_each_entry(
728 session->kernel_session->consumer->socks->ht,
729 &iter, socket, node.node) {
730 pthread_mutex_lock(socket->lock);
731 ret = consumer_close_trace_chunk(socket,
0a184d4e 732 relayd_id,
d2956687 733 session->id,
ecd1a12f 734 trace_chunk, closed_trace_chunk_path);
d2956687
JG
735 pthread_mutex_unlock(socket->lock);
736 if (ret) {
737 ERR("Failed to close trace chunk on kernel consumer");
738 error_occurred = true;
739 }
740 }
741 }
742 ret = error_occurred ? -1 : 0;
82b69413 743end:
d2956687 744 return ret;
82b69413
JG
745}
746
747/*
748 * Set a session's current trace chunk.
749 *
750 * Must be called with the session lock held.
751 */
752int session_set_trace_chunk(struct ltt_session *session,
d2956687
JG
753 struct lttng_trace_chunk *new_trace_chunk,
754 struct lttng_trace_chunk **current_trace_chunk)
82b69413
JG
755{
756 ASSERT_LOCKED(session->lock);
d2956687
JG
757 return _session_set_trace_chunk_no_lock_check(session, new_trace_chunk,
758 current_trace_chunk);
82b69413
JG
759}
760
3e3665b8
JG
761static
762void session_notify_destruction(const struct ltt_session *session)
763{
764 size_t i;
765 const size_t count = lttng_dynamic_array_get_count(
766 &session->destroy_notifiers);
767
768 for (i = 0; i < count; i++) {
769 const struct ltt_session_destroy_notifier_element *element =
770 lttng_dynamic_array_get_element(
771 &session->destroy_notifiers, i);
772
773 element->notifier(session, element->user_data);
774 }
775}
776
ccbdaca4
MD
777/*
778 * Fire each clear notifier once, and remove them from the array.
779 */
780void session_notify_clear(struct ltt_session *session)
781{
782 size_t i;
783 const size_t count = lttng_dynamic_array_get_count(
784 &session->clear_notifiers);
785
786 for (i = 0; i < count; i++) {
787 const struct ltt_session_clear_notifier_element *element =
788 lttng_dynamic_array_get_element(
789 &session->clear_notifiers, i);
790
791 element->notifier(session, element->user_data);
792 }
793 lttng_dynamic_array_clear(&session->clear_notifiers);
794}
795
e32d7f27
JG
796static
797void session_release(struct urcu_ref *ref)
798{
799 int ret;
800 struct ltt_ust_session *usess;
801 struct ltt_kernel_session *ksess;
802 struct ltt_session *session = container_of(ref, typeof(*session), ref);
7fdbed1c 803 const bool session_published = session->published;
e32d7f27 804
d2956687
JG
805 assert(!session->chunk_being_archived);
806
e32d7f27
JG
807 usess = session->ust_session;
808 ksess = session->kernel_session;
3e3665b8 809
d070c424 810 /* Clean kernel session teardown, keeping data for destroy notifier. */
e32d7f27
JG
811 kernel_destroy_session(ksess);
812
d070c424 813 /* UST session teardown, keeping data for destroy notifier. */
e32d7f27
JG
814 if (usess) {
815 /* Close any relayd session */
816 consumer_output_send_destroy_relayd(usess->consumer);
817
818 /* Destroy every UST application related to this session. */
819 ret = ust_app_destroy_trace_all(usess);
820 if (ret) {
821 ERR("Error in ust_app_destroy_trace_all");
822 }
823
d070c424 824 /* Clean up the rest, keeping destroy notifier data. */
e32d7f27
JG
825 trace_ust_destroy_session(usess);
826 }
827
828 /*
829 * Must notify the kernel thread here to update it's poll set in order to
830 * remove the channel(s)' fd just destroyed.
831 */
832 ret = notify_thread_pipe(kernel_poll_pipe[1]);
833 if (ret < 0) {
834 PERROR("write kernel poll pipe");
835 }
836
837 DBG("Destroying session %s (id %" PRIu64 ")", session->name, session->id);
e32d7f27 838
e32d7f27 839 snapshot_destroy(&session->snapshot);
99d688f2 840
82b69413
JG
841 pthread_mutex_destroy(&session->lock);
842
7fdbed1c 843 if (session_published) {
f4cc5e83
JG
844 ASSERT_LOCKED(ltt_session_list.lock);
845 del_session_list(session);
846 del_session_ht(session);
f4cc5e83 847 }
7fdbed1c 848 session_notify_destruction(session);
d070c424 849
1ac9cb73 850 consumer_output_put(session->consumer);
d070c424
MD
851 kernel_free_session(ksess);
852 session->kernel_session = NULL;
853 if (usess) {
854 trace_ust_free_session(usess);
855 session->ust_session = NULL;
856 }
7fdbed1c 857 lttng_dynamic_array_reset(&session->destroy_notifiers);
ccbdaca4 858 lttng_dynamic_array_reset(&session->clear_notifiers);
d2956687 859 free(session->last_archived_chunk_name);
6fa5fe7c 860 free(session->base_path);
e32d7f27 861 free(session);
7fdbed1c
JG
862 if (session_published) {
863 /*
864 * Broadcast after free-ing to ensure the memory is
865 * reclaimed before the main thread exits.
866 */
867 pthread_cond_broadcast(&ltt_session_list.removal_cond);
868 }
e32d7f27
JG
869}
870
871/*
872 * Acquire a reference to a session.
873 * This function may fail (return false); its return value must be checked.
874 */
875bool session_get(struct ltt_session *session)
876{
877 return urcu_ref_get_unless_zero(&session->ref);
878}
879
880/*
881 * Release a reference to a session.
882 */
883void session_put(struct ltt_session *session)
884{
b178f53e
JG
885 if (!session) {
886 return;
887 }
e32d7f27
JG
888 /*
889 * The session list lock must be held as any session_put()
890 * may cause the removal of the session from the session_list.
891 */
892 ASSERT_LOCKED(ltt_session_list.lock);
893 assert(session->ref.refcount);
894 urcu_ref_put(&session->ref, session_release);
895}
896
897/*
898 * Destroy a session.
899 *
900 * This method does not immediately release/free the session as other
901 * components may still hold a reference to the session. However,
902 * the session should no longer be presented to the user.
903 *
904 * Releases the session list's reference to the session
905 * and marks it as destroyed. Iterations on the session list should be
906 * mindful of the "destroyed" flag.
907 */
908void session_destroy(struct ltt_session *session)
909{
910 assert(!session->destroyed);
911 session->destroyed = true;
912 session_put(session);
913}
914
3e3665b8
JG
915int session_add_destroy_notifier(struct ltt_session *session,
916 ltt_session_destroy_notifier notifier, void *user_data)
917{
918 const struct ltt_session_destroy_notifier_element element = {
919 .notifier = notifier,
920 .user_data = user_data
921 };
922
923 return lttng_dynamic_array_add_element(&session->destroy_notifiers,
924 &element);
925}
926
ccbdaca4
MD
927int session_add_clear_notifier(struct ltt_session *session,
928 ltt_session_clear_notifier notifier, void *user_data)
929{
930 const struct ltt_session_clear_notifier_element element = {
931 .notifier = notifier,
932 .user_data = user_data
933 };
934
935 return lttng_dynamic_array_add_element(&session->clear_notifiers,
936 &element);
937}
938
5b74c7b1 939/*
74babd95 940 * Return a ltt_session structure ptr that matches name. If no session found,
23324029 941 * NULL is returned. This must be called with the session list lock held using
74babd95 942 * session_lock_list and session_unlock_list.
e32d7f27 943 * A reference to the session is implicitly acquired by this function.
5b74c7b1 944 */
58a1a227 945struct ltt_session *session_find_by_name(const char *name)
5b74c7b1 946{
5b74c7b1
DG
947 struct ltt_session *iter;
948
0525e9ae 949 assert(name);
e32d7f27 950 ASSERT_LOCKED(ltt_session_list.lock);
0525e9ae 951
5f822d0a
DG
952 DBG2("Trying to find session by name %s", name);
953
5b74c7b1 954 cds_list_for_each_entry(iter, &ltt_session_list.head, list) {
e32d7f27
JG
955 if (!strncmp(iter->name, name, NAME_MAX) &&
956 !iter->destroyed) {
74babd95 957 goto found;
5b74c7b1
DG
958 }
959 }
960
e32d7f27 961 return NULL;
74babd95 962found:
e32d7f27 963 return session_get(iter) ? iter : NULL;
5b74c7b1
DG
964}
965
23324029
JD
966/*
967 * Return an ltt_session that matches the id. If no session is found,
968 * NULL is returned. This must be called with rcu_read_lock and
969 * session list lock held (to guarantee the lifetime of the session).
970 */
971struct ltt_session *session_find_by_id(uint64_t id)
972{
973 struct lttng_ht_node_u64 *node;
974 struct lttng_ht_iter iter;
975 struct ltt_session *ls;
976
e32d7f27
JG
977 ASSERT_LOCKED(ltt_session_list.lock);
978
d68ec974
JG
979 if (!ltt_sessions_ht_by_id) {
980 goto end;
981 }
982
23324029
JD
983 lttng_ht_lookup(ltt_sessions_ht_by_id, &id, &iter);
984 node = lttng_ht_iter_get_node_u64(&iter);
985 if (node == NULL) {
d68ec974 986 goto end;
23324029
JD
987 }
988 ls = caa_container_of(node, struct ltt_session, node);
989
990 DBG3("Session %" PRIu64 " found by id.", id);
e32d7f27 991 return session_get(ls) ? ls : NULL;
23324029 992
d68ec974 993end:
23324029
JD
994 DBG3("Session %" PRIu64 " NOT found by id", id);
995 return NULL;
996}
997
5b74c7b1 998/*
b178f53e
JG
999 * Create a new session and add it to the session list.
1000 * Session list lock must be held by the caller.
5b74c7b1 1001 */
b178f53e 1002enum lttng_error_code session_create(const char *name, uid_t uid, gid_t gid,
e3876bf0 1003 struct ltt_session **out_session)
5b74c7b1 1004{
f3ed775e 1005 int ret;
b178f53e
JG
1006 enum lttng_error_code ret_code;
1007 struct ltt_session *new_session = NULL;
e07ae692 1008
b178f53e
JG
1009 ASSERT_LOCKED(ltt_session_list.lock);
1010 if (name) {
1011 struct ltt_session *clashing_session;
1012
1013 clashing_session = session_find_by_name(name);
1014 if (clashing_session) {
1015 session_put(clashing_session);
1016 ret_code = LTTNG_ERR_EXIST_SESS;
1017 goto error;
1018 }
1019 }
ba7f0ae5 1020 new_session = zmalloc(sizeof(struct ltt_session));
b178f53e
JG
1021 if (!new_session) {
1022 PERROR("Failed to allocate an ltt_session structure");
1023 ret_code = LTTNG_ERR_NOMEM;
1024 goto error;
5b74c7b1
DG
1025 }
1026
3e3665b8 1027 lttng_dynamic_array_init(&new_session->destroy_notifiers,
93bed9fe
JG
1028 sizeof(struct ltt_session_destroy_notifier_element),
1029 NULL);
ccbdaca4
MD
1030 lttng_dynamic_array_init(&new_session->clear_notifiers,
1031 sizeof(struct ltt_session_clear_notifier_element),
1032 NULL);
e32d7f27 1033 urcu_ref_init(&new_session->ref);
b178f53e 1034 pthread_mutex_init(&new_session->lock, NULL);
e32d7f27 1035
b178f53e
JG
1036 new_session->creation_time = time(NULL);
1037 if (new_session->creation_time == (time_t) -1) {
1038 PERROR("Failed to sample session creation time");
1039 ret_code = LTTNG_ERR_SESSION_FAIL;
f3ed775e
DG
1040 goto error;
1041 }
1042
b178f53e
JG
1043 /* Create default consumer output. */
1044 new_session->consumer = consumer_create_output(CONSUMER_DST_LOCAL);
1045 if (new_session->consumer == NULL) {
1046 ret_code = LTTNG_ERR_NOMEM;
1c1c3634
DG
1047 goto error;
1048 }
1049
b178f53e
JG
1050 if (name) {
1051 ret = lttng_strncpy(new_session->name, name, sizeof(new_session->name));
1052 if (ret) {
1053 ret_code = LTTNG_ERR_SESSION_INVALID_CHAR;
1054 goto error;
1055 }
1056 ret = validate_name(name);
1057 if (ret < 0) {
1058 ret_code = LTTNG_ERR_SESSION_INVALID_CHAR;
1059 goto error;
1060 }
1061 } else {
1062 int i = 0;
1063 bool found_name = false;
1064 char datetime[16];
1065 struct tm *timeinfo;
1066
1067 timeinfo = localtime(&new_session->creation_time);
1068 if (!timeinfo) {
1069 ret_code = LTTNG_ERR_SESSION_FAIL;
1070 goto error;
1071 }
1072 strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo);
1073 for (i = 0; i < INT_MAX; i++) {
1074 struct ltt_session *clashing_session;
1075
1076 if (i == 0) {
1077 ret = snprintf(new_session->name,
1078 sizeof(new_session->name),
1079 "%s-%s",
1080 DEFAULT_SESSION_NAME,
1081 datetime);
1082 } else {
1083 ret = snprintf(new_session->name,
1084 sizeof(new_session->name),
1085 "%s%d-%s",
1086 DEFAULT_SESSION_NAME, i,
1087 datetime);
1088 }
46ef2188 1089 new_session->name_contains_creation_time = true;
b178f53e
JG
1090 if (ret == -1 || ret >= sizeof(new_session->name)) {
1091 /*
1092 * Null-terminate in case the name is used
1093 * in logging statements.
1094 */
1095 new_session->name[sizeof(new_session->name) - 1] = '\0';
1096 ret_code = LTTNG_ERR_SESSION_FAIL;
1097 goto error;
1098 }
1099
1100 clashing_session =
1101 session_find_by_name(new_session->name);
1102 session_put(clashing_session);
1103 if (!clashing_session) {
1104 found_name = true;
1105 break;
1106 }
1107 }
1108 if (found_name) {
1109 DBG("Generated session name \"%s\"", new_session->name);
1110 new_session->has_auto_generated_name = true;
1111 } else {
1112 ERR("Failed to auto-generate a session name");
1113 ret_code = LTTNG_ERR_SESSION_FAIL;
1114 goto error;
1115 }
1116 }
1117
d3e2ba59 1118 ret = gethostname(new_session->hostname, sizeof(new_session->hostname));
73184835
DG
1119 if (ret < 0) {
1120 if (errno == ENAMETOOLONG) {
1121 new_session->hostname[sizeof(new_session->hostname) - 1] = '\0';
b178f53e
JG
1122 ERR("Hostname exceeds the maximal permitted length and has been truncated to %s",
1123 new_session->hostname);
73184835 1124 } else {
b178f53e 1125 ret_code = LTTNG_ERR_SESSION_FAIL;
73184835
DG
1126 goto error;
1127 }
d3e2ba59
JD
1128 }
1129
6df2e2c9
MD
1130 new_session->uid = uid;
1131 new_session->gid = gid;
1132
6dc3064a
DG
1133 ret = snapshot_init(&new_session->snapshot);
1134 if (ret < 0) {
b178f53e 1135 ret_code = LTTNG_ERR_NOMEM;
6dc3064a
DG
1136 goto error;
1137 }
1138
4f23c583 1139 new_session->rotation_state = LTTNG_ROTATION_STATE_NO_ROTATION;
92816cc3 1140
b178f53e 1141 /* Add new session to the session list. */
a991f516 1142 new_session->id = add_session_list(new_session);
b178f53e 1143
23324029
JD
1144 /*
1145 * Add the new session to the ltt_sessions_ht_by_id.
1146 * No ownership is taken by the hash table; it is merely
1147 * a wrapper around the session list used for faster access
1148 * by session id.
1149 */
1150 add_session_ht(new_session);
f4cc5e83 1151 new_session->published = true;
b5541356 1152
a4b92340 1153 /*
b178f53e
JG
1154 * Consumer is left to NULL since the create_session_uri command will
1155 * set it up and, if valid, assign it to the session.
a4b92340 1156 */
b178f53e
JG
1157 DBG("Tracing session %s created with ID %" PRIu64 " by uid = %d, gid = %d",
1158 new_session->name, new_session->id, new_session->uid,
1159 new_session->gid);
1160 ret_code = LTTNG_OK;
1161end:
1162 if (new_session) {
1163 (void) session_get(new_session);
1164 *out_session = new_session;
1165 }
1166 return ret_code;
5b74c7b1 1167error:
f4cc5e83 1168 session_put(new_session);
b178f53e
JG
1169 new_session = NULL;
1170 goto end;
5b74c7b1 1171}
2f77fc4b
DG
1172
1173/*
1174 * Check if the UID or GID match the session. Root user has access to all
1175 * sessions.
1176 */
1177int session_access_ok(struct ltt_session *session, uid_t uid, gid_t gid)
1178{
1179 assert(session);
1180
1181 if (uid != session->uid && gid != session->gid && uid != 0) {
1182 return 0;
1183 } else {
1184 return 1;
1185 }
1186}
2961f09e
JG
1187
1188/*
1189 * Set a session's rotation state and reset all associated state.
1190 *
1191 * This function resets the rotation state (check timers, pending
1192 * flags, etc.) and sets the result of the last rotation. The result
1193 * can be queries by a liblttng-ctl client.
1194 *
1195 * Be careful of the result passed to this function. For instance,
1196 * on failure to launch a rotation, a client will expect the rotation
83ed9e90 1197 * state to be set to "NO_ROTATION". If an error occurred while the
2961f09e
JG
1198 * rotation was "ONGOING", result should be set to "ERROR", which will
1199 * allow a client to report it.
1200 *
1201 * Must be called with the session and session_list locks held.
1202 */
1203int session_reset_rotation_state(struct ltt_session *session,
1204 enum lttng_rotation_state result)
1205{
1206 int ret = 0;
1207
1208 ASSERT_LOCKED(ltt_session_list.lock);
1209 ASSERT_LOCKED(session->lock);
1210
2961f09e
JG
1211 session->rotation_state = result;
1212 if (session->rotation_pending_check_timer_enabled) {
1213 ret = timer_session_rotation_pending_check_stop(session);
1214 }
d2956687
JG
1215 if (session->chunk_being_archived) {
1216 uint64_t chunk_id;
1217 enum lttng_trace_chunk_status chunk_status;
1218
1219 chunk_status = lttng_trace_chunk_get_id(
1220 session->chunk_being_archived,
1221 &chunk_id);
1222 assert(chunk_status == LTTNG_TRACE_CHUNK_STATUS_OK);
1223 LTTNG_OPTIONAL_SET(&session->last_archived_chunk_id,
1224 chunk_id);
1225 lttng_trace_chunk_put(session->chunk_being_archived);
1226 session->chunk_being_archived = NULL;
ccbdaca4
MD
1227 /*
1228 * Fire the clear reply notifiers if we are completing a clear
1229 * rotation.
1230 */
1231 session_notify_clear(session);
d2956687 1232 }
2961f09e
JG
1233 return ret;
1234}
This page took 0.116702 seconds and 4 git commands to generate.