Introduce hash table for lttng_create_event_if_missing()
[lttng-ust.git] / include / lttng / ust-ctl.h
CommitLineData
f3105c67
MD
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
e92f3e28
MD
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License only.
f3105c67
MD
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
e92f3e28
MD
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
f3105c67
MD
17 */
18
19#ifndef _LTTNG_UST_CTL_H
20#define _LTTNG_UST_CTL_H
21
4318ae1b 22#include <lttng/ust-abi.h>
f3105c67 23
7bc53e94
MD
24/*
25 * Error values: all the following functions return:
26 * >= 0: Sucess (LTTNG_UST_OK)
27 * < 0: error code.
28 */
1c5e467e 29int ustctl_register_done(int sock);
f3105c67
MD
30int ustctl_create_session(int sock);
31int ustctl_open_metadata(int sock, int session_handle,
32 struct lttng_ust_channel_attr *chops,
61f02aea 33 struct lttng_ust_object_data **metadata_data);
f3105c67
MD
34int ustctl_create_channel(int sock, int session_handle,
35 struct lttng_ust_channel_attr *chops,
61f02aea
MD
36 struct lttng_ust_object_data **channel_data);
37int ustctl_create_stream(int sock, struct lttng_ust_object_data *channel_data,
38 struct lttng_ust_object_data **stream_data);
f3105c67 39int ustctl_create_event(int sock, struct lttng_ust_event *ev,
61f02aea
MD
40 struct lttng_ust_object_data *channel_data,
41 struct lttng_ust_object_data **event_data);
f3105c67 42int ustctl_add_context(int sock, struct lttng_ust_context *ctx,
61f02aea
MD
43 struct lttng_ust_object_data *obj_data,
44 struct lttng_ust_object_data **context_data);
cd54f6d9
MD
45int ustctl_set_filter(int sock, struct lttng_ust_filter_bytecode *bytecode,
46 struct lttng_ust_object_data *obj_data);
f3105c67 47
61f02aea
MD
48int ustctl_enable(int sock, struct lttng_ust_object_data *object);
49int ustctl_disable(int sock, struct lttng_ust_object_data *object);
4a6ca058
MD
50int ustctl_start_session(int sock, int handle);
51int ustctl_stop_session(int sock, int handle);
f3105c67 52
b115631f
MD
53/*
54 * ustctl_tracepoint_list returns a tracepoint list handle, or negative
55 * error value.
56 */
57int ustctl_tracepoint_list(int sock);
58/*
59 * ustctl_tracepoint_list_get is used to iterate on the tp list
7bc53e94
MD
60 * handle. End is iteration is reached when -LTTNG_UST_ERR_NOENT is
61 * returned.
b115631f
MD
62 */
63int ustctl_tracepoint_list_get(int sock, int tp_list_handle,
cbef6901 64 struct lttng_ust_tracepoint_iter *iter);
b115631f 65
40003310
MD
66/*
67 * ustctl_tracepoint_field_list returns a tracepoint field list handle,
68 * or negative error value.
69 */
70int ustctl_tracepoint_field_list(int sock);
71
72/*
73 * ustctl_tracepoint_field_list_get is used to iterate on the tp field
7bc53e94
MD
74 * list handle. End is iteration is reached when -LTTNG_UST_ERR_NOENT is
75 * returned.
40003310
MD
76 */
77int ustctl_tracepoint_field_list_get(int sock, int tp_field_list_handle,
78 struct lttng_ust_field_iter *iter);
79
f3105c67
MD
80int ustctl_tracer_version(int sock, struct lttng_ust_tracer_version *v);
81int ustctl_wait_quiescent(int sock);
82
f1fffc57
MD
83int ustctl_sock_flush_buffer(int sock, struct lttng_ust_object_data *object);
84
f3105c67
MD
85int ustctl_calibrate(int sock, struct lttng_ust_calibrate *calibrate);
86
f3105c67 87/*
38fae1d3 88 * Map channel lttng_ust_shm_handle and add streams. Typically performed by the
f3105c67
MD
89 * consumer to map the objects into its memory space.
90 */
38fae1d3
MD
91struct lttng_ust_shm_handle *ustctl_map_channel(struct lttng_ust_object_data *chan_data);
92int ustctl_add_stream(struct lttng_ust_shm_handle *lttng_ust_shm_handle,
61f02aea 93 struct lttng_ust_object_data *stream_data);
5224b5c8 94/*
38fae1d3 95 * Note: the lttng_ust_object_data from which the lttng_ust_shm_handle is derived can only
5224b5c8
MD
96 * be released after unmapping the handle.
97 */
38fae1d3 98void ustctl_unmap_channel(struct lttng_ust_shm_handle *lttng_ust_shm_handle);
f3105c67
MD
99
100/* Buffer operations */
101
38fae1d3 102struct lttng_ust_shm_handle;
4cfec15c 103struct lttng_ust_lib_ring_buffer;
f3105c67 104
6e922b24 105/* Open/close stream buffers for read */
4cfec15c 106struct lttng_ust_lib_ring_buffer *ustctl_open_stream_read(struct lttng_ust_shm_handle *handle,
6e922b24 107 int cpu);
38fae1d3 108void ustctl_close_stream_read(struct lttng_ust_shm_handle *handle,
4cfec15c 109 struct lttng_ust_lib_ring_buffer *buf);
6e922b24 110
f3105c67 111/* For mmap mode, readable without "get" operation */
38fae1d3 112int ustctl_get_mmap_len(struct lttng_ust_shm_handle *handle,
4cfec15c 113 struct lttng_ust_lib_ring_buffer *buf,
f3105c67 114 unsigned long *len);
38fae1d3 115int ustctl_get_max_subbuf_size(struct lttng_ust_shm_handle *handle,
4cfec15c 116 struct lttng_ust_lib_ring_buffer *buf,
f3105c67
MD
117 unsigned long *len);
118
119/*
120 * For mmap mode, operate on the current packet (between get/put or
121 * get_next/put_next).
122 */
38fae1d3 123void *ustctl_get_mmap_base(struct lttng_ust_shm_handle *handle,
4cfec15c 124 struct lttng_ust_lib_ring_buffer *buf);
38fae1d3 125int ustctl_get_mmap_read_offset(struct lttng_ust_shm_handle *handle,
4cfec15c 126 struct lttng_ust_lib_ring_buffer *buf, unsigned long *off);
38fae1d3 127int ustctl_get_subbuf_size(struct lttng_ust_shm_handle *handle,
4cfec15c 128 struct lttng_ust_lib_ring_buffer *buf, unsigned long *len);
38fae1d3 129int ustctl_get_padded_subbuf_size(struct lttng_ust_shm_handle *handle,
4cfec15c 130 struct lttng_ust_lib_ring_buffer *buf, unsigned long *len);
38fae1d3 131int ustctl_get_next_subbuf(struct lttng_ust_shm_handle *handle,
4cfec15c 132 struct lttng_ust_lib_ring_buffer *buf);
38fae1d3 133int ustctl_put_next_subbuf(struct lttng_ust_shm_handle *handle,
4cfec15c 134 struct lttng_ust_lib_ring_buffer *buf);
f3105c67
MD
135
136/* snapshot */
137
38fae1d3 138int ustctl_snapshot(struct lttng_ust_shm_handle *handle,
4cfec15c 139 struct lttng_ust_lib_ring_buffer *buf);
38fae1d3 140int ustctl_snapshot_get_consumed(struct lttng_ust_shm_handle *handle,
4cfec15c 141 struct lttng_ust_lib_ring_buffer *buf, unsigned long *pos);
38fae1d3 142int ustctl_snapshot_get_produced(struct lttng_ust_shm_handle *handle,
4cfec15c 143 struct lttng_ust_lib_ring_buffer *buf, unsigned long *pos);
38fae1d3 144int ustctl_get_subbuf(struct lttng_ust_shm_handle *handle,
4cfec15c 145 struct lttng_ust_lib_ring_buffer *buf, unsigned long *pos);
38fae1d3 146int ustctl_put_subbuf(struct lttng_ust_shm_handle *handle,
4cfec15c 147 struct lttng_ust_lib_ring_buffer *buf);
f3105c67 148
02a15cfb 149void ustctl_flush_buffer(struct lttng_ust_shm_handle *handle,
b52190f2
MD
150 struct lttng_ust_lib_ring_buffer *buf,
151 int producer_active);
5f9d3dbc 152
2be0e72c 153/* Release object created by members of this API. */
d26228ae 154int ustctl_release_object(int sock, struct lttng_ust_object_data *data);
2be0e72c
MD
155/* Release handle returned by create session. */
156int ustctl_release_handle(int sock, int handle);
f3105c67
MD
157
158#endif /* _LTTNG_UST_CTL_H */
This page took 0.033314 seconds and 4 git commands to generate.