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.
24 #include <common/common.h>
25 #include <common/defaults.h>
28 #include "trace-kernel.h"
31 * Find the channel name for the given kernel session.
33 struct ltt_kernel_channel
*trace_kernel_get_channel_by_name(
34 char *name
, struct ltt_kernel_session
*session
)
36 struct ltt_kernel_channel
*chan
;
42 * If we receive an empty string for channel name, it means the
43 * default channel name is requested.
46 name
= DEFAULT_CHANNEL_NAME
;
48 DBG("Trying to find channel %s", name
);
50 cds_list_for_each_entry(chan
, &session
->channel_list
.head
, list
) {
51 if (strcmp(name
, chan
->channel
->name
) == 0) {
52 DBG("Found channel by name %s", name
);
61 * Find the event name for the given channel.
63 struct ltt_kernel_event
*trace_kernel_get_event_by_name(
64 char *name
, struct ltt_kernel_channel
*channel
)
66 struct ltt_kernel_event
*ev
;
71 cds_list_for_each_entry(ev
, &channel
->events_list
.head
, list
) {
72 if (strcmp(name
, ev
->event
->name
) == 0) {
73 DBG("Found event by name %s for channel %s", name
,
74 channel
->channel
->name
);
83 * Allocate and initialize a kernel session data structure.
85 * Return pointer to structure or NULL.
87 struct ltt_kernel_session
*trace_kernel_create_session(void)
89 struct ltt_kernel_session
*lks
= NULL
;
91 /* Allocate a new ltt kernel session */
92 lks
= zmalloc(sizeof(struct ltt_kernel_session
));
94 PERROR("create kernel session zmalloc");
98 /* Init data structure */
100 lks
->metadata_stream_fd
= -1;
101 lks
->channel_count
= 0;
102 lks
->stream_count_global
= 0;
103 lks
->metadata
= NULL
;
104 CDS_INIT_LIST_HEAD(&lks
->channel_list
.head
);
106 lks
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
107 if (lks
->consumer
== NULL
) {
112 * The tmp_consumer stays NULL until a set_consumer_uri command is
113 * executed. At this point, the consumer should be nullify until an
114 * enable_consumer command. This assignment is symbolic since we've zmalloc
117 lks
->tmp_consumer
= NULL
;
129 * Allocate and initialize a kernel channel data structure.
131 * Return pointer to structure or NULL.
133 struct ltt_kernel_channel
*trace_kernel_create_channel(
134 struct lttng_channel
*chan
)
136 struct ltt_kernel_channel
*lkc
;
140 lkc
= zmalloc(sizeof(struct ltt_kernel_channel
));
142 PERROR("ltt_kernel_channel zmalloc");
146 lkc
->channel
= zmalloc(sizeof(struct lttng_channel
));
147 if (lkc
->channel
== NULL
) {
148 PERROR("lttng_channel zmalloc");
152 memcpy(lkc
->channel
, chan
, sizeof(struct lttng_channel
));
155 * If we receive an empty string for channel name, it means the
156 * default channel name is requested.
158 if (chan
->name
[0] == '\0') {
159 strncpy(lkc
->channel
->name
, DEFAULT_CHANNEL_NAME
,
160 sizeof(lkc
->channel
->name
));
162 lkc
->channel
->name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
165 lkc
->stream_count
= 0;
166 lkc
->event_count
= 0;
168 /* Init linked list */
169 CDS_INIT_LIST_HEAD(&lkc
->events_list
.head
);
170 CDS_INIT_LIST_HEAD(&lkc
->stream_list
.head
);
171 CDS_INIT_LIST_HEAD(&lkc
->ctx_list
);
180 * Allocate and init a kernel context object.
182 * Return the allocated object or NULL on error.
184 struct ltt_kernel_context
*trace_kernel_create_context(
185 struct lttng_kernel_context
*ctx
)
187 struct ltt_kernel_context
*kctx
;
189 kctx
= zmalloc(sizeof(*kctx
));
191 PERROR("zmalloc kernel context");
196 memcpy(&kctx
->ctx
, ctx
, sizeof(kctx
->ctx
));
204 * Allocate and initialize a kernel event. Set name and event type.
206 * Return pointer to structure or NULL.
208 struct ltt_kernel_event
*trace_kernel_create_event(struct lttng_event
*ev
)
210 struct ltt_kernel_event
*lke
;
211 struct lttng_kernel_event
*attr
;
215 lke
= zmalloc(sizeof(struct ltt_kernel_event
));
216 attr
= zmalloc(sizeof(struct lttng_kernel_event
));
217 if (lke
== NULL
|| attr
== NULL
) {
218 PERROR("kernel event zmalloc");
223 case LTTNG_EVENT_PROBE
:
224 attr
->instrumentation
= LTTNG_KERNEL_KPROBE
;
225 attr
->u
.kprobe
.addr
= ev
->attr
.probe
.addr
;
226 attr
->u
.kprobe
.offset
= ev
->attr
.probe
.offset
;
227 strncpy(attr
->u
.kprobe
.symbol_name
,
228 ev
->attr
.probe
.symbol_name
, LTTNG_KERNEL_SYM_NAME_LEN
);
229 attr
->u
.kprobe
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
231 case LTTNG_EVENT_FUNCTION
:
232 attr
->instrumentation
= LTTNG_KERNEL_KRETPROBE
;
233 attr
->u
.kretprobe
.addr
= ev
->attr
.probe
.addr
;
234 attr
->u
.kretprobe
.offset
= ev
->attr
.probe
.offset
;
235 strncpy(attr
->u
.kretprobe
.symbol_name
,
236 ev
->attr
.probe
.symbol_name
, LTTNG_KERNEL_SYM_NAME_LEN
);
237 attr
->u
.kretprobe
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
239 case LTTNG_EVENT_FUNCTION_ENTRY
:
240 attr
->instrumentation
= LTTNG_KERNEL_FUNCTION
;
241 strncpy(attr
->u
.ftrace
.symbol_name
,
242 ev
->attr
.ftrace
.symbol_name
, LTTNG_KERNEL_SYM_NAME_LEN
);
243 attr
->u
.ftrace
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
245 case LTTNG_EVENT_TRACEPOINT
:
246 attr
->instrumentation
= LTTNG_KERNEL_TRACEPOINT
;
248 case LTTNG_EVENT_SYSCALL
:
249 attr
->instrumentation
= LTTNG_KERNEL_SYSCALL
;
251 case LTTNG_EVENT_ALL
:
252 attr
->instrumentation
= LTTNG_KERNEL_ALL
;
255 ERR("Unknown kernel instrumentation type (%d)", ev
->type
);
259 /* Copy event name */
260 strncpy(attr
->name
, ev
->name
, LTTNG_KERNEL_SYM_NAME_LEN
);
261 attr
->name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
263 /* Setting up a kernel event */
277 * Allocate and initialize a kernel metadata.
279 * Return pointer to structure or NULL.
281 struct ltt_kernel_metadata
*trace_kernel_create_metadata(void)
283 struct ltt_kernel_metadata
*lkm
;
284 struct lttng_channel
*chan
;
286 lkm
= zmalloc(sizeof(struct ltt_kernel_metadata
));
287 chan
= zmalloc(sizeof(struct lttng_channel
));
288 if (lkm
== NULL
|| chan
== NULL
) {
289 PERROR("kernel metadata zmalloc");
293 /* Set default attributes */
294 chan
->attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
295 chan
->attr
.subbuf_size
= default_get_metadata_subbuf_size();
296 chan
->attr
.num_subbuf
= DEFAULT_METADATA_SUBBUF_NUM
;
297 chan
->attr
.switch_timer_interval
= DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER
;
298 chan
->attr
.read_timer_interval
= DEFAULT_KERNEL_CHANNEL_READ_TIMER
;
299 chan
->attr
.output
= DEFAULT_KERNEL_CHANNEL_OUTPUT
;
314 * Allocate and initialize a kernel stream. The stream is set to ACTIVE_FD by
317 * Return pointer to structure or NULL.
319 struct ltt_kernel_stream
*trace_kernel_create_stream(const char *name
,
323 struct ltt_kernel_stream
*lks
;
327 lks
= zmalloc(sizeof(struct ltt_kernel_stream
));
329 PERROR("kernel stream zmalloc");
334 ret
= snprintf(lks
->name
, sizeof(lks
->name
), "%s_%u", name
, count
);
336 PERROR("snprintf stream name");
339 lks
->name
[sizeof(lks
->name
) - 1] = '\0';
353 * Cleanup kernel stream structure.
355 void trace_kernel_destroy_stream(struct ltt_kernel_stream
*stream
)
359 DBG("[trace] Closing stream fd %d", stream
->fd
);
360 /* Close kernel fd */
361 if (stream
->fd
>= 0) {
364 ret
= close(stream
->fd
);
369 /* Remove from stream list */
370 cds_list_del(&stream
->list
);
376 * Cleanup kernel event structure.
378 void trace_kernel_destroy_event(struct ltt_kernel_event
*event
)
382 if (event
->fd
>= 0) {
385 DBG("[trace] Closing event fd %d", event
->fd
);
386 /* Close kernel fd */
387 ret
= close(event
->fd
);
392 DBG("[trace] Tearing down event (no associated fd)");
395 /* Remove from event list */
396 cds_list_del(&event
->list
);
403 * Cleanup kernel context structure.
405 void trace_kernel_destroy_context(struct ltt_kernel_context
*ctx
)
409 cds_list_del(&ctx
->list
);
414 * Cleanup kernel channel structure.
416 void trace_kernel_destroy_channel(struct ltt_kernel_channel
*channel
)
418 struct ltt_kernel_stream
*stream
, *stmp
;
419 struct ltt_kernel_event
*event
, *etmp
;
420 struct ltt_kernel_context
*ctx
, *ctmp
;
425 DBG("[trace] Closing channel fd %d", channel
->fd
);
426 /* Close kernel fd */
427 if (channel
->fd
>= 0) {
428 ret
= close(channel
->fd
);
434 /* For each stream in the channel list */
435 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->stream_list
.head
, list
) {
436 trace_kernel_destroy_stream(stream
);
439 /* For each event in the channel list */
440 cds_list_for_each_entry_safe(event
, etmp
, &channel
->events_list
.head
, list
) {
441 trace_kernel_destroy_event(event
);
444 /* For each context in the channel list */
445 cds_list_for_each_entry_safe(ctx
, ctmp
, &channel
->ctx_list
, list
) {
446 trace_kernel_destroy_context(ctx
);
449 /* Remove from channel list */
450 cds_list_del(&channel
->list
);
452 free(channel
->channel
);
457 * Cleanup kernel metadata structure.
459 void trace_kernel_destroy_metadata(struct ltt_kernel_metadata
*metadata
)
463 DBG("[trace] Closing metadata fd %d", metadata
->fd
);
464 /* Close kernel fd */
465 if (metadata
->fd
>= 0) {
468 ret
= close(metadata
->fd
);
474 free(metadata
->conf
);
479 * Cleanup kernel session structure
481 * Should *NOT* be called with RCU read-side lock held.
483 void trace_kernel_destroy_session(struct ltt_kernel_session
*session
)
485 struct ltt_kernel_channel
*channel
, *ctmp
;
490 DBG("[trace] Closing session fd %d", session
->fd
);
491 /* Close kernel fds */
492 if (session
->fd
>= 0) {
493 ret
= close(session
->fd
);
499 if (session
->metadata_stream_fd
>= 0) {
500 DBG("[trace] Closing metadata stream fd %d", session
->metadata_stream_fd
);
501 ret
= close(session
->metadata_stream_fd
);
507 if (session
->metadata
!= NULL
) {
508 trace_kernel_destroy_metadata(session
->metadata
);
511 cds_list_for_each_entry_safe(channel
, ctmp
, &session
->channel_list
.head
, list
) {
512 trace_kernel_destroy_channel(channel
);
515 /* Wipe consumer output object */
516 consumer_destroy_output(session
->consumer
);
517 consumer_destroy_output(session
->tmp_consumer
);