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
;
41 DBG("Trying to find channel %s", name
);
43 cds_list_for_each_entry(chan
, &session
->channel_list
.head
, list
) {
44 if (strcmp(name
, chan
->channel
->name
) == 0) {
45 DBG("Found channel by name %s", name
);
54 * Find the event name for the given channel.
56 struct ltt_kernel_event
*trace_kernel_get_event_by_name(
57 char *name
, struct ltt_kernel_channel
*channel
)
59 struct ltt_kernel_event
*ev
;
64 cds_list_for_each_entry(ev
, &channel
->events_list
.head
, list
) {
65 if (strcmp(name
, ev
->event
->name
) == 0) {
66 DBG("Found event by name %s for channel %s", name
,
67 channel
->channel
->name
);
76 * Allocate and initialize a kernel session data structure.
78 * Return pointer to structure or NULL.
80 struct ltt_kernel_session
*trace_kernel_create_session(void)
82 struct ltt_kernel_session
*lks
= NULL
;
84 /* Allocate a new ltt kernel session */
85 lks
= zmalloc(sizeof(struct ltt_kernel_session
));
87 PERROR("create kernel session zmalloc");
91 /* Init data structure */
93 lks
->metadata_stream_fd
= -1;
94 lks
->channel_count
= 0;
95 lks
->stream_count_global
= 0;
97 CDS_INIT_LIST_HEAD(&lks
->channel_list
.head
);
99 lks
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
100 if (lks
->consumer
== NULL
) {
105 * The tmp_consumer stays NULL until a set_consumer_uri command is
106 * executed. At this point, the consumer should be nullify until an
107 * enable_consumer command. This assignment is symbolic since we've zmalloc
110 lks
->tmp_consumer
= NULL
;
122 * Allocate and initialize a kernel channel data structure.
124 * Return pointer to structure or NULL.
126 struct ltt_kernel_channel
*trace_kernel_create_channel(
127 struct lttng_channel
*chan
)
129 struct ltt_kernel_channel
*lkc
;
133 lkc
= zmalloc(sizeof(struct ltt_kernel_channel
));
135 PERROR("ltt_kernel_channel zmalloc");
139 lkc
->channel
= zmalloc(sizeof(struct lttng_channel
));
140 if (lkc
->channel
== NULL
) {
141 PERROR("lttng_channel zmalloc");
145 memcpy(lkc
->channel
, chan
, sizeof(struct lttng_channel
));
148 lkc
->stream_count
= 0;
149 lkc
->event_count
= 0;
152 /* Init linked list */
153 CDS_INIT_LIST_HEAD(&lkc
->events_list
.head
);
154 CDS_INIT_LIST_HEAD(&lkc
->stream_list
.head
);
163 * Allocate and initialize a kernel event. Set name and event type.
165 * Return pointer to structure or NULL.
167 struct ltt_kernel_event
*trace_kernel_create_event(struct lttng_event
*ev
)
169 struct ltt_kernel_event
*lke
;
170 struct lttng_kernel_event
*attr
;
174 lke
= zmalloc(sizeof(struct ltt_kernel_event
));
175 attr
= zmalloc(sizeof(struct lttng_kernel_event
));
176 if (lke
== NULL
|| attr
== NULL
) {
177 PERROR("kernel event zmalloc");
182 case LTTNG_EVENT_PROBE
:
183 attr
->instrumentation
= LTTNG_KERNEL_KPROBE
;
184 attr
->u
.kprobe
.addr
= ev
->attr
.probe
.addr
;
185 attr
->u
.kprobe
.offset
= ev
->attr
.probe
.offset
;
186 strncpy(attr
->u
.kprobe
.symbol_name
,
187 ev
->attr
.probe
.symbol_name
, LTTNG_KERNEL_SYM_NAME_LEN
);
188 attr
->u
.kprobe
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
190 case LTTNG_EVENT_FUNCTION
:
191 attr
->instrumentation
= LTTNG_KERNEL_KRETPROBE
;
192 attr
->u
.kretprobe
.addr
= ev
->attr
.probe
.addr
;
193 attr
->u
.kretprobe
.offset
= ev
->attr
.probe
.offset
;
194 attr
->u
.kretprobe
.offset
= ev
->attr
.probe
.offset
;
195 strncpy(attr
->u
.kretprobe
.symbol_name
,
196 ev
->attr
.probe
.symbol_name
, LTTNG_KERNEL_SYM_NAME_LEN
);
197 attr
->u
.kretprobe
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
199 case LTTNG_EVENT_FUNCTION_ENTRY
:
200 attr
->instrumentation
= LTTNG_KERNEL_FUNCTION
;
201 strncpy(attr
->u
.ftrace
.symbol_name
,
202 ev
->attr
.ftrace
.symbol_name
, LTTNG_KERNEL_SYM_NAME_LEN
);
203 attr
->u
.ftrace
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
205 case LTTNG_EVENT_TRACEPOINT
:
206 attr
->instrumentation
= LTTNG_KERNEL_TRACEPOINT
;
208 case LTTNG_EVENT_SYSCALL
:
209 attr
->instrumentation
= LTTNG_KERNEL_SYSCALL
;
211 case LTTNG_EVENT_ALL
:
212 attr
->instrumentation
= LTTNG_KERNEL_ALL
;
215 ERR("Unknown kernel instrumentation type (%d)", ev
->type
);
219 /* Copy event name */
220 strncpy(attr
->name
, ev
->name
, LTTNG_KERNEL_SYM_NAME_LEN
);
221 attr
->name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
223 /* Setting up a kernel event */
237 * Allocate and initialize a kernel metadata.
239 * Return pointer to structure or NULL.
241 struct ltt_kernel_metadata
*trace_kernel_create_metadata(void)
243 struct ltt_kernel_metadata
*lkm
;
244 struct lttng_channel
*chan
;
246 lkm
= zmalloc(sizeof(struct ltt_kernel_metadata
));
247 chan
= zmalloc(sizeof(struct lttng_channel
));
248 if (lkm
== NULL
|| chan
== NULL
) {
249 PERROR("kernel metadata zmalloc");
253 /* Set default attributes */
254 chan
->attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
255 chan
->attr
.subbuf_size
= default_get_metadata_subbuf_size();
256 chan
->attr
.num_subbuf
= DEFAULT_METADATA_SUBBUF_NUM
;
257 chan
->attr
.switch_timer_interval
= DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER
;
258 chan
->attr
.read_timer_interval
= DEFAULT_KERNEL_CHANNEL_READ_TIMER
;
259 chan
->attr
.output
= DEFAULT_KERNEL_CHANNEL_OUTPUT
;
274 * Allocate and initialize a kernel stream. The stream is set to ACTIVE_FD by
277 * Return pointer to structure or NULL.
279 struct ltt_kernel_stream
*trace_kernel_create_stream(const char *name
,
283 struct ltt_kernel_stream
*lks
;
287 lks
= zmalloc(sizeof(struct ltt_kernel_stream
));
289 PERROR("kernel stream zmalloc");
294 ret
= snprintf(lks
->name
, sizeof(lks
->name
), "%s_%d", name
, count
);
296 PERROR("snprintf stream name");
299 lks
->name
[sizeof(lks
->name
) - 1] = '\0';
313 * Cleanup kernel stream structure.
315 void trace_kernel_destroy_stream(struct ltt_kernel_stream
*stream
)
319 DBG("[trace] Closing stream fd %d", stream
->fd
);
320 /* Close kernel fd */
321 if (stream
->fd
>= 0) {
324 ret
= close(stream
->fd
);
329 /* Remove from stream list */
330 cds_list_del(&stream
->list
);
336 * Cleanup kernel event structure.
338 void trace_kernel_destroy_event(struct ltt_kernel_event
*event
)
342 if (event
->fd
>= 0) {
345 DBG("[trace] Closing event fd %d", event
->fd
);
346 /* Close kernel fd */
347 ret
= close(event
->fd
);
352 DBG("[trace] Tearing down event (no associated fd)");
355 /* Remove from event list */
356 cds_list_del(&event
->list
);
363 * Cleanup kernel channel structure.
365 void trace_kernel_destroy_channel(struct ltt_kernel_channel
*channel
)
367 struct ltt_kernel_stream
*stream
, *stmp
;
368 struct ltt_kernel_event
*event
, *etmp
;
373 DBG("[trace] Closing channel fd %d", channel
->fd
);
374 /* Close kernel fd */
375 if (channel
->fd
>= 0) {
376 ret
= close(channel
->fd
);
382 /* For each stream in the channel list */
383 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->stream_list
.head
, list
) {
384 trace_kernel_destroy_stream(stream
);
387 /* For each event in the channel list */
388 cds_list_for_each_entry_safe(event
, etmp
, &channel
->events_list
.head
, list
) {
389 trace_kernel_destroy_event(event
);
392 /* Remove from channel list */
393 cds_list_del(&channel
->list
);
395 free(channel
->channel
);
401 * Cleanup kernel metadata structure.
403 void trace_kernel_destroy_metadata(struct ltt_kernel_metadata
*metadata
)
407 DBG("[trace] Closing metadata fd %d", metadata
->fd
);
408 /* Close kernel fd */
409 if (metadata
->fd
>= 0) {
412 ret
= close(metadata
->fd
);
418 free(metadata
->conf
);
423 * Cleanup kernel session structure
425 * Should *NOT* be called with RCU read-side lock held.
427 void trace_kernel_destroy_session(struct ltt_kernel_session
*session
)
429 struct ltt_kernel_channel
*channel
, *ctmp
;
434 DBG("[trace] Closing session fd %d", session
->fd
);
435 /* Close kernel fds */
436 if (session
->fd
>= 0) {
437 ret
= close(session
->fd
);
443 if (session
->metadata_stream_fd
>= 0) {
444 DBG("[trace] Closing metadata stream fd %d", session
->metadata_stream_fd
);
445 ret
= close(session
->metadata_stream_fd
);
451 if (session
->metadata
!= NULL
) {
452 trace_kernel_destroy_metadata(session
->metadata
);
455 cds_list_for_each_entry_safe(channel
, ctmp
, &session
->channel_list
.head
, list
) {
456 trace_kernel_destroy_channel(channel
);
459 /* Wipe consumer output object */
460 consumer_destroy_output(session
->consumer
);
461 consumer_destroy_output(session
->tmp_consumer
);