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
;
45 chan
= zmalloc(sizeof(struct lttng_channel
));
47 PERROR("zmalloc channel init");
51 /* Same for all domains. */
52 chan
->attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
53 chan
->attr
.tracefile_size
= DEFAULT_CHANNEL_TRACEFILE_SIZE
;
54 chan
->attr
.tracefile_count
= DEFAULT_CHANNEL_TRACEFILE_COUNT
;
57 case LTTNG_DOMAIN_KERNEL
:
58 assert(type
== LTTNG_BUFFER_GLOBAL
);
59 chan
->attr
.subbuf_size
=
60 default_get_kernel_channel_subbuf_size();
61 chan
->attr
.num_subbuf
= DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM
;
62 chan
->attr
.output
= DEFAULT_KERNEL_CHANNEL_OUTPUT
;
63 chan
->attr
.switch_timer_interval
= DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER
;
64 chan
->attr
.read_timer_interval
= DEFAULT_KERNEL_CHANNEL_READ_TIMER
;
65 chan
->attr
.live_timer_interval
= DEFAULT_KERNEL_CHANNEL_LIVE_TIMER
;
67 case LTTNG_DOMAIN_JUL
:
68 channel_name
= DEFAULT_JUL_CHANNEL_NAME
;
70 case LTTNG_DOMAIN_LOG4J
:
71 channel_name
= DEFAULT_LOG4J_CHANNEL_NAME
;
73 case LTTNG_DOMAIN_PYTHON
:
74 channel_name
= DEFAULT_PYTHON_CHANNEL_NAME
;
76 case LTTNG_DOMAIN_UST
:
79 case LTTNG_BUFFER_PER_UID
:
80 chan
->attr
.subbuf_size
= default_get_ust_uid_channel_subbuf_size();
81 chan
->attr
.num_subbuf
= DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM
;
82 chan
->attr
.output
= DEFAULT_UST_UID_CHANNEL_OUTPUT
;
83 chan
->attr
.switch_timer_interval
=
84 DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER
;
85 chan
->attr
.read_timer_interval
=
86 DEFAULT_UST_UID_CHANNEL_READ_TIMER
;
87 chan
->attr
.live_timer_interval
=
88 DEFAULT_UST_UID_CHANNEL_LIVE_TIMER
;
90 case LTTNG_BUFFER_PER_PID
:
92 chan
->attr
.subbuf_size
= default_get_ust_pid_channel_subbuf_size();
93 chan
->attr
.num_subbuf
= DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM
;
94 chan
->attr
.output
= DEFAULT_UST_PID_CHANNEL_OUTPUT
;
95 chan
->attr
.switch_timer_interval
=
96 DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER
;
97 chan
->attr
.read_timer_interval
=
98 DEFAULT_UST_PID_CHANNEL_READ_TIMER
;
99 chan
->attr
.live_timer_interval
=
100 DEFAULT_UST_UID_CHANNEL_LIVE_TIMER
;
105 goto error
; /* Not implemented */
108 if (snprintf(chan
->name
, sizeof(chan
->name
), "%s",
110 PERROR("snprintf default channel name");
122 * Disable kernel channel of the kernel session.
124 int channel_kernel_disable(struct ltt_kernel_session
*ksession
,
128 struct ltt_kernel_channel
*kchan
;
131 assert(channel_name
);
133 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksession
);
135 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
139 /* Only if channel is enabled disable it. */
140 if (kchan
->enabled
== 1) {
141 ret
= kernel_disable_channel(kchan
);
142 if (ret
< 0 && ret
!= -EEXIST
) {
143 ret
= LTTNG_ERR_KERN_CHAN_DISABLE_FAIL
;
155 * Enable kernel channel of the kernel session.
157 int channel_kernel_enable(struct ltt_kernel_session
*ksession
,
158 struct ltt_kernel_channel
*kchan
)
165 if (kchan
->enabled
== 0) {
166 ret
= kernel_enable_channel(kchan
);
168 ret
= LTTNG_ERR_KERN_CHAN_ENABLE_FAIL
;
172 ret
= LTTNG_ERR_KERN_CHAN_EXIST
;
183 * Create kernel channel of the kernel session and notify kernel thread.
185 int channel_kernel_create(struct ltt_kernel_session
*ksession
,
186 struct lttng_channel
*attr
, int kernel_pipe
)
189 struct lttng_channel
*defattr
= NULL
;
193 /* Creating channel attributes if needed */
195 defattr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
196 LTTNG_BUFFER_GLOBAL
);
197 if (defattr
== NULL
) {
198 ret
= LTTNG_ERR_FATAL
;
204 if (ksession
->snapshot_mode
) {
205 /* Force channel attribute for snapshot mode. */
206 attr
->attr
.overwrite
= 1;
207 attr
->attr
.output
= LTTNG_EVENT_MMAP
;
210 /* Channel not found, creating it */
211 ret
= kernel_create_channel(ksession
, attr
);
213 ret
= LTTNG_ERR_KERN_CHAN_FAIL
;
217 /* Notify kernel thread that there is a new channel */
218 ret
= notify_thread_pipe(kernel_pipe
);
220 ret
= LTTNG_ERR_FATAL
;
231 * Enable UST channel for session and domain.
233 int channel_ust_enable(struct ltt_ust_session
*usess
,
234 struct ltt_ust_channel
*uchan
)
241 /* If already enabled, everything is OK */
242 if (uchan
->enabled
) {
243 DBG3("Channel %s already enabled. Skipping", uchan
->name
);
244 ret
= LTTNG_ERR_UST_CHAN_EXIST
;
248 DBG2("Channel %s being enabled in UST domain", uchan
->name
);
251 * Enable channel for UST global domain on all applications. Ignore return
252 * value here since whatever error we got, it means that the channel was
253 * not created on one or many registered applications and we can not report
254 * this to the user yet. However, at this stage, the channel was
255 * successfully created on the session daemon side so the enable-channel
256 * command is a success.
258 (void) ust_app_enable_channel_glb(usess
, uchan
);
261 DBG2("Channel %s enabled successfully", uchan
->name
);
268 * Create UST channel for session and domain.
270 int channel_ust_create(struct ltt_ust_session
*usess
,
271 struct lttng_channel
*attr
, enum lttng_buffer_type type
)
274 struct ltt_ust_channel
*uchan
= NULL
;
275 struct lttng_channel
*defattr
= NULL
;
276 enum lttng_domain_type domain
= LTTNG_DOMAIN_UST
;
280 /* Creating channel attributes if needed */
282 defattr
= channel_new_default_attr(LTTNG_DOMAIN_UST
, type
);
283 if (defattr
== NULL
) {
284 ret
= LTTNG_ERR_FATAL
;
290 * HACK: Set the channel's subdomain (JUL, Log4j, Python, etc.)
291 * based on the default name.
293 if (!strcmp(attr
->name
, DEFAULT_JUL_CHANNEL_NAME
)) {
294 domain
= LTTNG_DOMAIN_JUL
;
295 } else if (!strcmp(attr
->name
, DEFAULT_LOG4J_CHANNEL_NAME
)) {
296 domain
= LTTNG_DOMAIN_LOG4J
;
297 } else if (!strcmp(attr
->name
, DEFAULT_PYTHON_CHANNEL_NAME
)) {
298 domain
= LTTNG_DOMAIN_PYTHON
;
302 if (usess
->snapshot_mode
) {
303 /* Force channel attribute for snapshot mode. */
304 attr
->attr
.overwrite
= 1;
305 attr
->attr
.output
= LTTNG_EVENT_MMAP
;
309 * Validate UST buffer size and number of buffers: must both be power of 2
310 * and nonzero. We validate right here for UST, because applications will
311 * not report the error to the user (unlike kernel tracing).
313 if (!attr
->attr
.subbuf_size
||
314 (attr
->attr
.subbuf_size
& (attr
->attr
.subbuf_size
- 1))) {
315 ret
= LTTNG_ERR_INVALID
;
320 * Invalid subbuffer size if it's lower then the page size.
322 if (attr
->attr
.subbuf_size
< page_size
) {
323 ret
= LTTNG_ERR_INVALID
;
327 if (!attr
->attr
.num_subbuf
||
328 (attr
->attr
.num_subbuf
& (attr
->attr
.num_subbuf
- 1))) {
329 ret
= LTTNG_ERR_INVALID
;
333 if (attr
->attr
.output
!= LTTNG_EVENT_MMAP
) {
334 ret
= LTTNG_ERR_NOT_SUPPORTED
;
339 * The tracefile_size should not be < to the subbuf_size, otherwise
340 * we won't be able to write the packets on disk
342 if ((attr
->attr
.tracefile_size
> 0) &&
343 (attr
->attr
.tracefile_size
< attr
->attr
.subbuf_size
)) {
344 ret
= LTTNG_ERR_INVALID
;
348 /* Validate buffer type. */
350 case LTTNG_BUFFER_PER_PID
:
352 case LTTNG_BUFFER_PER_UID
:
355 ret
= LTTNG_ERR_BUFFER_NOT_SUPPORTED
;
359 /* Create UST channel */
360 uchan
= trace_ust_create_channel(attr
, domain
);
362 ret
= LTTNG_ERR_FATAL
;
367 if (trace_ust_is_max_id(usess
->used_channel_id
)) {
368 ret
= LTTNG_ERR_UST_CHAN_FAIL
;
371 uchan
->id
= trace_ust_get_next_chan_id(usess
);
373 DBG2("Channel %s is being created for UST with buffer %d and id %" PRIu64
,
374 uchan
->name
, type
, uchan
->id
);
376 /* Flag session buffer type. */
377 if (!usess
->buffer_type_changed
) {
378 usess
->buffer_type
= type
;
379 usess
->buffer_type_changed
= 1;
380 } else if (usess
->buffer_type
!= type
) {
381 /* Buffer type was already set. Refuse to create channel. */
382 ret
= LTTNG_ERR_BUFFER_TYPE_MISMATCH
;
383 goto error_free_chan
;
386 /* Enable channel for global domain */
387 ret
= ust_app_create_channel_glb(usess
, uchan
);
388 if (ret
< 0 && ret
!= -LTTNG_UST_ERR_EXIST
) {
389 ret
= LTTNG_ERR_UST_CHAN_FAIL
;
390 goto error_free_chan
;
393 /* Adding the channel to the channel hash table. */
395 if (strncmp(uchan
->name
, DEFAULT_METADATA_NAME
,
396 sizeof(uchan
->name
))) {
397 lttng_ht_add_unique_str(usess
->domain_global
.channels
, &uchan
->node
);
400 * Copy channel attribute to session if this is metadata so if NO
401 * application exists we can access that data in the shadow copy during
402 * the global update of newly registered application.
404 memcpy(&usess
->metadata_attr
, &uchan
->attr
,
405 sizeof(usess
->metadata_attr
));
409 DBG2("Channel %s created successfully", uchan
->name
);
410 if (domain
!= LTTNG_DOMAIN_UST
) {
411 struct agent
*agt
= trace_ust_find_agent(usess
, domain
);
414 agt
= agent_create(domain
);
416 ret
= LTTNG_ERR_NOMEM
;
417 goto error_free_chan
;
419 agent_add(agt
, usess
->agents
);
428 * No need to remove the channel from the hash table because at this point
429 * it was not added hence the direct call and no call_rcu().
431 trace_ust_destroy_channel(uchan
);
438 * Disable UST channel for session and domain.
440 int channel_ust_disable(struct ltt_ust_session
*usess
,
441 struct ltt_ust_channel
*uchan
)
448 /* Already disabled */
449 if (uchan
->enabled
== 0) {
450 DBG2("Channel UST %s already disabled", uchan
->name
);
454 DBG2("Channel %s being disabled in UST global domain", uchan
->name
);
455 /* Disable channel for global domain */
456 ret
= ust_app_disable_channel_glb(usess
, uchan
);
457 if (ret
< 0 && ret
!= -LTTNG_UST_ERR_EXIST
) {
458 ret
= LTTNG_ERR_UST_CHAN_DISABLE_FAIL
;
464 DBG2("Channel %s disabled successfully", uchan
->name
);