SoW-2019-0002: Dynamic Snapshot
[deliverable/lttng-ust.git] / include / ust-comm.h
1 #ifndef _LTTNG_UST_COMM_H
2 #define _LTTNG_UST_COMM_H
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 *
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,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
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
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
29 #include <stdint.h>
30 #include <limits.h>
31 #include <unistd.h>
32 #include <lttng/ust-abi.h>
33 #include <lttng/ust-error.h>
34 #include <lttng/ust-compiler.h>
35 #include <lttng/ust-ctl.h>
36 #include <config.h>
37
38 #ifndef LTTNG_PACKED
39 #error "LTTNG_PACKED should be defined"
40 #endif
41
42 /*
43 * Default timeout the application waits for the sessiond to send its
44 * "register done" command. Can be overridden with the environment
45 * variable "LTTNG_UST_REGISTER_TIMEOUT". Note that if the sessiond is not
46 * found, the application proceeds directly without any delay.
47 */
48 #define LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS CONFIG_LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS
49
50 #define LTTNG_DEFAULT_RUNDIR LTTNG_SYSTEM_RUNDIR
51 #define LTTNG_DEFAULT_HOME_RUNDIR ".lttng"
52
53 /* Queue size of listen(2) */
54 #define LTTNG_UST_COMM_MAX_LISTEN 10
55 #define LTTNG_UST_COMM_REG_MSG_PADDING 64
56
57 struct lttng_event_field;
58 struct lttng_ctx_field;
59 struct lttng_enum_entry;
60 struct lttng_integer_type;
61 struct lttng_session;
62
63 struct ustctl_reg_msg {
64 uint32_t magic;
65 uint32_t major;
66 uint32_t minor;
67 uint32_t pid;
68 uint32_t ppid;
69 uint32_t uid;
70 uint32_t gid;
71 uint32_t bits_per_long;
72 uint32_t uint8_t_alignment;
73 uint32_t uint16_t_alignment;
74 uint32_t uint32_t_alignment;
75 uint32_t uint64_t_alignment;
76 uint32_t long_alignment;
77 uint32_t socket_type; /* enum ustctl_socket_type */
78 char name[LTTNG_UST_ABI_PROCNAME_LEN]; /* process name */
79 char padding[LTTNG_UST_COMM_REG_MSG_PADDING];
80 } LTTNG_PACKED;
81
82 /*
83 * Data structure for the commands sent from sessiond to UST.
84 */
85 #define USTCOMM_MSG_PADDING1 32
86 #define USTCOMM_MSG_PADDING2 32
87 struct ustcomm_ust_msg {
88 uint32_t handle;
89 uint32_t cmd;
90 char padding[USTCOMM_MSG_PADDING1];
91 union {
92 struct lttng_ust_trigger trigger;
93 struct lttng_ust_channel channel;
94 struct lttng_ust_stream stream;
95 struct lttng_ust_event event;
96 struct lttng_ust_context context;
97 struct lttng_ust_tracer_version version;
98 struct lttng_ust_tracepoint_iter tracepoint;
99 struct {
100 uint32_t data_size; /* following filter data */
101 uint32_t reloc_offset;
102 uint64_t seqnum;
103 } LTTNG_PACKED filter;
104 struct {
105 uint32_t count; /* how many names follow */
106 } LTTNG_PACKED exclusion;
107 char padding[USTCOMM_MSG_PADDING2];
108 } u;
109 } LTTNG_PACKED;
110
111 /*
112 * Data structure for the response from UST to the session daemon.
113 * cmd_type is sent back in the reply for validation.
114 */
115 #define USTCOMM_REPLY_PADDING1 32
116 #define USTCOMM_REPLY_PADDING2 32
117 struct ustcomm_ust_reply {
118 uint32_t handle;
119 uint32_t cmd;
120 int32_t ret_code; /* enum ustcomm_return_code */
121 uint32_t ret_val; /* return value */
122 char padding[USTCOMM_REPLY_PADDING1];
123 union {
124 struct {
125 uint64_t memory_map_size;
126 } LTTNG_PACKED channel;
127 struct {
128 uint64_t memory_map_size;
129 } LTTNG_PACKED stream;
130 struct lttng_ust_tracer_version version;
131 struct lttng_ust_tracepoint_iter tracepoint;
132 char padding[USTCOMM_REPLY_PADDING2];
133 } u;
134 } LTTNG_PACKED;
135
136 struct ustcomm_notify_hdr {
137 uint32_t notify_cmd;
138 } LTTNG_PACKED;
139
140 #define USTCOMM_NOTIFY_EVENT_MSG_PADDING 32
141 struct ustcomm_notify_event_msg {
142 uint32_t session_objd;
143 uint32_t channel_objd;
144 char event_name[LTTNG_UST_SYM_NAME_LEN];
145 int32_t loglevel;
146 uint32_t signature_len;
147 uint32_t fields_len;
148 uint32_t model_emf_uri_len;
149 char padding[USTCOMM_NOTIFY_EVENT_MSG_PADDING];
150 /* followed by signature, fields, and model_emf_uri */
151 } LTTNG_PACKED;
152
153 #define USTCOMM_NOTIFY_EVENT_REPLY_PADDING 32
154 struct ustcomm_notify_event_reply {
155 int32_t ret_code; /* 0: ok, negative: error code */
156 uint32_t event_id;
157 char padding[USTCOMM_NOTIFY_EVENT_REPLY_PADDING];
158 } LTTNG_PACKED;
159
160 #define USTCOMM_NOTIFY_ENUM_MSG_PADDING 32
161 struct ustcomm_notify_enum_msg {
162 uint32_t session_objd;
163 char enum_name[LTTNG_UST_SYM_NAME_LEN];
164 uint32_t entries_len;
165 char padding[USTCOMM_NOTIFY_ENUM_MSG_PADDING];
166 /* followed by enum entries */
167 } LTTNG_PACKED;
168
169 #define USTCOMM_NOTIFY_EVENT_REPLY_PADDING 32
170 struct ustcomm_notify_enum_reply {
171 int32_t ret_code; /* 0: ok, negative: error code */
172 uint64_t enum_id;
173 char padding[USTCOMM_NOTIFY_EVENT_REPLY_PADDING];
174 } LTTNG_PACKED;
175
176 #define USTCOMM_NOTIFY_CHANNEL_MSG_PADDING 32
177 struct ustcomm_notify_channel_msg {
178 uint32_t session_objd;
179 uint32_t channel_objd;
180 uint32_t ctx_fields_len;
181 char padding[USTCOMM_NOTIFY_CHANNEL_MSG_PADDING];
182 /* followed by context fields */
183 } LTTNG_PACKED;
184
185 #define USTCOMM_NOTIFY_CHANNEL_REPLY_PADDING 32
186 struct ustcomm_notify_channel_reply {
187 int32_t ret_code; /* 0: ok, negative: error code */
188 uint32_t chan_id;
189 uint32_t header_type; /* enum ustctl_channel_header */
190 char padding[USTCOMM_NOTIFY_CHANNEL_REPLY_PADDING];
191 } LTTNG_PACKED;
192
193 /*
194 * LTTNG_UST_TRACEPOINT_FIELD_LIST reply is followed by a
195 * struct lttng_ust_field_iter field.
196 */
197
198 extern int ustcomm_create_unix_sock(const char *pathname);
199 extern int ustcomm_connect_unix_sock(const char *pathname,
200 long timeout);
201 extern int ustcomm_accept_unix_sock(int sock);
202 extern int ustcomm_listen_unix_sock(int sock);
203 extern int ustcomm_close_unix_sock(int sock);
204
205 extern ssize_t ustcomm_recv_unix_sock(int sock, void *buf, size_t len);
206 extern ssize_t ustcomm_send_unix_sock(int sock, const void *buf, size_t len);
207 extern ssize_t ustcomm_send_fds_unix_sock(int sock, int *fds, size_t nb_fd);
208 extern ssize_t ustcomm_recv_fds_unix_sock(int sock, int *fds, size_t nb_fd);
209
210 extern const char *ustcomm_get_readable_code(int code);
211 extern int ustcomm_send_app_msg(int sock, struct ustcomm_ust_msg *lum);
212 extern int ustcomm_recv_app_reply(int sock, struct ustcomm_ust_reply *lur,
213 uint32_t expected_handle, uint32_t expected_cmd);
214 extern int ustcomm_send_app_cmd(int sock,
215 struct ustcomm_ust_msg *lum,
216 struct ustcomm_ust_reply *lur);
217 int ustcomm_recv_fd(int sock);
218
219 ssize_t ustcomm_recv_channel_from_sessiond(int sock,
220 void **chan_data, uint64_t len, int *wakeup_fd);
221 int ustcomm_recv_stream_from_sessiond(int sock,
222 uint64_t *memory_map_size,
223 int *shm_fd, int *wakeup_fd);
224 ssize_t ustcomm_recv_trigger_notif_fd_from_sessiond(int sock,
225 int *trigger_notif_fd);
226
227 /*
228 * Returns 0 on success, negative error value on error.
229 * Returns -EPIPE or -ECONNRESET if other end has hung up.
230 */
231 int ustcomm_send_reg_msg(int sock,
232 enum ustctl_socket_type type,
233 uint32_t bits_per_long,
234 uint32_t uint8_t_alignment,
235 uint32_t uint16_t_alignment,
236 uint32_t uint32_t_alignment,
237 uint32_t uint64_t_alignment,
238 uint32_t long_alignment);
239
240 /*
241 * Returns 0 on success, negative error value on error.
242 * Returns -EPIPE or -ECONNRESET if other end has hung up.
243 */
244 int ustcomm_register_event(int sock,
245 struct lttng_session *session,
246 int session_objd, /* session descriptor */
247 int channel_objd, /* channel descriptor */
248 const char *event_name, /* event name (input) */
249 int loglevel,
250 const char *signature, /* event signature (input) */
251 size_t nr_fields, /* fields */
252 const struct lttng_event_field *fields,
253 const char *model_emf_uri,
254 uint32_t *id); /* event id (output) */
255
256 /*
257 * Returns 0 on success, negative error value on error.
258 * Returns -EPIPE or -ECONNRESET if other end has hung up.
259 */
260 int ustcomm_register_enum(int sock,
261 int session_objd, /* session descriptor */
262 const char *enum_name, /* enum name (input) */
263 size_t nr_entries, /* entries */
264 const struct lttng_enum_entry *entries,
265 uint64_t *id); /* enum id (output) */
266
267 /*
268 * Returns 0 on success, negative error value on error.
269 * Returns -EPIPE or -ECONNRESET if other end has hung up.
270 */
271 int ustcomm_register_channel(int sock,
272 struct lttng_session *session,
273 int session_objd, /* session descriptor */
274 int channel_objd, /* channel descriptor */
275 size_t nr_ctx_fields,
276 const struct lttng_ctx_field *ctx_fields,
277 uint32_t *chan_id, /* channel id (output) */
278 int *header_type); /* header type (output) */
279
280 int ustcomm_setsockopt_rcv_timeout(int sock, unsigned int msec);
281 int ustcomm_setsockopt_snd_timeout(int sock, unsigned int msec);
282
283 #endif /* _LTTNG_UST_COMM_H */
This page took 0.036432 seconds and 5 git commands to generate.