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.
27 #include <common/common.h>
28 #include <common/kernel-ctl/kernel-ctl.h>
29 #include <common/sessiond-comm/sessiond-comm.h>
33 #include "kern-modules.h"
36 * Add context on a kernel channel.
38 int kernel_add_channel_context(struct ltt_kernel_channel
*chan
,
39 struct lttng_kernel_context
*ctx
)
46 DBG("Adding context to channel %s", chan
->channel
->name
);
47 ret
= kernctl_add_context(chan
->fd
, ctx
);
49 if (errno
!= EEXIST
) {
50 PERROR("add context ioctl");
52 /* If EEXIST, we just ignore the error */
58 chan
->ctx
= zmalloc(sizeof(struct lttng_kernel_context
));
59 if (chan
->ctx
== NULL
) {
60 PERROR("zmalloc event context");
64 memcpy(chan
->ctx
, ctx
, sizeof(struct lttng_kernel_context
));
73 * Create a new kernel session, register it to the kernel tracer and add it to
74 * the session daemon session.
76 int kernel_create_session(struct ltt_session
*session
, int tracer_fd
)
79 struct ltt_kernel_session
*lks
;
83 /* Allocate data structure */
84 lks
= trace_kernel_create_session(session
->path
);
90 /* Kernel tracer session creation */
91 ret
= kernctl_create_session(tracer_fd
);
93 PERROR("ioctl kernel create session");
98 /* Prevent fd duplication after execlp() */
99 ret
= fcntl(lks
->fd
, F_SETFD
, FD_CLOEXEC
);
101 PERROR("fcntl session fd");
104 lks
->id
= session
->id
;
105 lks
->consumer_fds_sent
= 0;
106 session
->kernel_session
= lks
;
108 DBG("Kernel session created (fd: %d)", lks
->fd
);
117 * Create a kernel channel, register it to the kernel tracer and add it to the
120 int kernel_create_channel(struct ltt_kernel_session
*session
,
121 struct lttng_channel
*chan
)
124 struct ltt_kernel_channel
*lkc
;
129 /* Allocate kernel channel */
130 lkc
= trace_kernel_create_channel(chan
);
135 DBG3("Kernel create channel %s with attr: %d, %" PRIu64
", %" PRIu64
", %u, %u, %d",
136 chan
->name
, lkc
->channel
->attr
.overwrite
,
137 lkc
->channel
->attr
.subbuf_size
, lkc
->channel
->attr
.num_subbuf
,
138 lkc
->channel
->attr
.switch_timer_interval
, lkc
->channel
->attr
.read_timer_interval
,
139 lkc
->channel
->attr
.output
);
141 /* Kernel tracer channel creation */
142 ret
= kernctl_create_channel(session
->fd
, &lkc
->channel
->attr
);
144 PERROR("ioctl kernel create channel");
148 /* Setup the channel fd */
150 /* Prevent fd duplication after execlp() */
151 ret
= fcntl(lkc
->fd
, F_SETFD
, FD_CLOEXEC
);
153 PERROR("fcntl session fd");
156 /* Add channel to session */
157 cds_list_add(&lkc
->list
, &session
->channel_list
.head
);
158 session
->channel_count
++;
159 lkc
->session
= session
;
161 DBG("Kernel channel %s created (fd: %d)", lkc
->channel
->name
, lkc
->fd
);
170 * Create a kernel event, enable it to the kernel tracer and add it to the
171 * channel event list of the kernel session.
173 int kernel_create_event(struct lttng_event
*ev
,
174 struct ltt_kernel_channel
*channel
)
177 struct ltt_kernel_event
*event
;
182 event
= trace_kernel_create_event(ev
);
188 ret
= kernctl_create_event(channel
->fd
, event
->event
);
194 WARN("Event type not implemented");
197 PERROR("create event ioctl");
204 * LTTNG_KERNEL_SYSCALL event creation will return 0 on success.
206 if (ret
== 0 && event
->event
->instrumentation
== LTTNG_KERNEL_SYSCALL
) {
207 DBG2("Kernel event syscall creation success");
209 * We use fd == -1 to ensure that we never trigger a close of fd
217 /* Prevent fd duplication after execlp() */
218 ret
= fcntl(event
->fd
, F_SETFD
, FD_CLOEXEC
);
220 PERROR("fcntl session fd");
224 /* Add event to event list */
225 cds_list_add(&event
->list
, &channel
->events_list
.head
);
226 channel
->event_count
++;
228 DBG("Event %s created (fd: %d)", ev
->name
, event
->fd
);
239 * Disable a kernel channel.
241 int kernel_disable_channel(struct ltt_kernel_channel
*chan
)
247 ret
= kernctl_disable(chan
->fd
);
249 PERROR("disable chan ioctl");
255 DBG("Kernel channel %s disabled (fd: %d)", chan
->channel
->name
, chan
->fd
);
264 * Enable a kernel channel.
266 int kernel_enable_channel(struct ltt_kernel_channel
*chan
)
272 ret
= kernctl_enable(chan
->fd
);
273 if (ret
< 0 && errno
!= EEXIST
) {
274 PERROR("Enable kernel chan");
279 DBG("Kernel channel %s enabled (fd: %d)", chan
->channel
->name
, chan
->fd
);
288 * Enable a kernel event.
290 int kernel_enable_event(struct ltt_kernel_event
*event
)
296 ret
= kernctl_enable(event
->fd
);
300 ret
= LTTNG_ERR_KERN_EVENT_EXIST
;
303 PERROR("enable kernel event");
310 DBG("Kernel event %s enabled (fd: %d)", event
->event
->name
, event
->fd
);
319 * Disable a kernel event.
321 int kernel_disable_event(struct ltt_kernel_event
*event
)
327 ret
= kernctl_disable(event
->fd
);
331 ret
= LTTNG_ERR_KERN_EVENT_EXIST
;
334 PERROR("disable kernel event");
341 DBG("Kernel event %s disabled (fd: %d)", event
->event
->name
, event
->fd
);
350 * Create kernel metadata, open from the kernel tracer and add it to the
353 int kernel_open_metadata(struct ltt_kernel_session
*session
)
356 struct ltt_kernel_metadata
*lkm
;
360 /* Allocate kernel metadata */
361 lkm
= trace_kernel_create_metadata();
366 /* Kernel tracer metadata creation */
367 ret
= kernctl_open_metadata(session
->fd
, &lkm
->conf
->attr
);
373 /* Prevent fd duplication after execlp() */
374 ret
= fcntl(lkm
->fd
, F_SETFD
, FD_CLOEXEC
);
376 PERROR("fcntl session fd");
379 session
->metadata
= lkm
;
381 DBG("Kernel metadata opened (fd: %d)", lkm
->fd
);
390 * Start tracing session.
392 int kernel_start_session(struct ltt_kernel_session
*session
)
398 ret
= kernctl_start_session(session
->fd
);
400 PERROR("ioctl start session");
404 DBG("Kernel session started");
413 * Make a kernel wait to make sure in-flight probe have completed.
415 void kernel_wait_quiescent(int fd
)
419 DBG("Kernel quiescent wait on %d", fd
);
421 ret
= kernctl_wait_quiescent(fd
);
423 PERROR("wait quiescent ioctl");
424 ERR("Kernel quiescent wait failed");
431 int kernel_calibrate(int fd
, struct lttng_kernel_calibrate
*calibrate
)
437 ret
= kernctl_calibrate(fd
, calibrate
);
439 PERROR("calibrate ioctl");
448 * Force flush buffer of metadata.
450 int kernel_metadata_flush_buffer(int fd
)
454 ret
= kernctl_buffer_flush(fd
);
456 ERR("Fail to flush metadata buffers %d (ret: %d)", fd
, ret
);
463 * Force flush buffer for channel.
465 int kernel_flush_buffer(struct ltt_kernel_channel
*channel
)
468 struct ltt_kernel_stream
*stream
;
472 DBG("Flush buffer for channel %s", channel
->channel
->name
);
474 cds_list_for_each_entry(stream
, &channel
->stream_list
.head
, list
) {
475 DBG("Flushing channel stream %d", stream
->fd
);
476 ret
= kernctl_buffer_flush(stream
->fd
);
479 ERR("Fail to flush buffer for stream %d (ret: %d)",
488 * Stop tracing session.
490 int kernel_stop_session(struct ltt_kernel_session
*session
)
496 ret
= kernctl_stop_session(session
->fd
);
501 DBG("Kernel session stopped");
510 * Open stream of channel, register it to the kernel tracer and add it
511 * to the stream list of the channel.
513 * Return the number of created stream. Else, a negative value.
515 int kernel_open_channel_stream(struct ltt_kernel_channel
*channel
)
518 struct ltt_kernel_stream
*lks
;
522 while ((ret
= kernctl_create_stream(channel
->fd
)) >= 0) {
523 lks
= trace_kernel_create_stream(channel
->channel
->name
, count
);
533 /* Prevent fd duplication after execlp() */
534 ret
= fcntl(lks
->fd
, F_SETFD
, FD_CLOEXEC
);
536 PERROR("fcntl session fd");
539 /* Add stream to channe stream list */
540 cds_list_add(&lks
->list
, &channel
->stream_list
.head
);
541 channel
->stream_count
++;
543 /* Increment counter which represent CPU number. */
546 DBG("Kernel stream %s created (fd: %d, state: %d)", lks
->name
, lks
->fd
,
550 return channel
->stream_count
;
557 * Open the metadata stream and set it to the kernel session.
559 int kernel_open_metadata_stream(struct ltt_kernel_session
*session
)
565 ret
= kernctl_create_stream(session
->metadata
->fd
);
567 PERROR("kernel create metadata stream");
571 DBG("Kernel metadata stream created (fd: %d)", ret
);
572 session
->metadata_stream_fd
= ret
;
573 /* Prevent fd duplication after execlp() */
574 ret
= fcntl(session
->metadata_stream_fd
, F_SETFD
, FD_CLOEXEC
);
576 PERROR("fcntl session fd");
586 * Get the event list from the kernel tracer and return the number of elements.
588 ssize_t
kernel_list_events(int tracer_fd
, struct lttng_event
**events
)
592 size_t nbmem
, count
= 0;
594 struct lttng_event
*elist
;
598 fd
= kernctl_tracepoint_list(tracer_fd
);
600 PERROR("kernel tracepoint list");
604 fp
= fdopen(fd
, "r");
606 PERROR("kernel tracepoint list fdopen");
611 * Init memory size counter
612 * See kernel-ctl.h for explanation of this value
614 nbmem
= KERNEL_EVENT_INIT_LIST_SIZE
;
615 elist
= zmalloc(sizeof(struct lttng_event
) * nbmem
);
617 PERROR("alloc list events");
622 while (fscanf(fp
, "event { name = %m[^;]; };%n\n", &event
, &pos
) == 1) {
623 if (count
>= nbmem
) {
624 struct lttng_event
*new_elist
;
626 DBG("Reallocating event list from %zu to %zu bytes", nbmem
,
628 /* Double the size */
630 new_elist
= realloc(elist
, nbmem
* sizeof(struct lttng_event
));
631 if (new_elist
== NULL
) {
632 PERROR("realloc list events");
640 strncpy(elist
[count
].name
, event
, LTTNG_SYMBOL_NAME_LEN
);
641 elist
[count
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
642 elist
[count
].enabled
= -1;
648 DBG("Kernel list events done (%zu events)", count
);
650 ret
= fclose(fp
); /* closes both fp and fd */
666 * Get kernel version and validate it.
668 int kernel_validate_version(int tracer_fd
)
671 struct lttng_kernel_tracer_version version
;
673 ret
= kernctl_tracer_version(tracer_fd
, &version
);
675 ERR("Failed at getting the lttng-modules version");
679 /* Validate version */
680 if (version
.major
!= KERN_MODULES_PRE_MAJOR
681 && version
.major
!= KERN_MODULES_MAJOR
) {
685 DBG2("Kernel tracer version validated (major version %d)", version
.major
);
689 ERR("Kernel major version %d is not compatible (supporting <= %d)",
690 version
.major
, KERN_MODULES_MAJOR
)
698 * Kernel work-arounds called at the start of sessiond main().
700 int init_kernel_workarounds(void)
706 * boot_id needs to be read once before being used concurrently
707 * to deal with a Linux kernel race. A fix is proposed for
708 * upstream, but the work-around is needed for older kernels.
710 fp
= fopen("/proc/sys/kernel/random/boot_id", "r");
717 ret
= fread(buf
, 1, sizeof(buf
), fp
);
719 /* Ignore error, we don't really care */
731 * Complete teardown of a kernel session.
733 void kernel_destroy_session(struct ltt_kernel_session
*ksess
)
736 DBG3("No kernel session when tearing down session");
740 DBG("Tearing down kernel session");
742 /* Close any relayd session */
743 consumer_output_send_destroy_relayd(ksess
->consumer
);
745 trace_kernel_destroy_session(ksess
);
749 * Destroy a kernel channel object. It does not do anything on the tracer side.
751 void kernel_destroy_channel(struct ltt_kernel_channel
*kchan
)
753 struct ltt_kernel_session
*ksess
= NULL
;
756 assert(kchan
->channel
);
758 DBG3("Kernel destroy channel %s", kchan
->channel
->name
);
760 /* Update channel count of associated session. */
761 if (kchan
->session
) {
762 /* Keep pointer reference so we can update it after the destroy. */
763 ksess
= kchan
->session
;
766 trace_kernel_destroy_channel(kchan
);
769 * At this point the kernel channel is not visible anymore. This is safe
770 * since in order to work on a visible kernel session, the tracing session
771 * lock (ltt_session.lock) MUST be acquired.
774 ksess
->channel_count
--;