2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include <common/common.h>
25 #include <common/defaults.h>
26 #include <common/sessiond-comm/sessiond-comm.h>
29 #include "lttng-sessiond.h"
37 * Return allocated channel attributes.
39 struct lttng_channel
*channel_new_default_attr(int dom
,
40 enum lttng_buffer_type type
)
42 struct lttng_channel
*chan
;
43 const char *channel_name
= DEFAULT_CHANNEL_NAME
;
44 struct lttng_channel_extended
*extended_attr
= NULL
;
46 chan
= zmalloc(sizeof(struct lttng_channel
));
48 PERROR("zmalloc channel init");
52 extended_attr
= zmalloc(sizeof(struct lttng_channel_extended
));
54 PERROR("zmalloc channel extended init");
58 chan
->attr
.extended
.ptr
= extended_attr
;
60 /* Same for all domains. */
61 chan
->attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
62 chan
->attr
.tracefile_size
= DEFAULT_CHANNEL_TRACEFILE_SIZE
;
63 chan
->attr
.tracefile_count
= DEFAULT_CHANNEL_TRACEFILE_COUNT
;
66 case LTTNG_DOMAIN_KERNEL
:
67 assert(type
== LTTNG_BUFFER_GLOBAL
);
68 chan
->attr
.subbuf_size
=
69 default_get_kernel_channel_subbuf_size();
70 chan
->attr
.num_subbuf
= DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM
;
71 chan
->attr
.output
= DEFAULT_KERNEL_CHANNEL_OUTPUT
;
72 chan
->attr
.switch_timer_interval
= DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER
;
73 chan
->attr
.read_timer_interval
= DEFAULT_KERNEL_CHANNEL_READ_TIMER
;
74 chan
->attr
.live_timer_interval
= DEFAULT_KERNEL_CHANNEL_LIVE_TIMER
;
75 extended_attr
->blocking_timeout
= DEFAULT_KERNEL_CHANNEL_BLOCKING_TIMEOUT
;
76 extended_attr
->monitor_timer_interval
=
77 DEFAULT_KERNEL_CHANNEL_MONITOR_TIMER
;
79 case LTTNG_DOMAIN_JUL
:
80 channel_name
= DEFAULT_JUL_CHANNEL_NAME
;
82 case LTTNG_DOMAIN_LOG4J
:
83 channel_name
= DEFAULT_LOG4J_CHANNEL_NAME
;
85 case LTTNG_DOMAIN_PYTHON
:
86 channel_name
= DEFAULT_PYTHON_CHANNEL_NAME
;
88 case LTTNG_DOMAIN_UST
:
91 case LTTNG_BUFFER_PER_UID
:
92 chan
->attr
.subbuf_size
= default_get_ust_uid_channel_subbuf_size();
93 chan
->attr
.num_subbuf
= DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM
;
94 chan
->attr
.output
= DEFAULT_UST_UID_CHANNEL_OUTPUT
;
95 chan
->attr
.switch_timer_interval
=
96 DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER
;
97 chan
->attr
.read_timer_interval
=
98 DEFAULT_UST_UID_CHANNEL_READ_TIMER
;
99 chan
->attr
.live_timer_interval
=
100 DEFAULT_UST_UID_CHANNEL_LIVE_TIMER
;
101 extended_attr
->blocking_timeout
= DEFAULT_UST_UID_CHANNEL_BLOCKING_TIMEOUT
;
102 extended_attr
->monitor_timer_interval
=
103 DEFAULT_UST_UID_CHANNEL_MONITOR_TIMER
;
105 case LTTNG_BUFFER_PER_PID
:
107 chan
->attr
.subbuf_size
= default_get_ust_pid_channel_subbuf_size();
108 chan
->attr
.num_subbuf
= DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM
;
109 chan
->attr
.output
= DEFAULT_UST_PID_CHANNEL_OUTPUT
;
110 chan
->attr
.switch_timer_interval
=
111 DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER
;
112 chan
->attr
.read_timer_interval
=
113 DEFAULT_UST_PID_CHANNEL_READ_TIMER
;
114 chan
->attr
.live_timer_interval
=
115 DEFAULT_UST_PID_CHANNEL_LIVE_TIMER
;
116 extended_attr
->blocking_timeout
= DEFAULT_UST_PID_CHANNEL_BLOCKING_TIMEOUT
;
117 extended_attr
->monitor_timer_interval
=
118 DEFAULT_UST_PID_CHANNEL_MONITOR_TIMER
;
123 goto error
; /* Not implemented */
126 if (snprintf(chan
->name
, sizeof(chan
->name
), "%s",
128 PERROR("snprintf default channel name");
140 void channel_attr_destroy(struct lttng_channel
*channel
)
145 free(channel
->attr
.extended
.ptr
);
150 * Disable kernel channel of the kernel session.
152 int channel_kernel_disable(struct ltt_kernel_session
*ksession
,
156 struct ltt_kernel_channel
*kchan
;
159 assert(channel_name
);
161 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksession
);
163 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
167 /* Only if channel is enabled disable it. */
168 if (kchan
->enabled
== 1) {
169 ret
= kernel_disable_channel(kchan
);
170 if (ret
< 0 && ret
!= -EEXIST
) {
171 ret
= LTTNG_ERR_KERN_CHAN_DISABLE_FAIL
;
183 * Enable kernel channel of the kernel session.
185 int channel_kernel_enable(struct ltt_kernel_session
*ksession
,
186 struct ltt_kernel_channel
*kchan
)
193 if (kchan
->enabled
== 0) {
194 ret
= kernel_enable_channel(kchan
);
196 ret
= LTTNG_ERR_KERN_CHAN_ENABLE_FAIL
;
200 ret
= LTTNG_ERR_KERN_CHAN_EXIST
;
210 static int channel_validate(struct lttng_channel
*attr
)
213 * The ringbuffer (both in user space and kernel) behaves badly
214 * in overwrite mode and with less than 2 subbuffers so block it
215 * right away and send back an invalid attribute error.
217 if (attr
->attr
.overwrite
&& attr
->attr
.num_subbuf
< 2) {
223 static int channel_validate_kernel(struct lttng_channel
*attr
)
225 /* Kernel channels do not support blocking timeout. */
226 if (((struct lttng_channel_extended
*)attr
->attr
.extended
.ptr
)->blocking_timeout
) {
233 * Create kernel channel of the kernel session and notify kernel thread.
235 int channel_kernel_create(struct ltt_kernel_session
*ksession
,
236 struct lttng_channel
*attr
, int kernel_pipe
)
239 struct lttng_channel
*defattr
= NULL
;
243 /* Creating channel attributes if needed */
245 defattr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
246 LTTNG_BUFFER_GLOBAL
);
247 if (defattr
== NULL
) {
248 ret
= LTTNG_ERR_FATAL
;
255 * Set the overwrite mode for this channel based on the session
256 * type unless the client explicitly overrides the channel mode.
258 if (attr
->attr
.overwrite
== DEFAULT_CHANNEL_OVERWRITE
) {
259 attr
->attr
.overwrite
= !!ksession
->snapshot_mode
;
262 /* Validate common channel properties. */
263 if (channel_validate(attr
) < 0) {
264 ret
= LTTNG_ERR_INVALID
;
268 if (channel_validate_kernel(attr
) < 0) {
269 ret
= LTTNG_ERR_INVALID
;
273 /* Channel not found, creating it */
274 ret
= kernel_create_channel(ksession
, attr
);
276 ret
= LTTNG_ERR_KERN_CHAN_FAIL
;
280 /* Notify kernel thread that there is a new channel */
281 ret
= notify_thread_pipe(kernel_pipe
);
283 ret
= LTTNG_ERR_FATAL
;
289 channel_attr_destroy(defattr
);
294 * Enable UST channel for session and domain.
296 int channel_ust_enable(struct ltt_ust_session
*usess
,
297 struct ltt_ust_channel
*uchan
)
304 /* If already enabled, everything is OK */
305 if (uchan
->enabled
) {
306 DBG3("Channel %s already enabled. Skipping", uchan
->name
);
307 ret
= LTTNG_ERR_UST_CHAN_EXIST
;
311 DBG2("Channel %s enabled successfully", uchan
->name
);
314 if (!usess
->active
) {
316 * The channel will be activated against the apps
317 * when the session is started as part of the
318 * application channel "synchronize" operation.
323 DBG2("Channel %s being enabled in UST domain", uchan
->name
);
326 * Enable channel for UST global domain on all applications. Ignore return
327 * value here since whatever error we got, it means that the channel was
328 * not created on one or many registered applications and we can not report
329 * this to the user yet. However, at this stage, the channel was
330 * successfully created on the session daemon side so the enable-channel
331 * command is a success.
333 (void) ust_app_enable_channel_glb(usess
, uchan
);
341 * Create UST channel for session and domain.
343 int channel_ust_create(struct ltt_ust_session
*usess
,
344 struct lttng_channel
*attr
, enum lttng_buffer_type type
)
347 struct ltt_ust_channel
*uchan
= NULL
;
348 struct lttng_channel
*defattr
= NULL
;
349 enum lttng_domain_type domain
= LTTNG_DOMAIN_UST
;
350 bool chan_published
= false;
354 /* Creating channel attributes if needed */
356 defattr
= channel_new_default_attr(LTTNG_DOMAIN_UST
, type
);
357 if (defattr
== NULL
) {
358 ret
= LTTNG_ERR_FATAL
;
364 * HACK: Set the channel's subdomain (JUL, Log4j, Python, etc.)
365 * based on the default name.
367 if (!strcmp(attr
->name
, DEFAULT_JUL_CHANNEL_NAME
)) {
368 domain
= LTTNG_DOMAIN_JUL
;
369 } else if (!strcmp(attr
->name
, DEFAULT_LOG4J_CHANNEL_NAME
)) {
370 domain
= LTTNG_DOMAIN_LOG4J
;
371 } else if (!strcmp(attr
->name
, DEFAULT_PYTHON_CHANNEL_NAME
)) {
372 domain
= LTTNG_DOMAIN_PYTHON
;
377 * Set the overwrite mode for this channel based on the session
378 * type unless the client explicitly overrides the channel mode.
380 if (attr
->attr
.overwrite
== DEFAULT_CHANNEL_OVERWRITE
) {
381 attr
->attr
.overwrite
= !!usess
->snapshot_mode
;
384 /* Enforce mmap output for snapshot sessions. */
385 if (usess
->snapshot_mode
) {
386 attr
->attr
.output
= LTTNG_EVENT_MMAP
;
389 /* Validate common channel properties. */
390 if (channel_validate(attr
) < 0) {
391 ret
= LTTNG_ERR_INVALID
;
396 * Validate UST buffer size and number of buffers: must both be power of 2
397 * and nonzero. We validate right here for UST, because applications will
398 * not report the error to the user (unlike kernel tracing).
400 if (!attr
->attr
.subbuf_size
||
401 (attr
->attr
.subbuf_size
& (attr
->attr
.subbuf_size
- 1))) {
402 ret
= LTTNG_ERR_INVALID
;
407 * Invalid subbuffer size if it's lower then the page size.
409 if (attr
->attr
.subbuf_size
< page_size
) {
410 ret
= LTTNG_ERR_INVALID
;
414 if (!attr
->attr
.num_subbuf
||
415 (attr
->attr
.num_subbuf
& (attr
->attr
.num_subbuf
- 1))) {
416 ret
= LTTNG_ERR_INVALID
;
420 if (attr
->attr
.output
!= LTTNG_EVENT_MMAP
) {
421 ret
= LTTNG_ERR_NOT_SUPPORTED
;
426 * The tracefile_size should not be < to the subbuf_size, otherwise
427 * we won't be able to write the packets on disk
429 if ((attr
->attr
.tracefile_size
> 0) &&
430 (attr
->attr
.tracefile_size
< attr
->attr
.subbuf_size
)) {
431 ret
= LTTNG_ERR_INVALID
;
435 /* Validate buffer type. */
437 case LTTNG_BUFFER_PER_PID
:
439 case LTTNG_BUFFER_PER_UID
:
442 ret
= LTTNG_ERR_BUFFER_NOT_SUPPORTED
;
446 /* Create UST channel */
447 uchan
= trace_ust_create_channel(attr
, domain
);
449 ret
= LTTNG_ERR_FATAL
;
454 if (trace_ust_is_max_id(usess
->used_channel_id
)) {
455 ret
= LTTNG_ERR_UST_CHAN_FAIL
;
458 uchan
->id
= trace_ust_get_next_chan_id(usess
);
460 DBG2("Channel %s is being created for UST with buffer %d and id %" PRIu64
,
461 uchan
->name
, type
, uchan
->id
);
463 /* Flag session buffer type. */
464 if (!usess
->buffer_type_changed
) {
465 usess
->buffer_type
= type
;
466 usess
->buffer_type_changed
= 1;
467 } else if (usess
->buffer_type
!= type
) {
468 /* Buffer type was already set. Refuse to create channel. */
469 ret
= LTTNG_ERR_BUFFER_TYPE_MISMATCH
;
470 goto error_free_chan
;
474 /* Enable channel for global domain */
475 ret
= ust_app_create_channel_glb(usess
, uchan
);
476 if (ret
< 0 && ret
!= -LTTNG_UST_ERR_EXIST
) {
477 ret
= LTTNG_ERR_UST_CHAN_FAIL
;
478 goto error_free_chan
;
482 /* Adding the channel to the channel hash table. */
484 if (strncmp(uchan
->name
, DEFAULT_METADATA_NAME
,
485 sizeof(uchan
->name
))) {
486 lttng_ht_add_unique_str(usess
->domain_global
.channels
, &uchan
->node
);
487 chan_published
= true;
490 * Copy channel attribute to session if this is metadata so if NO
491 * application exists we can access that data in the shadow copy during
492 * the global update of newly registered application.
494 memcpy(&usess
->metadata_attr
, &uchan
->attr
,
495 sizeof(usess
->metadata_attr
));
499 DBG2("Channel %s created successfully", uchan
->name
);
500 if (domain
!= LTTNG_DOMAIN_UST
) {
501 struct agent
*agt
= trace_ust_find_agent(usess
, domain
);
504 agt
= agent_create(domain
);
506 ret
= LTTNG_ERR_NOMEM
;
507 goto error_remove_chan
;
509 agent_add(agt
, usess
->agents
);
513 channel_attr_destroy(defattr
);
517 if (chan_published
) {
518 trace_ust_delete_channel(usess
->domain_global
.channels
, uchan
);
521 trace_ust_destroy_channel(uchan
);
523 channel_attr_destroy(defattr
);
528 * Disable UST channel for session and domain.
530 int channel_ust_disable(struct ltt_ust_session
*usess
,
531 struct ltt_ust_channel
*uchan
)
538 /* Already disabled */
539 if (uchan
->enabled
== 0) {
540 DBG2("Channel UST %s already disabled", uchan
->name
);
543 if (!usess
->active
) {
547 DBG2("Channel %s being disabled in UST global domain", uchan
->name
);
548 /* Disable channel for global domain */
549 ret
= ust_app_disable_channel_glb(usess
, uchan
);
550 if (ret
< 0 && ret
!= -LTTNG_UST_ERR_EXIST
) {
551 ret
= LTTNG_ERR_UST_CHAN_DISABLE_FAIL
;
557 DBG2("Channel %s disabled successfully", uchan
->name
);