2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
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.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
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.
25 #include <common/common.h>
26 #include <common/defaults.h>
29 #include "trace-kernel.h"
32 * Find the channel name for the given kernel session.
34 struct ltt_kernel_channel
*trace_kernel_get_channel_by_name(
35 char *name
, struct ltt_kernel_session
*session
)
37 struct ltt_kernel_channel
*chan
;
43 * If we receive an empty string for channel name, it means the
44 * default channel name is requested.
47 name
= DEFAULT_CHANNEL_NAME
;
49 DBG("Trying to find channel %s", name
);
51 cds_list_for_each_entry(chan
, &session
->channel_list
.head
, list
) {
52 if (strcmp(name
, chan
->channel
->name
) == 0) {
53 DBG("Found channel by name %s", name
);
62 * Find the event for the given channel.
64 struct ltt_kernel_event
*trace_kernel_find_event(
65 char *name
, struct ltt_kernel_channel
*channel
,
66 enum lttng_event_type type
,
67 struct lttng_filter_bytecode
*filter
)
69 struct ltt_kernel_event
*ev
;
75 cds_list_for_each_entry(ev
, &channel
->events_list
.head
, list
) {
76 if (type
!= LTTNG_EVENT_ALL
&& ev
->type
!= type
) {
79 if (strcmp(name
, ev
->event
->name
)) {
82 if ((ev
->filter
&& !filter
) || (!ev
->filter
&& filter
)) {
85 if (ev
->filter
&& filter
) {
86 if (ev
->filter
->len
!= filter
->len
||
87 memcmp(ev
->filter
->data
, filter
->data
,
96 DBG("Found event %s for channel %s", name
,
97 channel
->channel
->name
);
105 * Find the event name for the given channel.
107 struct ltt_kernel_event
*trace_kernel_get_event_by_name(
108 char *name
, struct ltt_kernel_channel
*channel
,
109 enum lttng_event_type type
)
111 struct ltt_kernel_event
*ev
;
117 cds_list_for_each_entry(ev
, &channel
->events_list
.head
, list
) {
118 if (type
!= LTTNG_EVENT_ALL
&& ev
->type
!= type
) {
121 if (strcmp(name
, ev
->event
->name
)) {
128 DBG("Found event %s for channel %s", name
,
129 channel
->channel
->name
);
137 * Allocate and initialize a kernel session data structure.
139 * Return pointer to structure or NULL.
141 struct ltt_kernel_session
*trace_kernel_create_session(void)
143 struct ltt_kernel_session
*lks
= NULL
;
145 /* Allocate a new ltt kernel session */
146 lks
= zmalloc(sizeof(struct ltt_kernel_session
));
148 PERROR("create kernel session zmalloc");
152 /* Init data structure */
154 lks
->metadata_stream_fd
= -1;
155 lks
->channel_count
= 0;
156 lks
->stream_count_global
= 0;
157 lks
->metadata
= NULL
;
158 CDS_INIT_LIST_HEAD(&lks
->channel_list
.head
);
160 lks
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
161 if (lks
->consumer
== NULL
) {
166 * The tmp_consumer stays NULL until a set_consumer_uri command is
167 * executed. At this point, the consumer should be nullify until an
168 * enable_consumer command. This assignment is symbolic since we've zmalloc
171 lks
->tmp_consumer
= NULL
;
183 * Allocate and initialize a kernel channel data structure.
185 * Return pointer to structure or NULL.
187 struct ltt_kernel_channel
*trace_kernel_create_channel(
188 struct lttng_channel
*chan
)
190 struct ltt_kernel_channel
*lkc
;
194 lkc
= zmalloc(sizeof(struct ltt_kernel_channel
));
196 PERROR("ltt_kernel_channel zmalloc");
200 lkc
->channel
= zmalloc(sizeof(struct lttng_channel
));
201 if (lkc
->channel
== NULL
) {
202 PERROR("lttng_channel zmalloc");
206 memcpy(lkc
->channel
, chan
, sizeof(struct lttng_channel
));
209 * If we receive an empty string for channel name, it means the
210 * default channel name is requested.
212 if (chan
->name
[0] == '\0') {
213 strncpy(lkc
->channel
->name
, DEFAULT_CHANNEL_NAME
,
214 sizeof(lkc
->channel
->name
));
216 lkc
->channel
->name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
219 lkc
->stream_count
= 0;
220 lkc
->event_count
= 0;
222 /* Init linked list */
223 CDS_INIT_LIST_HEAD(&lkc
->events_list
.head
);
224 CDS_INIT_LIST_HEAD(&lkc
->stream_list
.head
);
225 CDS_INIT_LIST_HEAD(&lkc
->ctx_list
);
234 * Allocate and init a kernel context object.
236 * Return the allocated object or NULL on error.
238 struct ltt_kernel_context
*trace_kernel_create_context(
239 struct lttng_kernel_context
*ctx
)
241 struct ltt_kernel_context
*kctx
;
243 kctx
= zmalloc(sizeof(*kctx
));
245 PERROR("zmalloc kernel context");
250 memcpy(&kctx
->ctx
, ctx
, sizeof(kctx
->ctx
));
253 CDS_INIT_LIST_HEAD(&kctx
->list
);
260 * Allocate and initialize a kernel event. Set name and event type.
261 * We own filter_expression, and filter.
263 * Return pointer to structure or NULL.
265 struct ltt_kernel_event
*trace_kernel_create_event(struct lttng_event
*ev
,
266 char *filter_expression
, struct lttng_filter_bytecode
*filter
)
268 struct ltt_kernel_event
*lke
;
269 struct lttng_kernel_event
*attr
;
273 lke
= zmalloc(sizeof(struct ltt_kernel_event
));
274 attr
= zmalloc(sizeof(struct lttng_kernel_event
));
275 if (lke
== NULL
|| attr
== NULL
) {
276 PERROR("kernel event zmalloc");
281 case LTTNG_EVENT_PROBE
:
282 attr
->instrumentation
= LTTNG_KERNEL_KPROBE
;
283 attr
->u
.kprobe
.addr
= ev
->attr
.probe
.addr
;
284 attr
->u
.kprobe
.offset
= ev
->attr
.probe
.offset
;
285 strncpy(attr
->u
.kprobe
.symbol_name
,
286 ev
->attr
.probe
.symbol_name
, LTTNG_KERNEL_SYM_NAME_LEN
);
287 attr
->u
.kprobe
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
289 case LTTNG_EVENT_FUNCTION
:
290 attr
->instrumentation
= LTTNG_KERNEL_KRETPROBE
;
291 attr
->u
.kretprobe
.addr
= ev
->attr
.probe
.addr
;
292 attr
->u
.kretprobe
.offset
= ev
->attr
.probe
.offset
;
293 strncpy(attr
->u
.kretprobe
.symbol_name
,
294 ev
->attr
.probe
.symbol_name
, LTTNG_KERNEL_SYM_NAME_LEN
);
295 attr
->u
.kretprobe
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
297 case LTTNG_EVENT_FUNCTION_ENTRY
:
298 attr
->instrumentation
= LTTNG_KERNEL_FUNCTION
;
299 strncpy(attr
->u
.ftrace
.symbol_name
,
300 ev
->attr
.ftrace
.symbol_name
, LTTNG_KERNEL_SYM_NAME_LEN
);
301 attr
->u
.ftrace
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
303 case LTTNG_EVENT_TRACEPOINT
:
304 attr
->instrumentation
= LTTNG_KERNEL_TRACEPOINT
;
306 case LTTNG_EVENT_SYSCALL
:
307 attr
->instrumentation
= LTTNG_KERNEL_SYSCALL
;
309 case LTTNG_EVENT_ALL
:
310 attr
->instrumentation
= LTTNG_KERNEL_ALL
;
313 ERR("Unknown kernel instrumentation type (%d)", ev
->type
);
317 /* Copy event name */
318 strncpy(attr
->name
, ev
->name
, LTTNG_KERNEL_SYM_NAME_LEN
);
319 attr
->name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
321 /* Setting up a kernel event */
325 lke
->filter_expression
= filter_expression
;
326 lke
->filter
= filter
;
331 free(filter_expression
);
339 * Allocate and initialize a kernel metadata.
341 * Return pointer to structure or NULL.
343 struct ltt_kernel_metadata
*trace_kernel_create_metadata(void)
345 struct ltt_kernel_metadata
*lkm
;
346 struct lttng_channel
*chan
;
348 lkm
= zmalloc(sizeof(struct ltt_kernel_metadata
));
349 chan
= zmalloc(sizeof(struct lttng_channel
));
350 if (lkm
== NULL
|| chan
== NULL
) {
351 PERROR("kernel metadata zmalloc");
355 /* Set default attributes */
356 chan
->attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
357 chan
->attr
.subbuf_size
= default_get_metadata_subbuf_size();
358 chan
->attr
.num_subbuf
= DEFAULT_METADATA_SUBBUF_NUM
;
359 chan
->attr
.switch_timer_interval
= DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER
;
360 chan
->attr
.read_timer_interval
= DEFAULT_KERNEL_CHANNEL_READ_TIMER
;
361 chan
->attr
.output
= DEFAULT_KERNEL_CHANNEL_OUTPUT
;
376 * Allocate and initialize a kernel stream. The stream is set to ACTIVE_FD by
379 * Return pointer to structure or NULL.
381 struct ltt_kernel_stream
*trace_kernel_create_stream(const char *name
,
385 struct ltt_kernel_stream
*lks
;
389 lks
= zmalloc(sizeof(struct ltt_kernel_stream
));
391 PERROR("kernel stream zmalloc");
396 ret
= snprintf(lks
->name
, sizeof(lks
->name
), "%s_%u", name
, count
);
398 PERROR("snprintf stream name");
401 lks
->name
[sizeof(lks
->name
) - 1] = '\0';
415 * Cleanup kernel stream structure.
417 void trace_kernel_destroy_stream(struct ltt_kernel_stream
*stream
)
421 DBG("[trace] Closing stream fd %d", stream
->fd
);
422 /* Close kernel fd */
423 if (stream
->fd
>= 0) {
426 ret
= close(stream
->fd
);
431 /* Remove from stream list */
432 cds_list_del(&stream
->list
);
438 * Cleanup kernel event structure.
440 void trace_kernel_destroy_event(struct ltt_kernel_event
*event
)
444 if (event
->fd
>= 0) {
447 DBG("[trace] Closing event fd %d", event
->fd
);
448 /* Close kernel fd */
449 ret
= close(event
->fd
);
454 DBG("[trace] Tearing down event (no associated fd)");
457 /* Remove from event list */
458 cds_list_del(&event
->list
);
460 free(event
->filter_expression
);
468 * Cleanup kernel context structure.
470 void trace_kernel_destroy_context(struct ltt_kernel_context
*ctx
)
474 cds_list_del(&ctx
->list
);
479 * Cleanup kernel channel structure.
481 void trace_kernel_destroy_channel(struct ltt_kernel_channel
*channel
)
483 struct ltt_kernel_stream
*stream
, *stmp
;
484 struct ltt_kernel_event
*event
, *etmp
;
485 struct ltt_kernel_context
*ctx
, *ctmp
;
490 DBG("[trace] Closing channel fd %d", channel
->fd
);
491 /* Close kernel fd */
492 if (channel
->fd
>= 0) {
493 ret
= close(channel
->fd
);
499 /* For each stream in the channel list */
500 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->stream_list
.head
, list
) {
501 trace_kernel_destroy_stream(stream
);
504 /* For each event in the channel list */
505 cds_list_for_each_entry_safe(event
, etmp
, &channel
->events_list
.head
, list
) {
506 trace_kernel_destroy_event(event
);
509 /* For each context in the channel list */
510 cds_list_for_each_entry_safe(ctx
, ctmp
, &channel
->ctx_list
, list
) {
511 trace_kernel_destroy_context(ctx
);
514 /* Remove from channel list */
515 cds_list_del(&channel
->list
);
517 free(channel
->channel
);
522 * Cleanup kernel metadata structure.
524 void trace_kernel_destroy_metadata(struct ltt_kernel_metadata
*metadata
)
528 DBG("[trace] Closing metadata fd %d", metadata
->fd
);
529 /* Close kernel fd */
530 if (metadata
->fd
>= 0) {
533 ret
= close(metadata
->fd
);
539 free(metadata
->conf
);
544 * Cleanup kernel session structure
546 * Should *NOT* be called with RCU read-side lock held.
548 void trace_kernel_destroy_session(struct ltt_kernel_session
*session
)
550 struct ltt_kernel_channel
*channel
, *ctmp
;
555 DBG("[trace] Closing session fd %d", session
->fd
);
556 /* Close kernel fds */
557 if (session
->fd
>= 0) {
558 ret
= close(session
->fd
);
564 if (session
->metadata_stream_fd
>= 0) {
565 DBG("[trace] Closing metadata stream fd %d", session
->metadata_stream_fd
);
566 ret
= close(session
->metadata_stream_fd
);
572 if (session
->metadata
!= NULL
) {
573 trace_kernel_destroy_metadata(session
->metadata
);
576 cds_list_for_each_entry_safe(channel
, ctmp
, &session
->channel_list
.head
, list
) {
577 trace_kernel_destroy_channel(channel
);
580 /* Wipe consumer output object */
581 consumer_destroy_output(session
->consumer
);
582 consumer_destroy_output(session
->tmp_consumer
);