2 * Copyright (C) 2013 - Julien Desfossez <jdesfossez@efficios.com>
3 * David Goulet <dgoulet@efficios.com>
4 * 2015 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License, version 2 only, as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <common/common.h>
22 #include <common/uuid.h>
23 #include <common/time.h>
24 #include <common/utils.h>
25 #include <common/uuid.h>
26 #include <urcu/rculist.h>
30 #include "ctf-trace.h"
31 #include "lttng-relayd.h"
33 #include "sessiond-trace-chunks.h"
35 #include <common/defaults.h>
38 /* Global session id used in the session creation. */
39 static uint64_t last_relay_session_id
;
40 static pthread_mutex_t last_relay_session_id_lock
= PTHREAD_MUTEX_INITIALIZER
;
42 static int init_session_output_path_group_by_host(struct relay_session
*session
)
48 * hostname/session_name
52 char *session_directory
= NULL
;
55 if (session
->output_path
[0] != '\0') {
59 * If base path is set, it overrides the session name for the
60 * session relative base path. No timestamp is appended if the
61 * base path is overridden.
63 * If the session name already contains the creation time (e.g.
64 * auto-<timestamp>, don't append yet another timestamp after
65 * the session name in the generated path.
67 * Otherwise, generate the path with session_name-<timestamp>.
69 if (session
->base_path
[0] != '\0') {
70 ret
= asprintf(&session_directory
, "%s/%s", session
->hostname
,
72 } else if (session
->session_name_contains_creation_time
) {
73 ret
= asprintf(&session_directory
, "%s/%s", session
->hostname
,
74 session
->session_name
);
76 char session_creation_datetime
[DATETIME_STR_LEN
];
78 ret
= time_to_datetime_str(
79 LTTNG_OPTIONAL_GET(session
->creation_time
),
80 session_creation_datetime
,
81 sizeof(session_creation_datetime
));
83 ERR("Failed to format session creation timestamp while initializing session output directory handle");
88 ret
= asprintf(&session_directory
, "%s/%s-%s",
89 session
->hostname
, session
->session_name
,
90 session_creation_datetime
);
93 PERROR("Failed to format session directory name");
97 if (strlen(session_directory
) >= LTTNG_PATH_MAX
) {
98 ERR("Session output directory exceeds maximal length");
102 strcpy(session
->output_path
, session_directory
);
106 free(session_directory
);
110 static int init_session_output_path_group_by_session(
111 struct relay_session
*session
)
116 * session_name/hostname-creation_time/base_path
118 * For session name including the datetime, use it as the complete name
119 * since. Do not perform modification on it since the datetime is an
120 * integral part of the name and how a user identify a session.
123 char *session_directory
= NULL
;
124 char creation_datetime
[DATETIME_STR_LEN
];
126 if (session
->output_path
[0] != '\0') {
127 /* output_path as been generated already */
131 ret
= time_to_datetime_str(LTTNG_OPTIONAL_GET(session
->creation_time
),
132 creation_datetime
, sizeof(creation_datetime
));
134 ERR("Failed to format session creation timestamp while initializing session output directory handle");
139 ret
= asprintf(&session_directory
, "%s/%s-%s%s%s",
140 session
->session_name
, session
->hostname
,
142 session
->base_path
[0] != '\0' ? "/" : "",
145 PERROR("Failed to format session directory name");
149 if (strlen(session_directory
) >= LTTNG_PATH_MAX
) {
150 ERR("Session output directory exceeds maximal length");
155 strcpy(session
->output_path
, session_directory
);
159 free(session_directory
);
163 static int init_session_output_path(struct relay_session
*session
)
167 switch (opt_group_output_by
) {
168 case RELAYD_GROUP_OUTPUT_BY_HOST
:
169 ret
= init_session_output_path_group_by_host(session
);
171 case RELAYD_GROUP_OUTPUT_BY_SESSION
:
172 ret
= init_session_output_path_group_by_session(session
);
174 case RELAYD_GROUP_OUTPUT_BY_UNKNOWN
:
183 static int session_set_anonymous_chunk(struct relay_session
*session
)
186 struct lttng_trace_chunk
*chunk
= NULL
;
187 enum lttng_trace_chunk_status status
;
188 struct lttng_directory_handle
*output_directory
;
190 output_directory
= session_create_output_directory_handle(session
);
191 if (!output_directory
) {
195 chunk
= lttng_trace_chunk_create_anonymous();
200 status
= lttng_trace_chunk_set_credentials_current_user(chunk
);
201 if (status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
206 status
= lttng_trace_chunk_set_as_owner(chunk
, output_directory
);
207 if (status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
211 output_directory
= NULL
;
212 session
->current_trace_chunk
= chunk
;
215 lttng_trace_chunk_put(chunk
);
216 lttng_directory_handle_put(output_directory
);
221 * Create a new session by assigning a new session ID.
223 * Return allocated session or else NULL.
225 struct relay_session
*session_create(const char *session_name
,
226 const char *hostname
, const char *base_path
,
229 const lttng_uuid sessiond_uuid
,
230 const uint64_t *id_sessiond
,
231 const uint64_t *current_chunk_id
,
232 const time_t *creation_time
,
235 bool session_name_contains_creation_time
)
238 struct relay_session
*session
= NULL
;
240 assert(session_name
);
244 if (strstr(session_name
, ".")) {
245 ERR("Illegal character in session name: \"%s\"",
249 if (strstr(base_path
, "../")) {
250 ERR("Invalid session base path walks up the path hierarchy: \"%s\"",
254 if (strstr(hostname
, ".")) {
255 ERR("Invalid character in hostname: \"%s\"",
260 session
= zmalloc(sizeof(*session
));
262 PERROR("Failed to allocate session");
265 if (lttng_strncpy(session
->session_name
, session_name
,
266 sizeof(session
->session_name
))) {
267 WARN("Session name exceeds maximal allowed length");
270 if (lttng_strncpy(session
->hostname
, hostname
,
271 sizeof(session
->hostname
))) {
272 WARN("Hostname exceeds maximal allowed length");
275 if (lttng_strncpy(session
->base_path
, base_path
,
276 sizeof(session
->base_path
))) {
277 WARN("Base path exceeds maximal allowed length");
281 LTTNG_OPTIONAL_SET(&session
->creation_time
, *creation_time
);
283 session
->session_name_contains_creation_time
=
284 session_name_contains_creation_time
;
286 session
->ctf_traces_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
287 if (!session
->ctf_traces_ht
) {
291 pthread_mutex_lock(&last_relay_session_id_lock
);
292 session
->id
= ++last_relay_session_id
;
293 pthread_mutex_unlock(&last_relay_session_id_lock
);
295 session
->major
= major
;
296 session
->minor
= minor
;
297 lttng_ht_node_init_u64(&session
->session_n
, session
->id
);
298 urcu_ref_init(&session
->ref
);
299 CDS_INIT_LIST_HEAD(&session
->recv_list
);
300 pthread_mutex_init(&session
->lock
, NULL
);
301 pthread_mutex_init(&session
->recv_list_lock
, NULL
);
303 session
->live_timer
= live_timer
;
304 session
->snapshot
= snapshot
;
305 lttng_uuid_copy(session
->sessiond_uuid
, sessiond_uuid
);
308 LTTNG_OPTIONAL_SET(&session
->id_sessiond
, *id_sessiond
);
311 if (major
== 2 && minor
>= 11) {
312 /* Only applies for 2.11+ peers using trace chunks. */
313 ret
= init_session_output_path(session
);
319 ret
= sessiond_trace_chunk_registry_session_created(
320 sessiond_trace_chunk_registry
, sessiond_uuid
);
325 if (id_sessiond
&& current_chunk_id
) {
326 session
->current_trace_chunk
=
327 sessiond_trace_chunk_registry_get_chunk(
328 sessiond_trace_chunk_registry
,
329 session
->sessiond_uuid
,
330 session
->id_sessiond
.value
,
332 if (!session
->current_trace_chunk
) {
333 char uuid_str
[LTTNG_UUID_STR_LEN
];
335 lttng_uuid_to_str(sessiond_uuid
, uuid_str
);
336 ERR("Could not find trace chunk: sessiond = {%s}, sessiond session id = %" PRIu64
", trace chunk id = %" PRIu64
,
337 uuid_str
, *id_sessiond
,
340 } else if (!id_sessiond
) {
342 * Pre-2.11 peers will not announce trace chunks. An
343 * anonymous trace chunk which will remain set for the
344 * duration of the session is created.
346 ret
= session_set_anonymous_chunk(session
);
352 lttng_ht_add_unique_u64(sessions_ht
, &session
->session_n
);
356 session_put(session
);
360 /* Should be called with RCU read-side lock held. */
361 bool session_get(struct relay_session
*session
)
363 return urcu_ref_get_unless_zero(&session
->ref
);
367 * Lookup a session within the session hash table using the session id
368 * as key. A session reference is taken when a session is returned.
369 * session_put() must be called on that session.
371 * Return session or NULL if not found.
373 struct relay_session
*session_get_by_id(uint64_t id
)
375 struct relay_session
*session
= NULL
;
376 struct lttng_ht_node_u64
*node
;
377 struct lttng_ht_iter iter
;
380 lttng_ht_lookup(sessions_ht
, &id
, &iter
);
381 node
= lttng_ht_iter_get_node_u64(&iter
);
383 DBG("Session find by ID %" PRIu64
" id NOT found", id
);
386 session
= caa_container_of(node
, struct relay_session
, session_n
);
387 DBG("Session find by ID %" PRIu64
" id found", id
);
388 if (!session_get(session
)) {
396 static void rcu_destroy_session(struct rcu_head
*rcu_head
)
398 struct relay_session
*session
=
399 caa_container_of(rcu_head
, struct relay_session
,
402 * Since each trace has a reference on the session, it means
403 * that if we are at the point where we teardown the session, no
404 * trace belonging to that session exist at this point.
405 * Calling lttng_ht_destroy in call_rcu worker thread so we
406 * don't hold the RCU read-side lock while calling it.
408 lttng_ht_destroy(session
->ctf_traces_ht
);
413 * Delete session from the given hash table.
415 * Return lttng ht del error code being 0 on success and 1 on failure.
417 static int session_delete(struct relay_session
*session
)
419 struct lttng_ht_iter iter
;
421 iter
.iter
.node
= &session
->session_n
.node
;
422 return lttng_ht_del(sessions_ht
, &iter
);
426 static void destroy_session(struct relay_session
*session
)
430 ret
= session_delete(session
);
432 lttng_trace_chunk_put(session
->current_trace_chunk
);
433 session
->current_trace_chunk
= NULL
;
434 lttng_trace_chunk_put(session
->pending_closure_trace_chunk
);
435 session
->pending_closure_trace_chunk
= NULL
;
436 ret
= sessiond_trace_chunk_registry_session_destroyed(
437 sessiond_trace_chunk_registry
, session
->sessiond_uuid
);
439 call_rcu(&session
->rcu_node
, rcu_destroy_session
);
442 static void session_release(struct urcu_ref
*ref
)
444 struct relay_session
*session
=
445 caa_container_of(ref
, struct relay_session
, ref
);
447 destroy_session(session
);
450 void session_put(struct relay_session
*session
)
456 urcu_ref_put(&session
->ref
, session_release
);
460 int session_close(struct relay_session
*session
)
463 struct ctf_trace
*trace
;
464 struct lttng_ht_iter iter
;
465 struct relay_stream
*stream
;
467 pthread_mutex_lock(&session
->lock
);
468 DBG("closing session %" PRIu64
": is conn already closed %d",
469 session
->id
, session
->connection_closed
);
470 session
->connection_closed
= true;
471 pthread_mutex_unlock(&session
->lock
);
474 cds_lfht_for_each_entry(session
->ctf_traces_ht
->ht
,
475 &iter
.iter
, trace
, node
.node
) {
476 ret
= ctf_trace_close(trace
);
481 cds_list_for_each_entry_rcu(stream
, &session
->recv_list
,
483 /* Close streams which have not been published yet. */
484 try_stream_close(stream
);
491 /* Put self-reference from create. */
492 session_put(session
);
496 int session_abort(struct relay_session
*session
)
504 pthread_mutex_lock(&session
->lock
);
505 DBG("aborting session %" PRIu64
, session
->id
);
506 session
->aborted
= true;
507 pthread_mutex_unlock(&session
->lock
);
511 void print_sessions(void)
513 struct lttng_ht_iter iter
;
514 struct relay_session
*session
;
521 cds_lfht_for_each_entry(sessions_ht
->ht
, &iter
.iter
, session
,
523 if (!session_get(session
)) {
526 DBG("session %p refcount %ld session %" PRIu64
,
528 session
->ref
.refcount
,
530 session_put(session
);
535 struct lttng_directory_handle
*session_create_output_directory_handle(
536 struct relay_session
*session
)
540 * relayd_output_path/session_directory
541 * e.g. /home/user/lttng-traces/hostname/session_name
543 char *full_session_path
= NULL
;
544 struct lttng_directory_handle
*handle
= NULL
;
546 pthread_mutex_lock(&session
->lock
);
547 full_session_path
= create_output_path(session
->output_path
);
548 if (!full_session_path
) {
552 ret
= utils_mkdir_recursive(
553 full_session_path
, S_IRWXU
| S_IRWXG
, -1, -1);
555 ERR("Failed to create session output path \"%s\"",
560 handle
= lttng_directory_handle_create(full_session_path
);
562 pthread_mutex_unlock(&session
->lock
);
563 free(full_session_path
);