Implement libcounter
[lttng-ust.git] / include / ust-comm.h
CommitLineData
b35d179d
MD
1#ifndef _LTTNG_UST_COMM_H
2#define _LTTNG_UST_COMM_H
67c5b804
MD
3
4/*
5 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
6 * Julien Desfossez <julien.desfossez@polymtl.ca>
7 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 *
15f672f9
MD
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; only
12 * version 2.1 of the License.
13 *
14 * This library is distributed in the hope that it will be useful,
67c5b804 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15f672f9
MD
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
67c5b804
MD
22 */
23
24/*
25 * This header is meant for liblttng and libust internal use ONLY.
26 * These declarations should NOT be considered stable API.
27 */
28
fb31eb73 29#include <stdint.h>
67c5b804 30#include <limits.h>
57773204 31#include <unistd.h>
4318ae1b 32#include <lttng/ust-abi.h>
7bc53e94 33#include <lttng/ust-error.h>
b3f60bbf 34#include <lttng/ust-compiler.h>
c785c634 35#include <lttng/ust-ctl.h>
67c5b804 36
db56acaf
MD
37#ifndef LTTNG_PACKED
38#error "LTTNG_PACKED should be defined"
39#endif
40
11ff9c7d 41/*
cf12a773
MD
42 * Default timeout the application waits for the sessiond to send its
43 * "register done" command. Can be overridden with the environment
69400ac4 44 * variable "LTTNG_UST_REGISTER_TIMEOUT". Note that if the sessiond is not
cf12a773 45 * found, the application proceeds directly without any delay.
11ff9c7d 46 */
2b4444ce 47#define LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS CONFIG_LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS
11ff9c7d 48
751d4e91 49#define LTTNG_DEFAULT_RUNDIR LTTNG_SYSTEM_RUNDIR
32ce8569 50#define LTTNG_DEFAULT_HOME_RUNDIR ".lttng"
7fc90dca 51
67c5b804 52/* Queue size of listen(2) */
32ce8569
MD
53#define LTTNG_UST_COMM_MAX_LISTEN 10
54#define LTTNG_UST_COMM_REG_MSG_PADDING 64
55
56struct lttng_event_field;
83e43212 57struct lttng_ctx_field;
c785c634
MD
58struct lttng_enum_entry;
59struct lttng_integer_type;
60struct lttng_session;
32ce8569
MD
61
62struct ustctl_reg_msg {
63 uint32_t magic;
64 uint32_t major;
65 uint32_t minor;
66 uint32_t pid;
67 uint32_t ppid;
68 uint32_t uid;
69 uint32_t gid;
70 uint32_t bits_per_long;
71 uint32_t uint8_t_alignment;
72 uint32_t uint16_t_alignment;
73 uint32_t uint32_t_alignment;
74 uint32_t uint64_t_alignment;
75 uint32_t long_alignment;
76 uint32_t socket_type; /* enum ustctl_socket_type */
77 char name[LTTNG_UST_ABI_PROCNAME_LEN]; /* process name */
78 char padding[LTTNG_UST_COMM_REG_MSG_PADDING];
79} LTTNG_PACKED;
67c5b804 80
67c5b804 81/*
e7723462 82 * Data structure for the commands sent from sessiond to UST.
67c5b804 83 */
32ce8569
MD
84#define USTCOMM_MSG_PADDING1 32
85#define USTCOMM_MSG_PADDING2 32
57773204 86struct ustcomm_ust_msg {
1ece9766 87 uint32_t handle;
46050b1a 88 uint32_t cmd;
32ce8569 89 char padding[USTCOMM_MSG_PADDING1];
67c5b804 90 union {
d8d2416d 91 struct lttng_ust_event_notifier event_notifier;
1ece9766 92 struct lttng_ust_channel channel;
381c0f1e 93 struct lttng_ust_stream stream;
1ece9766
MD
94 struct lttng_ust_event event;
95 struct lttng_ust_context context;
57773204 96 struct lttng_ust_tracer_version version;
cbef6901 97 struct lttng_ust_tracepoint_iter tracepoint;
2d78951a 98 struct {
2734ca65
CB
99 uint32_t data_size; /* following filter data */
100 uint32_t reloc_offset;
3f6fd224 101 uint64_t seqnum;
b3f60bbf 102 } LTTNG_PACKED filter;
75582b3a
JI
103 struct {
104 uint32_t count; /* how many names follow */
105 } LTTNG_PACKED exclusion;
d37ecb3f
FD
106 struct {
107 uint32_t data_size; /* following capture data */
108 uint32_t reloc_offset;
109 uint64_t seqnum;
110 } LTTNG_PACKED capture;
ebabbf58
MD
111 struct lttng_ust_counter counter;
112 struct lttng_ust_counter_global counter_global;
113 struct lttng_ust_counter_cpu counter_cpu;
32ce8569 114 char padding[USTCOMM_MSG_PADDING2];
67c5b804 115 } u;
b3f60bbf 116} LTTNG_PACKED;
67c5b804 117
9eb62b9c
MD
118/*
119 * Data structure for the response from UST to the session daemon.
120 * cmd_type is sent back in the reply for validation.
121 */
32ce8569
MD
122#define USTCOMM_REPLY_PADDING1 32
123#define USTCOMM_REPLY_PADDING2 32
57773204 124struct ustcomm_ust_reply {
46050b1a
MD
125 uint32_t handle;
126 uint32_t cmd;
7f2348b8 127 int32_t ret_code; /* enum ustcomm_return_code */
1ece9766 128 uint32_t ret_val; /* return value */
32ce8569 129 char padding[USTCOMM_REPLY_PADDING1];
9eb62b9c 130 union {
193183fb
MD
131 struct {
132 uint64_t memory_map_size;
b3f60bbf 133 } LTTNG_PACKED channel;
381c0f1e
MD
134 struct {
135 uint64_t memory_map_size;
b3f60bbf 136 } LTTNG_PACKED stream;
57773204 137 struct lttng_ust_tracer_version version;
cbef6901 138 struct lttng_ust_tracepoint_iter tracepoint;
32ce8569 139 char padding[USTCOMM_REPLY_PADDING2];
9eb62b9c 140 } u;
b3f60bbf 141} LTTNG_PACKED;
9eb62b9c 142
32ce8569
MD
143struct ustcomm_notify_hdr {
144 uint32_t notify_cmd;
145} LTTNG_PACKED;
146
147#define USTCOMM_NOTIFY_EVENT_MSG_PADDING 32
148struct ustcomm_notify_event_msg {
149 uint32_t session_objd;
150 uint32_t channel_objd;
151 char event_name[LTTNG_UST_SYM_NAME_LEN];
152 int32_t loglevel;
153 uint32_t signature_len;
154 uint32_t fields_len;
155 uint32_t model_emf_uri_len;
156 char padding[USTCOMM_NOTIFY_EVENT_MSG_PADDING];
157 /* followed by signature, fields, and model_emf_uri */
158} LTTNG_PACKED;
159
160#define USTCOMM_NOTIFY_EVENT_REPLY_PADDING 32
161struct ustcomm_notify_event_reply {
162 int32_t ret_code; /* 0: ok, negative: error code */
163 uint32_t event_id;
164 char padding[USTCOMM_NOTIFY_EVENT_REPLY_PADDING];
165} LTTNG_PACKED;
166
c785c634
MD
167#define USTCOMM_NOTIFY_ENUM_MSG_PADDING 32
168struct ustcomm_notify_enum_msg {
169 uint32_t session_objd;
170 char enum_name[LTTNG_UST_SYM_NAME_LEN];
171 uint32_t entries_len;
172 char padding[USTCOMM_NOTIFY_ENUM_MSG_PADDING];
173 /* followed by enum entries */
174} LTTNG_PACKED;
175
176#define USTCOMM_NOTIFY_EVENT_REPLY_PADDING 32
177struct ustcomm_notify_enum_reply {
178 int32_t ret_code; /* 0: ok, negative: error code */
179 uint64_t enum_id;
180 char padding[USTCOMM_NOTIFY_EVENT_REPLY_PADDING];
181} LTTNG_PACKED;
182
32ce8569
MD
183#define USTCOMM_NOTIFY_CHANNEL_MSG_PADDING 32
184struct ustcomm_notify_channel_msg {
185 uint32_t session_objd;
186 uint32_t channel_objd;
187 uint32_t ctx_fields_len;
188 char padding[USTCOMM_NOTIFY_CHANNEL_MSG_PADDING];
189 /* followed by context fields */
190} LTTNG_PACKED;
191
192#define USTCOMM_NOTIFY_CHANNEL_REPLY_PADDING 32
193struct ustcomm_notify_channel_reply {
194 int32_t ret_code; /* 0: ok, negative: error code */
195 uint32_t chan_id;
196 uint32_t header_type; /* enum ustctl_channel_header */
197 char padding[USTCOMM_NOTIFY_CHANNEL_REPLY_PADDING];
198} LTTNG_PACKED;
199
40003310
MD
200/*
201 * LTTNG_UST_TRACEPOINT_FIELD_LIST reply is followed by a
202 * struct lttng_ust_field_iter field.
203 */
204
57773204 205extern int ustcomm_create_unix_sock(const char *pathname);
451d66b2
MD
206extern int ustcomm_connect_unix_sock(const char *pathname,
207 long timeout);
57773204
MD
208extern int ustcomm_accept_unix_sock(int sock);
209extern int ustcomm_listen_unix_sock(int sock);
210extern int ustcomm_close_unix_sock(int sock);
74d81a6c 211
57773204 212extern ssize_t ustcomm_recv_unix_sock(int sock, void *buf, size_t len);
32ce8569 213extern ssize_t ustcomm_send_unix_sock(int sock, const void *buf, size_t len);
74d81a6c
MD
214extern ssize_t ustcomm_send_fds_unix_sock(int sock, int *fds, size_t nb_fd);
215extern ssize_t ustcomm_recv_fds_unix_sock(int sock, int *fds, size_t nb_fd);
216
57773204
MD
217extern const char *ustcomm_get_readable_code(int code);
218extern int ustcomm_send_app_msg(int sock, struct ustcomm_ust_msg *lum);
219extern int ustcomm_recv_app_reply(int sock, struct ustcomm_ust_reply *lur,
220 uint32_t expected_handle, uint32_t expected_cmd);
221extern int ustcomm_send_app_cmd(int sock,
222 struct ustcomm_ust_msg *lum,
223 struct ustcomm_ust_reply *lur);
224int ustcomm_recv_fd(int sock);
67c5b804 225
74d81a6c 226ssize_t ustcomm_recv_channel_from_sessiond(int sock,
ff0f5728 227 void **chan_data, uint64_t len, int *wakeup_fd);
74d81a6c
MD
228int ustcomm_recv_stream_from_sessiond(int sock,
229 uint64_t *memory_map_size,
230 int *shm_fd, int *wakeup_fd);
d8d2416d
FD
231ssize_t ustcomm_recv_event_notifier_notif_fd_from_sessiond(int sock,
232 int *event_notifier_notif_fd);
74d81a6c 233
ebabbf58
MD
234ssize_t ustcomm_recv_counter_from_sessiond(int sock,
235 void **counter_data, uint64_t len);
236int ustcomm_recv_counter_shm_from_sessiond(int sock,
237 int *shm_fd);
238
32ce8569
MD
239/*
240 * Returns 0 on success, negative error value on error.
241 * Returns -EPIPE or -ECONNRESET if other end has hung up.
242 */
243int ustcomm_send_reg_msg(int sock,
244 enum ustctl_socket_type type,
245 uint32_t bits_per_long,
246 uint32_t uint8_t_alignment,
247 uint32_t uint16_t_alignment,
248 uint32_t uint32_t_alignment,
249 uint32_t uint64_t_alignment,
250 uint32_t long_alignment);
251
252/*
253 * Returns 0 on success, negative error value on error.
254 * Returns -EPIPE or -ECONNRESET if other end has hung up.
255 */
256int ustcomm_register_event(int sock,
c785c634 257 struct lttng_session *session,
32ce8569
MD
258 int session_objd, /* session descriptor */
259 int channel_objd, /* channel descriptor */
260 const char *event_name, /* event name (input) */
261 int loglevel,
262 const char *signature, /* event signature (input) */
263 size_t nr_fields, /* fields */
264 const struct lttng_event_field *fields,
265 const char *model_emf_uri,
266 uint32_t *id); /* event id (output) */
267
c785c634
MD
268/*
269 * Returns 0 on success, negative error value on error.
270 * Returns -EPIPE or -ECONNRESET if other end has hung up.
271 */
272int ustcomm_register_enum(int sock,
273 int session_objd, /* session descriptor */
274 const char *enum_name, /* enum name (input) */
275 size_t nr_entries, /* entries */
276 const struct lttng_enum_entry *entries,
277 uint64_t *id); /* enum id (output) */
278
32ce8569
MD
279/*
280 * Returns 0 on success, negative error value on error.
281 * Returns -EPIPE or -ECONNRESET if other end has hung up.
282 */
283int ustcomm_register_channel(int sock,
53569322 284 struct lttng_session *session,
32ce8569
MD
285 int session_objd, /* session descriptor */
286 int channel_objd, /* channel descriptor */
287 size_t nr_ctx_fields,
83e43212 288 const struct lttng_ctx_field *ctx_fields,
32ce8569
MD
289 uint32_t *chan_id, /* channel id (output) */
290 int *header_type); /* header type (output) */
291
ff517991
MD
292int ustcomm_setsockopt_rcv_timeout(int sock, unsigned int msec);
293int ustcomm_setsockopt_snd_timeout(int sock, unsigned int msec);
294
b35d179d 295#endif /* _LTTNG_UST_COMM_H */
This page took 0.045898 seconds and 4 git commands to generate.