Fix: incorrect support for multi-context
[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
29#include <limits.h>
57773204 30#include <unistd.h>
4318ae1b 31#include <lttng/ust-abi.h>
7bc53e94 32#include <lttng/ust-error.h>
b3f60bbf 33#include <lttng/ust-compiler.h>
67c5b804 34
11ff9c7d 35/*
cf12a773
MD
36 * Default timeout the application waits for the sessiond to send its
37 * "register done" command. Can be overridden with the environment
69400ac4 38 * variable "LTTNG_UST_REGISTER_TIMEOUT". Note that if the sessiond is not
cf12a773 39 * found, the application proceeds directly without any delay.
11ff9c7d 40 */
cf12a773 41#define LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS 3000
11ff9c7d 42
32ce8569
MD
43#define LTTNG_DEFAULT_RUNDIR "/var/run/lttng"
44#define LTTNG_DEFAULT_HOME_RUNDIR ".lttng"
7fc90dca 45
67c5b804 46/* Queue size of listen(2) */
32ce8569
MD
47#define LTTNG_UST_COMM_MAX_LISTEN 10
48#define LTTNG_UST_COMM_REG_MSG_PADDING 64
49
50struct lttng_event_field;
83e43212 51struct lttng_ctx_field;
32ce8569
MD
52
53struct ustctl_reg_msg {
54 uint32_t magic;
55 uint32_t major;
56 uint32_t minor;
57 uint32_t pid;
58 uint32_t ppid;
59 uint32_t uid;
60 uint32_t gid;
61 uint32_t bits_per_long;
62 uint32_t uint8_t_alignment;
63 uint32_t uint16_t_alignment;
64 uint32_t uint32_t_alignment;
65 uint32_t uint64_t_alignment;
66 uint32_t long_alignment;
67 uint32_t socket_type; /* enum ustctl_socket_type */
68 char name[LTTNG_UST_ABI_PROCNAME_LEN]; /* process name */
69 char padding[LTTNG_UST_COMM_REG_MSG_PADDING];
70} LTTNG_PACKED;
67c5b804 71
67c5b804 72/*
e7723462 73 * Data structure for the commands sent from sessiond to UST.
67c5b804 74 */
32ce8569
MD
75#define USTCOMM_MSG_PADDING1 32
76#define USTCOMM_MSG_PADDING2 32
57773204 77struct ustcomm_ust_msg {
1ece9766 78 uint32_t handle;
46050b1a 79 uint32_t cmd;
32ce8569 80 char padding[USTCOMM_MSG_PADDING1];
67c5b804 81 union {
1ece9766 82 struct lttng_ust_channel channel;
381c0f1e 83 struct lttng_ust_stream stream;
1ece9766
MD
84 struct lttng_ust_event event;
85 struct lttng_ust_context context;
57773204 86 struct lttng_ust_tracer_version version;
cbef6901 87 struct lttng_ust_tracepoint_iter tracepoint;
2d78951a 88 struct {
2734ca65
CB
89 uint32_t data_size; /* following filter data */
90 uint32_t reloc_offset;
3f6fd224 91 uint64_t seqnum;
b3f60bbf 92 } LTTNG_PACKED filter;
32ce8569 93 char padding[USTCOMM_MSG_PADDING2];
67c5b804 94 } u;
b3f60bbf 95} LTTNG_PACKED;
67c5b804 96
9eb62b9c
MD
97/*
98 * Data structure for the response from UST to the session daemon.
99 * cmd_type is sent back in the reply for validation.
100 */
32ce8569
MD
101#define USTCOMM_REPLY_PADDING1 32
102#define USTCOMM_REPLY_PADDING2 32
57773204 103struct ustcomm_ust_reply {
46050b1a
MD
104 uint32_t handle;
105 uint32_t cmd;
7f2348b8 106 int32_t ret_code; /* enum ustcomm_return_code */
1ece9766 107 uint32_t ret_val; /* return value */
32ce8569 108 char padding[USTCOMM_REPLY_PADDING1];
9eb62b9c 109 union {
193183fb
MD
110 struct {
111 uint64_t memory_map_size;
b3f60bbf 112 } LTTNG_PACKED channel;
381c0f1e
MD
113 struct {
114 uint64_t memory_map_size;
b3f60bbf 115 } LTTNG_PACKED stream;
57773204 116 struct lttng_ust_tracer_version version;
cbef6901 117 struct lttng_ust_tracepoint_iter tracepoint;
32ce8569 118 char padding[USTCOMM_REPLY_PADDING2];
9eb62b9c 119 } u;
b3f60bbf 120} LTTNG_PACKED;
9eb62b9c 121
32ce8569
MD
122struct ustcomm_notify_hdr {
123 uint32_t notify_cmd;
124} LTTNG_PACKED;
125
126#define USTCOMM_NOTIFY_EVENT_MSG_PADDING 32
127struct ustcomm_notify_event_msg {
128 uint32_t session_objd;
129 uint32_t channel_objd;
130 char event_name[LTTNG_UST_SYM_NAME_LEN];
131 int32_t loglevel;
132 uint32_t signature_len;
133 uint32_t fields_len;
134 uint32_t model_emf_uri_len;
135 char padding[USTCOMM_NOTIFY_EVENT_MSG_PADDING];
136 /* followed by signature, fields, and model_emf_uri */
137} LTTNG_PACKED;
138
139#define USTCOMM_NOTIFY_EVENT_REPLY_PADDING 32
140struct ustcomm_notify_event_reply {
141 int32_t ret_code; /* 0: ok, negative: error code */
142 uint32_t event_id;
143 char padding[USTCOMM_NOTIFY_EVENT_REPLY_PADDING];
144} LTTNG_PACKED;
145
146#define USTCOMM_NOTIFY_CHANNEL_MSG_PADDING 32
147struct ustcomm_notify_channel_msg {
148 uint32_t session_objd;
149 uint32_t channel_objd;
150 uint32_t ctx_fields_len;
151 char padding[USTCOMM_NOTIFY_CHANNEL_MSG_PADDING];
152 /* followed by context fields */
153} LTTNG_PACKED;
154
155#define USTCOMM_NOTIFY_CHANNEL_REPLY_PADDING 32
156struct ustcomm_notify_channel_reply {
157 int32_t ret_code; /* 0: ok, negative: error code */
158 uint32_t chan_id;
159 uint32_t header_type; /* enum ustctl_channel_header */
160 char padding[USTCOMM_NOTIFY_CHANNEL_REPLY_PADDING];
161} LTTNG_PACKED;
162
40003310
MD
163/*
164 * LTTNG_UST_TRACEPOINT_FIELD_LIST reply is followed by a
165 * struct lttng_ust_field_iter field.
166 */
167
57773204
MD
168extern int ustcomm_create_unix_sock(const char *pathname);
169extern int ustcomm_connect_unix_sock(const char *pathname);
170extern int ustcomm_accept_unix_sock(int sock);
171extern int ustcomm_listen_unix_sock(int sock);
172extern int ustcomm_close_unix_sock(int sock);
74d81a6c 173
57773204 174extern ssize_t ustcomm_recv_unix_sock(int sock, void *buf, size_t len);
32ce8569 175extern ssize_t ustcomm_send_unix_sock(int sock, const void *buf, size_t len);
74d81a6c
MD
176extern ssize_t ustcomm_send_fds_unix_sock(int sock, int *fds, size_t nb_fd);
177extern ssize_t ustcomm_recv_fds_unix_sock(int sock, int *fds, size_t nb_fd);
178
57773204
MD
179extern const char *ustcomm_get_readable_code(int code);
180extern int ustcomm_send_app_msg(int sock, struct ustcomm_ust_msg *lum);
181extern int ustcomm_recv_app_reply(int sock, struct ustcomm_ust_reply *lur,
182 uint32_t expected_handle, uint32_t expected_cmd);
183extern int ustcomm_send_app_cmd(int sock,
184 struct ustcomm_ust_msg *lum,
185 struct ustcomm_ust_reply *lur);
186int ustcomm_recv_fd(int sock);
67c5b804 187
74d81a6c 188ssize_t ustcomm_recv_channel_from_sessiond(int sock,
ff0f5728 189 void **chan_data, uint64_t len, int *wakeup_fd);
74d81a6c
MD
190int ustcomm_recv_stream_from_sessiond(int sock,
191 uint64_t *memory_map_size,
192 int *shm_fd, int *wakeup_fd);
193
32ce8569
MD
194/*
195 * Returns 0 on success, negative error value on error.
196 * Returns -EPIPE or -ECONNRESET if other end has hung up.
197 */
198int ustcomm_send_reg_msg(int sock,
199 enum ustctl_socket_type type,
200 uint32_t bits_per_long,
201 uint32_t uint8_t_alignment,
202 uint32_t uint16_t_alignment,
203 uint32_t uint32_t_alignment,
204 uint32_t uint64_t_alignment,
205 uint32_t long_alignment);
206
207/*
208 * Returns 0 on success, negative error value on error.
209 * Returns -EPIPE or -ECONNRESET if other end has hung up.
210 */
211int ustcomm_register_event(int sock,
212 int session_objd, /* session descriptor */
213 int channel_objd, /* channel descriptor */
214 const char *event_name, /* event name (input) */
215 int loglevel,
216 const char *signature, /* event signature (input) */
217 size_t nr_fields, /* fields */
218 const struct lttng_event_field *fields,
219 const char *model_emf_uri,
220 uint32_t *id); /* event id (output) */
221
222/*
223 * Returns 0 on success, negative error value on error.
224 * Returns -EPIPE or -ECONNRESET if other end has hung up.
225 */
226int ustcomm_register_channel(int sock,
227 int session_objd, /* session descriptor */
228 int channel_objd, /* channel descriptor */
229 size_t nr_ctx_fields,
83e43212 230 const struct lttng_ctx_field *ctx_fields,
32ce8569
MD
231 uint32_t *chan_id, /* channel id (output) */
232 int *header_type); /* header type (output) */
233
ff517991
MD
234int ustcomm_setsockopt_rcv_timeout(int sock, unsigned int msec);
235int ustcomm_setsockopt_snd_timeout(int sock, unsigned int msec);
236
b35d179d 237#endif /* _LTTNG_UST_COMM_H */
This page took 0.037561 seconds and 4 git commands to generate.