Rename data_available to data_pending
[lttng-tools.git] / src / common / sessiond-comm / sessiond-comm.h
1 /*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Julien Desfossez <julien.desfossez@polymtl.ca>
4 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 /*
21 * This header is meant for liblttng and libust internal use ONLY. These
22 * declarations should NOT be considered stable API.
23 */
24
25 #ifndef _LTTNG_SESSIOND_COMM_H
26 #define _LTTNG_SESSIOND_COMM_H
27
28 #define _GNU_SOURCE
29 #include <limits.h>
30 #include <lttng/lttng.h>
31 #include <common/compat/socket.h>
32 #include <common/uri.h>
33
34 #include <arpa/inet.h>
35 #include <netinet/in.h>
36 #include <sys/un.h>
37
38 #include "inet.h"
39 #include "inet6.h"
40 #include "unix.h"
41
42 /* Queue size of listen(2) */
43 #define LTTNG_SESSIOND_COMM_MAX_LISTEN 64
44
45 /* Maximum number of FDs that can be sent over a Unix socket */
46 #define LTTCOMM_MAX_SEND_FDS 4
47
48 /*
49 * Get the error code index from 0 since LTTCOMM_OK start at 1000
50 */
51 #define LTTCOMM_ERR_INDEX(code) (code - LTTCOMM_CONSUMERD_COMMAND_SOCK_READY)
52
53 enum lttcomm_sessiond_command {
54 /* Tracer command */
55 LTTNG_ADD_CONTEXT,
56 LTTNG_CALIBRATE,
57 LTTNG_DISABLE_CHANNEL,
58 LTTNG_DISABLE_EVENT,
59 LTTNG_DISABLE_ALL_EVENT,
60 LTTNG_ENABLE_CHANNEL,
61 LTTNG_ENABLE_EVENT,
62 LTTNG_ENABLE_ALL_EVENT,
63 /* Session daemon command */
64 LTTNG_CREATE_SESSION,
65 LTTNG_DESTROY_SESSION,
66 LTTNG_LIST_CHANNELS,
67 LTTNG_LIST_DOMAINS,
68 LTTNG_LIST_EVENTS,
69 LTTNG_LIST_SESSIONS,
70 LTTNG_LIST_TRACEPOINTS,
71 LTTNG_REGISTER_CONSUMER,
72 LTTNG_START_TRACE,
73 LTTNG_STOP_TRACE,
74 LTTNG_LIST_TRACEPOINT_FIELDS,
75
76 /* Consumer */
77 LTTNG_DISABLE_CONSUMER,
78 LTTNG_ENABLE_CONSUMER,
79 LTTNG_SET_CONSUMER_URI,
80 /* Relay daemon */
81 RELAYD_ADD_STREAM,
82 RELAYD_CREATE_SESSION,
83 RELAYD_START_DATA,
84 RELAYD_UPDATE_SYNC_INFO,
85 RELAYD_VERSION,
86 RELAYD_SEND_METADATA,
87 RELAYD_CLOSE_STREAM,
88 RELAYD_DATA_PENDING,
89 RELAYD_QUIESCENT_CONTROL,
90 LTTNG_SET_FILTER,
91 LTTNG_HEALTH_CHECK,
92 LTTNG_DATA_PENDING,
93 };
94
95 /*
96 * lttcomm error code.
97 */
98 enum lttcomm_return_code {
99 LTTCOMM_CONSUMERD_COMMAND_SOCK_READY = 1, /* Command socket ready */
100 LTTCOMM_CONSUMERD_SUCCESS_RECV_FD, /* Success on receiving fds */
101 LTTCOMM_CONSUMERD_ERROR_RECV_FD, /* Error on receiving fds */
102 LTTCOMM_CONSUMERD_ERROR_RECV_CMD, /* Error on receiving command */
103 LTTCOMM_CONSUMERD_POLL_ERROR, /* Error in polling thread */
104 LTTCOMM_CONSUMERD_POLL_NVAL, /* Poll on closed fd */
105 LTTCOMM_CONSUMERD_POLL_HUP, /* All fds have hungup */
106 LTTCOMM_CONSUMERD_EXIT_SUCCESS, /* Consumerd exiting normally */
107 LTTCOMM_CONSUMERD_EXIT_FAILURE, /* Consumerd exiting on error */
108 LTTCOMM_CONSUMERD_OUTFD_ERROR, /* Error opening the tracefile */
109 LTTCOMM_CONSUMERD_SPLICE_EBADF, /* EBADF from splice(2) */
110 LTTCOMM_CONSUMERD_SPLICE_EINVAL, /* EINVAL from splice(2) */
111 LTTCOMM_CONSUMERD_SPLICE_ENOMEM, /* ENOMEM from splice(2) */
112 LTTCOMM_CONSUMERD_SPLICE_ESPIPE, /* ESPIPE from splice(2) */
113
114 /* MUST be last element */
115 LTTCOMM_NR, /* Last element */
116 };
117
118 /* lttng socket protocol. */
119 enum lttcomm_sock_proto {
120 LTTCOMM_SOCK_UDP,
121 LTTCOMM_SOCK_TCP,
122 };
123
124 /*
125 * Index in the net_families array below. Please keep in sync!
126 */
127 enum lttcomm_sock_domain {
128 LTTCOMM_INET = 0,
129 LTTCOMM_INET6 = 1,
130 };
131
132 struct lttcomm_sockaddr {
133 enum lttcomm_sock_domain type;
134 union {
135 struct sockaddr_in sin;
136 struct sockaddr_in6 sin6;
137 } addr;
138 };
139
140 struct lttcomm_sock {
141 int fd;
142 enum lttcomm_sock_proto proto;
143 struct lttcomm_sockaddr sockaddr;
144 const struct lttcomm_proto_ops *ops;
145 };
146
147 struct lttcomm_net_family {
148 int family;
149 int (*create) (struct lttcomm_sock *sock, int type, int proto);
150 };
151
152 struct lttcomm_proto_ops {
153 int (*bind) (struct lttcomm_sock *sock);
154 int (*close) (struct lttcomm_sock *sock);
155 int (*connect) (struct lttcomm_sock *sock);
156 struct lttcomm_sock *(*accept) (struct lttcomm_sock *sock);
157 int (*listen) (struct lttcomm_sock *sock, int backlog);
158 ssize_t (*recvmsg) (struct lttcomm_sock *sock, void *buf, size_t len,
159 int flags);
160 ssize_t (*sendmsg) (struct lttcomm_sock *sock, void *buf, size_t len,
161 int flags);
162 };
163
164 /*
165 * Data structure received from lttng client to session daemon.
166 */
167 struct lttcomm_session_msg {
168 uint32_t cmd_type; /* enum lttcomm_sessiond_command */
169 struct lttng_session session;
170 struct lttng_domain domain;
171 union {
172 struct {
173 char channel_name[LTTNG_SYMBOL_NAME_LEN];
174 char name[NAME_MAX];
175 } disable;
176 /* Event data */
177 struct {
178 char channel_name[LTTNG_SYMBOL_NAME_LEN];
179 struct lttng_event event;
180 } enable;
181 /* Create channel */
182 struct {
183 struct lttng_channel chan;
184 } channel;
185 /* Context */
186 struct {
187 char channel_name[LTTNG_SYMBOL_NAME_LEN];
188 char event_name[LTTNG_SYMBOL_NAME_LEN];
189 struct lttng_event_context ctx;
190 } context;
191 /* Use by register_consumer */
192 struct {
193 char path[PATH_MAX];
194 } reg;
195 /* List */
196 struct {
197 char channel_name[LTTNG_SYMBOL_NAME_LEN];
198 } list;
199 struct lttng_calibrate calibrate;
200 /* Used by the set_consumer_url and used by create_session also call */
201 struct {
202 /* Number of lttng_uri following */
203 uint32_t size;
204 } uri;
205 struct {
206 char channel_name[LTTNG_SYMBOL_NAME_LEN];
207 char event_name[LTTNG_SYMBOL_NAME_LEN];
208 /* Length of following bytecode */
209 uint32_t bytecode_len;
210 } filter;
211 } u;
212 };
213
214 #define LTTNG_FILTER_MAX_LEN 65536
215
216 /*
217 * Filter bytecode data. The reloc table is located at the end of the
218 * bytecode. It is made of tuples: (uint16_t, var. len. string). It
219 * starts at reloc_table_offset.
220 */
221 struct lttng_filter_bytecode {
222 uint32_t len; /* len of data */
223 uint32_t reloc_table_offset;
224 char data[0];
225 };
226
227 /*
228 * Data structure for the response from sessiond to the lttng client.
229 */
230 struct lttcomm_lttng_msg {
231 uint32_t cmd_type; /* enum lttcomm_sessiond_command */
232 uint32_t ret_code; /* enum lttcomm_return_code */
233 uint32_t pid; /* pid_t */
234 uint32_t data_size;
235 /* Contains: trace_name + data */
236 char payload[];
237 };
238
239 struct lttcomm_health_msg {
240 uint32_t component;
241 uint32_t cmd;
242 };
243
244 struct lttcomm_health_data {
245 uint32_t ret_code;
246 };
247
248 /*
249 * lttcomm_consumer_msg is the message sent from sessiond to consumerd
250 * to either add a channel, add a stream, update a stream, or stop
251 * operation.
252 */
253 struct lttcomm_consumer_msg {
254 uint32_t cmd_type; /* enum consumerd_command */
255 union {
256 struct {
257 int channel_key;
258 uint64_t max_sb_size; /* the subbuffer size for this channel */
259 /* shm_fd and wait_fd are sent as ancillary data */
260 uint64_t mmap_len;
261 /* nb_init_streams is the number of streams open initially. */
262 unsigned int nb_init_streams;
263 char name[LTTNG_SYMBOL_NAME_LEN];
264 } channel;
265 struct {
266 int channel_key;
267 int stream_key;
268 /* shm_fd and wait_fd are sent as ancillary data */
269 uint32_t state; /* enum lttcomm_consumer_fd_state */
270 enum lttng_event_output output; /* use splice or mmap to consume this fd */
271 uint64_t mmap_len;
272 uid_t uid; /* User ID owning the session */
273 gid_t gid; /* Group ID owning the session */
274 char path_name[PATH_MAX];
275 int net_index;
276 unsigned int metadata_flag;
277 char name[LTTNG_SYMBOL_NAME_LEN]; /* Name string of the stream */
278 uint64_t session_id; /* Tracing session id of the stream */
279 } stream;
280 struct {
281 int net_index;
282 enum lttng_stream_type type;
283 /* Open socket to the relayd */
284 struct lttcomm_sock sock;
285 } relayd_sock;
286 struct {
287 uint64_t net_seq_idx;
288 } destroy_relayd;
289 struct {
290 uint64_t session_id;
291 } data_pending;
292 } u;
293 };
294
295 #ifdef HAVE_LIBLTTNG_UST_CTL
296
297 #include <lttng/ust-abi.h>
298
299 /*
300 * Data structure for the commands sent from sessiond to UST.
301 */
302 struct lttcomm_ust_msg {
303 uint32_t handle;
304 uint32_t cmd;
305 union {
306 struct lttng_ust_channel channel;
307 struct lttng_ust_stream stream;
308 struct lttng_ust_event event;
309 struct lttng_ust_context context;
310 struct lttng_ust_tracer_version version;
311 } u;
312 };
313
314 /*
315 * Data structure for the response from UST to the session daemon.
316 * cmd_type is sent back in the reply for validation.
317 */
318 struct lttcomm_ust_reply {
319 uint32_t handle;
320 uint32_t cmd;
321 uint32_t ret_code; /* enum lttcomm_return_code */
322 uint32_t ret_val; /* return value */
323 union {
324 struct {
325 uint64_t memory_map_size;
326 } channel;
327 struct {
328 uint64_t memory_map_size;
329 } stream;
330 struct lttng_ust_tracer_version version;
331 } u;
332 };
333
334 #endif /* HAVE_LIBLTTNG_UST_CTL */
335
336 extern const char *lttcomm_get_readable_code(enum lttcomm_return_code code);
337
338 extern int lttcomm_init_inet_sockaddr(struct lttcomm_sockaddr *sockaddr,
339 const char *ip, unsigned int port);
340 extern int lttcomm_init_inet6_sockaddr(struct lttcomm_sockaddr *sockaddr,
341 const char *ip, unsigned int port);
342
343 extern struct lttcomm_sock *lttcomm_alloc_sock(enum lttcomm_sock_proto proto);
344 extern int lttcomm_create_sock(struct lttcomm_sock *sock);
345 extern struct lttcomm_sock *lttcomm_alloc_sock_from_uri(struct lttng_uri *uri);
346 extern void lttcomm_destroy_sock(struct lttcomm_sock *sock);
347 extern struct lttcomm_sock *lttcomm_alloc_copy_sock(struct lttcomm_sock *src);
348 extern void lttcomm_copy_sock(struct lttcomm_sock *dst,
349 struct lttcomm_sock *src);
350
351 #endif /* _LTTNG_SESSIOND_COMM_H */
This page took 0.036886 seconds and 5 git commands to generate.