X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fkernel-ctl%2Fkernel-ctl.c;h=dd228773bc655eb985e88a6b2fe20e8c87221115;hp=8ade0830d73da3a51636554fa3be6a57253e3df9;hb=000fa86f1276f62aa32cdb18f6556db1bdeee09b;hpb=95ba0f2fffd50c6d52e028cbb72ab1fcd43db876 diff --git a/src/common/kernel-ctl/kernel-ctl.c b/src/common/kernel-ctl/kernel-ctl.c index 8ade0830d..dd228773b 100644 --- a/src/common/kernel-ctl/kernel-ctl.c +++ b/src/common/kernel-ctl/kernel-ctl.c @@ -16,40 +16,259 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#define _LGPL_SOURCE #define __USE_LINUX_IOCTL_DEFS #include +#include +#include +#include #include "kernel-ctl.h" #include "kernel-ioctl.h" +/* + * This flag indicates which version of the kernel ABI to use. The old + * ABI (namespace _old) does not support a 32-bit user-space when the + * kernel is 64-bit. The old ABI is kept here for compatibility but is + * deprecated and will be removed eventually. + */ +static int lttng_kernel_use_old_abi = -1; + +/* + * Execute the new or old ioctl depending on the ABI version. + * If the ABI version is not determined yet (lttng_kernel_use_old_abi = -1), + * this function tests if the new ABI is available and otherwise fallbacks + * on the old one. + * This function takes the fd on which the ioctl must be executed and the old + * and new request codes. + * It returns the return value of the ioctl executed. + */ +static inline int compat_ioctl_no_arg(int fd, unsigned long oldname, + unsigned long newname) +{ + int ret; + + if (lttng_kernel_use_old_abi == -1) { + ret = ioctl(fd, newname); + if (!ret) { + lttng_kernel_use_old_abi = 0; + goto end; + } + lttng_kernel_use_old_abi = 1; + } + if (lttng_kernel_use_old_abi) { + ret = ioctl(fd, oldname); + } else { + ret = ioctl(fd, newname); + } + +end: + return ret; +} + int kernctl_create_session(int fd) { - return ioctl(fd, LTTNG_KERNEL_SESSION); + return compat_ioctl_no_arg(fd, LTTNG_KERNEL_OLD_SESSION, + LTTNG_KERNEL_SESSION); } /* open the metadata global channel */ int kernctl_open_metadata(int fd, struct lttng_channel_attr *chops) { - return ioctl(fd, LTTNG_KERNEL_METADATA, chops); + struct lttng_kernel_old_channel old_channel; + struct lttng_kernel_channel channel; + + if (lttng_kernel_use_old_abi) { + old_channel.overwrite = chops->overwrite; + old_channel.subbuf_size = chops->subbuf_size; + old_channel.num_subbuf = chops->num_subbuf; + old_channel.switch_timer_interval = chops->switch_timer_interval; + old_channel.read_timer_interval = chops->read_timer_interval; + old_channel.output = chops->output; + + memset(old_channel.padding, 0, sizeof(old_channel.padding)); + /* + * The new channel padding is smaller than the old ABI so we use the + * new ABI padding size for the memcpy. + */ + memcpy(old_channel.padding, chops->padding, sizeof(chops->padding)); + + return ioctl(fd, LTTNG_KERNEL_OLD_METADATA, &old_channel); + } + + channel.overwrite = chops->overwrite; + channel.subbuf_size = chops->subbuf_size; + channel.num_subbuf = chops->num_subbuf; + channel.switch_timer_interval = chops->switch_timer_interval; + channel.read_timer_interval = chops->read_timer_interval; + channel.output = chops->output; + memcpy(channel.padding, chops->padding, sizeof(chops->padding)); + + return ioctl(fd, LTTNG_KERNEL_METADATA, &channel); } int kernctl_create_channel(int fd, struct lttng_channel_attr *chops) { - return ioctl(fd, LTTNG_KERNEL_CHANNEL, chops); + struct lttng_kernel_channel channel; + + memset(&channel, 0, sizeof(channel)); + if (lttng_kernel_use_old_abi) { + struct lttng_kernel_old_channel old_channel; + + old_channel.overwrite = chops->overwrite; + old_channel.subbuf_size = chops->subbuf_size; + old_channel.num_subbuf = chops->num_subbuf; + old_channel.switch_timer_interval = chops->switch_timer_interval; + old_channel.read_timer_interval = chops->read_timer_interval; + old_channel.output = chops->output; + + memset(old_channel.padding, 0, sizeof(old_channel.padding)); + /* + * The new channel padding is smaller than the old ABI so we use the + * new ABI padding size for the memcpy. + */ + memcpy(old_channel.padding, chops->padding, sizeof(chops->padding)); + + return ioctl(fd, LTTNG_KERNEL_OLD_CHANNEL, &old_channel); + } + + channel.overwrite = chops->overwrite; + channel.subbuf_size = chops->subbuf_size; + channel.num_subbuf = chops->num_subbuf; + channel.switch_timer_interval = chops->switch_timer_interval; + channel.read_timer_interval = chops->read_timer_interval; + channel.output = chops->output; + memcpy(channel.padding, chops->padding, sizeof(chops->padding)); + + return ioctl(fd, LTTNG_KERNEL_CHANNEL, &channel); +} + +int kernctl_syscall_mask(int fd, char **syscall_mask, uint32_t *nr_bits) +{ + struct lttng_kernel_syscall_mask kmask_len, *kmask = NULL; + size_t array_alloc_len; + char *new_mask; + int ret = 0; + + if (!syscall_mask) { + ret = -1; + goto end; + } + + if (!nr_bits) { + ret = -1; + goto end; + } + + kmask_len.len = 0; + ret = ioctl(fd, LTTNG_KERNEL_SYSCALL_MASK, &kmask_len); + if (ret) { + goto end; + } + + array_alloc_len = ALIGN(kmask_len.len, 8) >> 3; + + kmask = zmalloc(sizeof(*kmask) + array_alloc_len); + if (!kmask) { + ret = -1; + goto end; + } + + kmask->len = kmask_len.len; + ret = ioctl(fd, LTTNG_KERNEL_SYSCALL_MASK, kmask); + if (ret) { + goto end; + } + + new_mask = realloc(*syscall_mask, array_alloc_len); + if (!new_mask) { + ret = -1; + goto end; + } + memcpy(new_mask, kmask->mask, array_alloc_len); + *syscall_mask = new_mask; + *nr_bits = kmask->len; + +end: + free(kmask); + return ret; +} + +int kernctl_track_pid(int fd, int pid) +{ + return ioctl(fd, LTTNG_KERNEL_SESSION_TRACK_PID, pid); +} + +int kernctl_untrack_pid(int fd, int pid) +{ + return ioctl(fd, LTTNG_KERNEL_SESSION_UNTRACK_PID, pid); +} + +int kernctl_list_tracker_pids(int fd) +{ + return ioctl(fd, LTTNG_KERNEL_SESSION_LIST_TRACKER_PIDS); } int kernctl_create_stream(int fd) { - return ioctl(fd, LTTNG_KERNEL_STREAM); + return compat_ioctl_no_arg(fd, LTTNG_KERNEL_OLD_STREAM, + LTTNG_KERNEL_STREAM); } int kernctl_create_event(int fd, struct lttng_kernel_event *ev) { + if (lttng_kernel_use_old_abi) { + struct lttng_kernel_old_event old_event; + + memcpy(old_event.name, ev->name, sizeof(old_event.name)); + old_event.instrumentation = ev->instrumentation; + switch (ev->instrumentation) { + case LTTNG_KERNEL_KPROBE: + old_event.u.kprobe.addr = ev->u.kprobe.addr; + old_event.u.kprobe.offset = ev->u.kprobe.offset; + memcpy(old_event.u.kprobe.symbol_name, + ev->u.kprobe.symbol_name, + sizeof(old_event.u.kprobe.symbol_name)); + break; + case LTTNG_KERNEL_KRETPROBE: + old_event.u.kretprobe.addr = ev->u.kretprobe.addr; + old_event.u.kretprobe.offset = ev->u.kretprobe.offset; + memcpy(old_event.u.kretprobe.symbol_name, + ev->u.kretprobe.symbol_name, + sizeof(old_event.u.kretprobe.symbol_name)); + break; + case LTTNG_KERNEL_FUNCTION: + memcpy(old_event.u.ftrace.symbol_name, + ev->u.ftrace.symbol_name, + sizeof(old_event.u.ftrace.symbol_name)); + break; + default: + break; + } + + return ioctl(fd, LTTNG_KERNEL_OLD_EVENT, &old_event); + } return ioctl(fd, LTTNG_KERNEL_EVENT, ev); } int kernctl_add_context(int fd, struct lttng_kernel_context *ctx) { + if (lttng_kernel_use_old_abi) { + struct lttng_kernel_old_context old_ctx; + + old_ctx.ctx = ctx->ctx; + /* only type that uses the union */ + if (ctx->ctx == LTTNG_KERNEL_CONTEXT_PERF_CPU_COUNTER) { + old_ctx.u.perf_counter.type = + ctx->u.perf_counter.type; + old_ctx.u.perf_counter.config = + ctx->u.perf_counter.config; + memcpy(old_ctx.u.perf_counter.name, + ctx->u.perf_counter.name, + sizeof(old_ctx.u.perf_counter.name)); + } + return ioctl(fd, LTTNG_KERNEL_OLD_CONTEXT, &old_ctx); + } return ioctl(fd, LTTNG_KERNEL_CONTEXT, ctx); } @@ -57,44 +276,128 @@ int kernctl_add_context(int fd, struct lttng_kernel_context *ctx) /* Enable event, channel and session ioctl */ int kernctl_enable(int fd) { - return ioctl(fd, LTTNG_KERNEL_ENABLE); + return compat_ioctl_no_arg(fd, LTTNG_KERNEL_OLD_ENABLE, + LTTNG_KERNEL_ENABLE); } /* Disable event, channel and session ioctl */ int kernctl_disable(int fd) { - return ioctl(fd, LTTNG_KERNEL_DISABLE); + return compat_ioctl_no_arg(fd, LTTNG_KERNEL_OLD_DISABLE, + LTTNG_KERNEL_DISABLE); } int kernctl_start_session(int fd) { - return ioctl(fd, LTTNG_KERNEL_SESSION_START); + return compat_ioctl_no_arg(fd, LTTNG_KERNEL_OLD_SESSION_START, + LTTNG_KERNEL_SESSION_START); } int kernctl_stop_session(int fd) { - return ioctl(fd, LTTNG_KERNEL_SESSION_STOP); + return compat_ioctl_no_arg(fd, LTTNG_KERNEL_OLD_SESSION_STOP, + LTTNG_KERNEL_SESSION_STOP); } +int kernctl_filter(int fd, struct lttng_filter_bytecode *filter) +{ + struct lttng_kernel_filter_bytecode *kb; + uint32_t len; + int ret; + + /* Translate bytecode to kernel bytecode */ + kb = zmalloc(sizeof(*kb) + filter->len); + if (!kb) + return -ENOMEM; + kb->len = len = filter->len; + kb->reloc_offset = filter->reloc_table_offset; + kb->seqnum = filter->seqnum; + memcpy(kb->data, filter->data, len); + ret = ioctl(fd, LTTNG_KERNEL_FILTER, kb); + free(kb); + return ret; +} int kernctl_tracepoint_list(int fd) { - return ioctl(fd, LTTNG_KERNEL_TRACEPOINT_LIST); + return compat_ioctl_no_arg(fd, LTTNG_KERNEL_OLD_TRACEPOINT_LIST, + LTTNG_KERNEL_TRACEPOINT_LIST); +} + +int kernctl_syscall_list(int fd) +{ + return ioctl(fd, LTTNG_KERNEL_SYSCALL_LIST); } int kernctl_tracer_version(int fd, struct lttng_kernel_tracer_version *v) { - return ioctl(fd, LTTNG_KERNEL_TRACER_VERSION, v); + int ret; + + if (lttng_kernel_use_old_abi == -1) { + ret = ioctl(fd, LTTNG_KERNEL_TRACER_VERSION, v); + if (!ret) { + lttng_kernel_use_old_abi = 0; + goto end; + } + lttng_kernel_use_old_abi = 1; + } + if (lttng_kernel_use_old_abi) { + struct lttng_kernel_old_tracer_version old_v; + + ret = ioctl(fd, LTTNG_KERNEL_OLD_TRACER_VERSION, &old_v); + if (ret) { + goto end; + } + v->major = old_v.major; + v->minor = old_v.minor; + v->patchlevel = old_v.patchlevel; + } else { + ret = ioctl(fd, LTTNG_KERNEL_TRACER_VERSION, v); + } + +end: + return ret; +} + +int kernctl_tracer_abi_version(int fd, + struct lttng_kernel_tracer_abi_version *v) +{ + return ioctl(fd, LTTNG_KERNEL_TRACER_ABI_VERSION, v); } int kernctl_wait_quiescent(int fd) { - return ioctl(fd, LTTNG_KERNEL_WAIT_QUIESCENT); + return compat_ioctl_no_arg(fd, LTTNG_KERNEL_OLD_WAIT_QUIESCENT, + LTTNG_KERNEL_WAIT_QUIESCENT); } int kernctl_calibrate(int fd, struct lttng_kernel_calibrate *calibrate) { - return ioctl(fd, LTTNG_KERNEL_CALIBRATE, calibrate); + int ret; + + if (lttng_kernel_use_old_abi == -1) { + ret = ioctl(fd, LTTNG_KERNEL_CALIBRATE, calibrate); + if (!ret) { + lttng_kernel_use_old_abi = 0; + goto end; + } + lttng_kernel_use_old_abi = 1; + } + if (lttng_kernel_use_old_abi) { + struct lttng_kernel_old_calibrate old_calibrate; + + old_calibrate.type = calibrate->type; + ret = ioctl(fd, LTTNG_KERNEL_OLD_CALIBRATE, &old_calibrate); + if (ret) { + goto end; + } + calibrate->type = old_calibrate.type; + } else { + ret = ioctl(fd, LTTNG_KERNEL_CALIBRATE, calibrate); + } + +end: + return ret; } @@ -187,3 +490,57 @@ int kernctl_put_subbuf(int fd) { return ioctl(fd, RING_BUFFER_PUT_SUBBUF); } + +/* Returns the timestamp begin of the current sub-buffer. */ +int kernctl_get_timestamp_begin(int fd, uint64_t *timestamp_begin) +{ + return ioctl(fd, LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN, timestamp_begin); +} + +/* Returns the timestamp end of the current sub-buffer. */ +int kernctl_get_timestamp_end(int fd, uint64_t *timestamp_end) +{ + return ioctl(fd, LTTNG_RING_BUFFER_GET_TIMESTAMP_END, timestamp_end); +} + +/* Returns the number of discarded events in the current sub-buffer. */ +int kernctl_get_events_discarded(int fd, uint64_t *events_discarded) +{ + return ioctl(fd, LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED, events_discarded); +} + +/* Returns the content size in the current sub-buffer. */ +int kernctl_get_content_size(int fd, uint64_t *content_size) +{ + return ioctl(fd, LTTNG_RING_BUFFER_GET_CONTENT_SIZE, content_size); +} + +/* Returns the packet size in the current sub-buffer. */ +int kernctl_get_packet_size(int fd, uint64_t *packet_size) +{ + return ioctl(fd, LTTNG_RING_BUFFER_GET_PACKET_SIZE, packet_size); +} + +/* Returns the stream id of the current sub-buffer. */ +int kernctl_get_stream_id(int fd, uint64_t *stream_id) +{ + return ioctl(fd, LTTNG_RING_BUFFER_GET_STREAM_ID, stream_id); +} + +/* Returns the current timestamp. */ +int kernctl_get_current_timestamp(int fd, uint64_t *ts) +{ + return ioctl(fd, LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP, ts); +} + +/* Returns the packet sequence number of the current sub-buffer. */ +int kernctl_get_sequence_number(int fd, uint64_t *seq) +{ + return ioctl(fd, LTTNG_RING_BUFFER_GET_SEQ_NUM, seq); +} + +/* Returns the stream instance id. */ +int kernctl_get_instance_id(int fd, uint64_t *id) +{ + return ioctl(fd, LTTNG_RING_BUFFER_INSTANCE_ID, id); +}