X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fkernel-ctl%2Fkernel-ctl.h;h=b3d798ffd4c40cea1196cd942096e1ebfea576e1;hp=2bfb2b0484cc0b07a20ecab2f6579959821d5010;hb=1831ae68b70dece8e9b847081526495adbbf05e5;hpb=10a8a2237343699e3923d87e24dbf2d7fe225377 diff --git a/src/common/kernel-ctl/kernel-ctl.h b/src/common/kernel-ctl/kernel-ctl.h index 2bfb2b048..b3d798ffd 100644 --- a/src/common/kernel-ctl/kernel-ctl.h +++ b/src/common/kernel-ctl/kernel-ctl.h @@ -1,20 +1,9 @@ /* - * Copyright (C) 2011 - Julien Desfossez - * Mathieu Desnoyers + * Copyright (C) 2011 Julien Desfossez + * Copyright (C) 2011 Mathieu Desnoyers * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; only version 2 - * of the License. + * SPDX-License-Identifier: GPL-2.0-only * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _LTTNG_KERNEL_CTL_H @@ -22,6 +11,8 @@ #include #include +#include +#include /* for struct lttng_filter_bytecode */ int kernctl_create_session(int fd); int kernctl_open_metadata(int fd, struct lttng_channel_attr *chops); @@ -35,11 +26,49 @@ int kernctl_disable(int fd); int kernctl_start_session(int fd); int kernctl_stop_session(int fd); +int kernctl_create_trigger_group(int fd); + +/* Apply on trigger_group FD*/ +int kernctl_create_trigger_group_notification_fd(int fd); +int kernctl_create_trigger(int fd, struct lttng_kernel_trigger *trigger); + +/* Apply on event FD */ +int kernctl_filter(int fd, const struct lttng_filter_bytecode *filter); +int kernctl_add_callsite(int fd, struct lttng_kernel_event_callsite *callsite); + int kernctl_tracepoint_list(int fd); +int kernctl_syscall_list(int fd); int kernctl_tracer_version(int fd, struct lttng_kernel_tracer_version *v); +int kernctl_tracer_abi_version(int fd, struct lttng_kernel_tracer_abi_version *v); int kernctl_wait_quiescent(int fd); -int kernctl_calibrate(int fd, struct lttng_kernel_calibrate *calibrate); +/* + * kernctl_syscall_mask - Get syscall mask associated to a channel FD. + * + * The parameter @syscall_mask should initially be either NULL or point + * to memory allocated with malloc(3) or realloc(3). When the function + * returns, it will point to a memory area of the size required for the + * bitmask (using realloc(3) to resize the memory). + * + * It returns 0 if OK, -1 on error. In all cases (error and OK), + * @syscall_mask should be freed by the caller with free(3). + */ +int kernctl_syscall_mask(int fd, char **syscall_mask, + uint32_t *nr_bits); + +/* Process ID tracking can be applied to session FD */ +int kernctl_track_pid(int fd, int pid); +int kernctl_untrack_pid(int fd, int pid); +int kernctl_list_tracker_pids(int fd); + +int kernctl_track_id(int fd, enum lttng_tracker_type tracker_type, int id); +int kernctl_untrack_id(int fd, enum lttng_tracker_type tracker_type, int id); +int kernctl_list_tracker_ids(int fd, enum lttng_tracker_type tracker_type); + +int kernctl_session_regenerate_metadata(int fd); +int kernctl_session_regenerate_statedump(int fd); +int kernctl_session_set_name(int fd, const char *name); +int kernctl_session_set_creation_time(int fd, time_t time); /* Buffer operations */ @@ -60,11 +89,27 @@ int kernctl_put_next_subbuf(int fd); /* snapshot */ int kernctl_snapshot(int fd); +int kernctl_snapshot_sample_positions(int fd); int kernctl_snapshot_get_consumed(int fd, unsigned long *pos); int kernctl_snapshot_get_produced(int fd, unsigned long *pos); int kernctl_get_subbuf(int fd, unsigned long *pos); int kernctl_put_subbuf(int fd); int kernctl_buffer_flush(int fd); +int kernctl_buffer_flush_empty(int fd); +int kernctl_buffer_clear(int fd); +int kernctl_get_metadata_version(int fd, uint64_t *version); +int kernctl_metadata_cache_dump(int fd); + +/* index */ +int kernctl_get_timestamp_begin(int fd, uint64_t *timestamp_begin); +int kernctl_get_timestamp_end(int fd, uint64_t *timestamp_end); +int kernctl_get_events_discarded(int fd, uint64_t *events_discarded); +int kernctl_get_content_size(int fd, uint64_t *content_size); +int kernctl_get_packet_size(int fd, uint64_t *packet_size); +int kernctl_get_stream_id(int fd, uint64_t *stream_id); +int kernctl_get_current_timestamp(int fd, uint64_t *ts); +int kernctl_get_sequence_number(int fd, uint64_t *seq); +int kernctl_get_instance_id(int fd, uint64_t *seq); #endif /* _LTTNG_KERNEL_CTL_H */