Add lttng-ust-ctl.h header
[lttng-ust.git] / include / ust / 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 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; only version 2
8 * of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20#ifndef _LTTNG_UST_CTL_H
21#define _LTTNG_UST_CTL_H
22
23#include <ust/lttng-ust-abi.h>
24
25/*
26 * Tracer channel attributes.
27 */
28struct lttng_ust_channel_attr {
29 int overwrite; /* 1: overwrite, 0: discard */
30 uint64_t subbuf_size; /* bytes */
31 uint64_t num_subbuf; /* power of 2 */
32 unsigned int switch_timer_interval; /* usec */
33 unsigned int read_timer_interval; /* usec */
34 enum lttng_ust_output output; /* splice, mmap */
35};
36
37struct object_data {
38 int handle;
39 int shm_fd;
40 int wait_fd;
41 uint64_t memory_map_size;
42};
43
44int ustctl_create_session(int sock);
45int ustctl_open_metadata(int sock, int session_handle,
46 struct lttng_ust_channel_attr *chops,
47 struct object_data **metadata_data);
48int ustctl_create_channel(int sock, int session_handle,
49 struct lttng_ust_channel_attr *chops,
50 struct object_data **channel_data);
51int ustctl_create_stream(int sock, struct object_data *channel_data,
52 struct object_data **stream_data);
53int ustctl_create_event(int sock, struct lttng_ust_event *ev,
54 struct object_data *channel_data,
55 struct object_data **event_data);
56int ustctl_add_context(int sock, struct lttng_ust_context *ctx,
57 struct object_data *channel_data,
58 struct object_data **context_data);
59
60int ustctl_enable(int sock, struct object_data *object);
61int ustctl_disable(int sock, struct object_data *object);
62int ustctl_start_session(int sock, struct object_data *object);
63int ustctl_stop_session(int sock, struct object_data *object);
64
65int ustctl_tracepoint_list(int sock); /* not implemented yet */
66int ustctl_tracer_version(int sock, struct lttng_ust_tracer_version *v);
67int ustctl_wait_quiescent(int sock);
68
69/* not implemented yet */
70struct lttng_ust_calibrate;
71int ustctl_calibrate(int sock, struct lttng_ust_calibrate *calibrate);
72
73/* TODO: object_data send/recv between sessiond and consumer */
74/* TODO: release shm_handle */
75
76/*
77 * Map channel shm_handle and add streams. Typically performed by the
78 * consumer to map the objects into its memory space.
79 */
80struct shm_handle *ustctl_map_channel(struct object_data *chan_data);
81int ustctl_add_stream(struct shm_handle *shm_handle,
82 struct object_data *stream_data);
83
84/* Buffer operations */
85
86struct shm_handle;
87struct lib_ring_buffer;
88
89/* For mmap mode, readable without "get" operation */
90int ustctl_get_mmap_len(struct shm_handle *handle,
91 struct lib_ring_buffer *buf,
92 unsigned long *len);
93int ustctl_get_max_subbuf_size(struct shm_handle *handle,
94 struct lib_ring_buffer *buf,
95 unsigned long *len);
96
97/*
98 * For mmap mode, operate on the current packet (between get/put or
99 * get_next/put_next).
100 */
101int ustctl_get_mmap_read_offset(struct shm_handle *handle,
102 struct lib_ring_buffer *buf, unsigned long *off);
103int ustctl_get_subbuf_size(struct shm_handle *handle,
104 struct lib_ring_buffer *buf, unsigned long *len);
105int ustctl_get_padded_subbuf_size(struct shm_handle *handle,
106 struct lib_ring_buffer *buf, unsigned long *len);
107int ustctl_get_next_subbuf(struct shm_handle *handle,
108 struct lib_ring_buffer *buf);
109int ustctl_put_next_subbuf(struct shm_handle *handle,
110 struct lib_ring_buffer *buf);
111
112/* snapshot */
113
114int ustctl_snapshot(struct shm_handle *handle,
115 struct lib_ring_buffer *buf);
116int ustctl_snapshot_get_consumed(struct shm_handle *handle,
117 struct lib_ring_buffer *buf, unsigned long *pos);
118int ustctl_snapshot_get_produced(struct shm_handle *handle,
119 struct lib_ring_buffer *buf, unsigned long *pos);
120int ustctl_get_subbuf(struct shm_handle *handle,
121 struct lib_ring_buffer *buf, unsigned long *pos);
122int ustctl_put_subbuf(struct shm_handle *handle,
123 struct lib_ring_buffer *buf);
124
125/* Release object created by members of this API */
126void release_object(int sock, struct object_data *data);
127
128#endif /* _LTTNG_UST_CTL_H */
This page took 0.028967 seconds and 4 git commands to generate.