Fix: race between lttng-ust getenv() and application setenv()
[lttng-ust.git] / liblttng-ust-ctl / ustctl.c
CommitLineData
57773204
MD
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
74d81a6c 3 * Copyright (C) 2011-2013 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
57773204 4 *
e92f3e28
MD
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License only.
57773204
MD
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
e92f3e28
MD
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
57773204
MD
17 */
18
9d335227 19#define _GNU_SOURCE
57773204 20#include <string.h>
c62a3816 21#include <lttng/ust-config.h>
4318ae1b
MD
22#include <lttng/ust-ctl.h>
23#include <lttng/ust-abi.h>
c1fca457 24#include <lttng/ust-events.h>
7a784989 25#include <sys/mman.h>
32ce8569 26#include <byteswap.h>
44c72f10
MD
27
28#include <usterr-signal-safe.h>
b728d87e 29#include <ust-comm.h>
74d81a6c 30#include <helper.h>
57773204
MD
31
32#include "../libringbuffer/backend.h"
33#include "../libringbuffer/frontend.h"
c9023c93 34#include "../liblttng-ust/wait.h"
b2f3252a 35#include "../liblttng-ust/lttng-rb-clients.h"
f9364363 36#include "../liblttng-ust/clock.h"
c9023c93
MD
37
38/*
39 * Number of milliseconds to retry before failing metadata writes on
40 * buffer full condition. (10 seconds)
41 */
42#define LTTNG_METADATA_TIMEOUT_MSEC 10000
57773204 43
74d81a6c
MD
44/*
45 * Channel representation within consumer.
46 */
47struct ustctl_consumer_channel {
48 struct lttng_channel *chan; /* lttng channel buffers */
6b120308 49
74d81a6c
MD
50 /* initial attributes */
51 struct ustctl_consumer_channel_attr attr;
ff0f5728
MD
52 int wait_fd; /* monitor close() */
53 int wakeup_fd; /* monitor close() */
74d81a6c
MD
54};
55
56/*
57 * Stream representation within consumer.
58 */
59struct ustctl_consumer_stream {
60 struct lttng_ust_shm_handle *handle; /* shared-memory handle */
61 struct lttng_ust_lib_ring_buffer *buf;
62 struct ustctl_consumer_channel *chan;
63 int shm_fd, wait_fd, wakeup_fd;
64 int cpu;
65 uint64_t memory_map_size;
66};
67
68extern void lttng_ring_buffer_client_overwrite_init(void);
08a3170c 69extern void lttng_ring_buffer_client_overwrite_rt_init(void);
74d81a6c 70extern void lttng_ring_buffer_client_discard_init(void);
08a3170c 71extern void lttng_ring_buffer_client_discard_rt_init(void);
74d81a6c
MD
72extern void lttng_ring_buffer_metadata_client_init(void);
73extern void lttng_ring_buffer_client_overwrite_exit(void);
08a3170c 74extern void lttng_ring_buffer_client_overwrite_rt_exit(void);
74d81a6c 75extern void lttng_ring_buffer_client_discard_exit(void);
08a3170c 76extern void lttng_ring_buffer_client_discard_rt_exit(void);
74d81a6c
MD
77extern void lttng_ring_buffer_metadata_client_exit(void);
78
79volatile enum ust_loglevel ust_loglevel;
57773204 80
2be0e72c
MD
81int ustctl_release_handle(int sock, int handle)
82{
83 struct ustcomm_ust_msg lum;
84 struct ustcomm_ust_reply lur;
2be0e72c 85
74d81a6c
MD
86 if (sock < 0 || handle < 0)
87 return 0;
88 memset(&lum, 0, sizeof(lum));
89 lum.handle = handle;
90 lum.cmd = LTTNG_UST_RELEASE;
91 return ustcomm_send_app_cmd(sock, &lum, &lur);
2be0e72c 92}
74d81a6c 93
12388166
MD
94/*
95 * If sock is negative, it means we don't have to notify the other side
96 * (e.g. application has already vanished).
97 */
d26228ae 98int ustctl_release_object(int sock, struct lttng_ust_object_data *data)
57773204 99{
57773204
MD
100 int ret;
101
9bfc503d
MD
102 if (!data)
103 return -EINVAL;
104
74d81a6c
MD
105 switch (data->type) {
106 case LTTNG_UST_OBJECT_TYPE_CHANNEL:
ff0f5728
MD
107 if (data->u.channel.wakeup_fd >= 0) {
108 ret = close(data->u.channel.wakeup_fd);
109 if (ret < 0) {
110 ret = -errno;
111 return ret;
112 }
113 }
74d81a6c
MD
114 free(data->u.channel.data);
115 break;
116 case LTTNG_UST_OBJECT_TYPE_STREAM:
117 if (data->u.stream.shm_fd >= 0) {
118 ret = close(data->u.stream.shm_fd);
119 if (ret < 0) {
120 ret = -errno;
121 return ret;
122 }
d26228ae 123 }
74d81a6c
MD
124 if (data->u.stream.wakeup_fd >= 0) {
125 ret = close(data->u.stream.wakeup_fd);
126 if (ret < 0) {
127 ret = -errno;
128 return ret;
129 }
d26228ae 130 }
74d81a6c 131 break;
32ce8569
MD
132 case LTTNG_UST_OBJECT_TYPE_EVENT:
133 case LTTNG_UST_OBJECT_TYPE_CONTEXT:
134 break;
74d81a6c
MD
135 default:
136 assert(0);
d26228ae 137 }
2be0e72c 138 return ustctl_release_handle(sock, data->handle);
57773204
MD
139}
140
1c5e467e
MD
141/*
142 * Send registration done packet to the application.
143 */
144int ustctl_register_done(int sock)
145{
146 struct ustcomm_ust_msg lum;
147 struct ustcomm_ust_reply lur;
148 int ret;
149
150 DBG("Sending register done command to %d", sock);
151 memset(&lum, 0, sizeof(lum));
152 lum.handle = LTTNG_UST_ROOT_HANDLE;
153 lum.cmd = LTTNG_UST_REGISTER_DONE;
154 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
155 if (ret)
156 return ret;
1c5e467e 157 return 0;
1c5e467e
MD
158}
159
57773204
MD
160/*
161 * returns session handle.
162 */
163int ustctl_create_session(int sock)
164{
165 struct ustcomm_ust_msg lum;
166 struct ustcomm_ust_reply lur;
167 int ret, session_handle;
168
169 /* Create session */
170 memset(&lum, 0, sizeof(lum));
171 lum.handle = LTTNG_UST_ROOT_HANDLE;
172 lum.cmd = LTTNG_UST_SESSION;
173 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
174 if (ret)
175 return ret;
176 session_handle = lur.ret_val;
177 DBG("received session handle %u", session_handle);
178 return session_handle;
179}
180
57773204 181int ustctl_create_event(int sock, struct lttng_ust_event *ev,
61f02aea
MD
182 struct lttng_ust_object_data *channel_data,
183 struct lttng_ust_object_data **_event_data)
57773204
MD
184{
185 struct ustcomm_ust_msg lum;
186 struct ustcomm_ust_reply lur;
61f02aea 187 struct lttng_ust_object_data *event_data;
57773204
MD
188 int ret;
189
9bfc503d
MD
190 if (!channel_data || !_event_data)
191 return -EINVAL;
192
74d81a6c 193 event_data = zmalloc(sizeof(*event_data));
57773204
MD
194 if (!event_data)
195 return -ENOMEM;
32ce8569 196 event_data->type = LTTNG_UST_OBJECT_TYPE_EVENT;
57773204
MD
197 memset(&lum, 0, sizeof(lum));
198 lum.handle = channel_data->handle;
199 lum.cmd = LTTNG_UST_EVENT;
200 strncpy(lum.u.event.name, ev->name,
201 LTTNG_UST_SYM_NAME_LEN);
202 lum.u.event.instrumentation = ev->instrumentation;
457a6b58
MD
203 lum.u.event.loglevel_type = ev->loglevel_type;
204 lum.u.event.loglevel = ev->loglevel;
57773204
MD
205 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
206 if (ret) {
207 free(event_data);
208 return ret;
209 }
210 event_data->handle = lur.ret_val;
211 DBG("received event handle %u", event_data->handle);
212 *_event_data = event_data;
213 return 0;
214}
215
53f0df51 216int ustctl_add_context(int sock, struct lttng_ust_context_attr *ctx,
61f02aea
MD
217 struct lttng_ust_object_data *obj_data,
218 struct lttng_ust_object_data **_context_data)
57773204
MD
219{
220 struct ustcomm_ust_msg lum;
221 struct ustcomm_ust_reply lur;
53f0df51
JG
222 struct lttng_ust_object_data *context_data = NULL;
223 char *buf = NULL;
224 size_t len;
57773204
MD
225 int ret;
226
53f0df51
JG
227 if (!obj_data || !_context_data) {
228 ret = -EINVAL;
229 goto end;
230 }
9bfc503d 231
74d81a6c 232 context_data = zmalloc(sizeof(*context_data));
53f0df51
JG
233 if (!context_data) {
234 ret = -ENOMEM;
235 goto end;
236 }
32ce8569 237 context_data->type = LTTNG_UST_OBJECT_TYPE_CONTEXT;
57773204 238 memset(&lum, 0, sizeof(lum));
3039d8ed 239 lum.handle = obj_data->handle;
57773204 240 lum.cmd = LTTNG_UST_CONTEXT;
53f0df51
JG
241
242 lum.u.context.ctx = ctx->ctx;
243 switch (ctx->ctx) {
244 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER:
245 lum.u.context.u.perf_counter = ctx->u.perf_counter;
246 break;
247 case LTTNG_UST_CONTEXT_APP_CONTEXT:
248 {
249 size_t provider_name_len = strlen(
250 ctx->u.app_ctx.provider_name) + 1;
251 size_t ctx_name_len = strlen(ctx->u.app_ctx.ctx_name) + 1;
252
253 lum.u.context.u.app_ctx.provider_name_len = provider_name_len;
254 lum.u.context.u.app_ctx.ctx_name_len = ctx_name_len;
255
256 len = provider_name_len + ctx_name_len;
257 buf = zmalloc(len);
258 if (!buf) {
259 ret = -ENOMEM;
260 goto end;
261 }
262 memcpy(buf, ctx->u.app_ctx.provider_name,
263 provider_name_len);
264 memcpy(buf + provider_name_len, ctx->u.app_ctx.ctx_name,
265 ctx_name_len);
266 break;
267 }
268 default:
269 break;
270 }
271 ret = ustcomm_send_app_msg(sock, &lum);
272 if (ret)
273 goto end;
274 if (buf) {
275 /* send var len ctx_name */
276 ret = ustcomm_send_unix_sock(sock, buf, len);
277 if (ret < 0) {
278 goto end;
279 }
280 if (ret != len) {
281 ret = -EINVAL;
282 goto end;
283 }
284 }
285 ret = ustcomm_recv_app_reply(sock, &lur, lum.handle, lum.cmd);
286 if (ret < 0) {
287 goto end;
57773204 288 }
32ce8569
MD
289 context_data->handle = -1;
290 DBG("Context created successfully");
57773204 291 *_context_data = context_data;
53f0df51
JG
292 context_data = NULL;
293end:
294 free(context_data);
295 free(buf);
57773204
MD
296 return ret;
297}
298
cd54f6d9
MD
299int ustctl_set_filter(int sock, struct lttng_ust_filter_bytecode *bytecode,
300 struct lttng_ust_object_data *obj_data)
301{
302 struct ustcomm_ust_msg lum;
303 struct ustcomm_ust_reply lur;
304 int ret;
305
306 if (!obj_data)
307 return -EINVAL;
308
309 memset(&lum, 0, sizeof(lum));
310 lum.handle = obj_data->handle;
311 lum.cmd = LTTNG_UST_FILTER;
312 lum.u.filter.data_size = bytecode->len;
313 lum.u.filter.reloc_offset = bytecode->reloc_offset;
e695af51 314 lum.u.filter.seqnum = bytecode->seqnum;
cd54f6d9
MD
315
316 ret = ustcomm_send_app_msg(sock, &lum);
317 if (ret)
318 return ret;
cd54f6d9
MD
319 /* send var len bytecode */
320 ret = ustcomm_send_unix_sock(sock, bytecode->data,
321 bytecode->len);
322 if (ret < 0) {
323 return ret;
324 }
7bc53e94
MD
325 if (ret != bytecode->len)
326 return -EINVAL;
327 return ustcomm_recv_app_reply(sock, &lur, lum.handle, lum.cmd);
cd54f6d9
MD
328}
329
da57c034
JI
330int ustctl_set_exclusion(int sock, struct lttng_ust_event_exclusion *exclusion,
331 struct lttng_ust_object_data *obj_data)
332{
333 struct ustcomm_ust_msg lum;
334 struct ustcomm_ust_reply lur;
335 int ret;
336
337 if (!obj_data) {
338 return -EINVAL;
339 }
340
341 memset(&lum, 0, sizeof(lum));
342 lum.handle = obj_data->handle;
343 lum.cmd = LTTNG_UST_EXCLUSION;
344 lum.u.exclusion.count = exclusion->count;
345
346 ret = ustcomm_send_app_msg(sock, &lum);
347 if (ret) {
348 return ret;
349 }
350
1628366f 351 /* send var len exclusion names */
da57c034
JI
352 ret = ustcomm_send_unix_sock(sock,
353 exclusion->names,
354 exclusion->count * LTTNG_UST_SYM_NAME_LEN);
355 if (ret < 0) {
356 return ret;
357 }
358 if (ret != exclusion->count * LTTNG_UST_SYM_NAME_LEN) {
359 return -EINVAL;
360 }
361 return ustcomm_recv_app_reply(sock, &lur, lum.handle, lum.cmd);
362}
363
57773204 364/* Enable event, channel and session ioctl */
61f02aea 365int ustctl_enable(int sock, struct lttng_ust_object_data *object)
57773204
MD
366{
367 struct ustcomm_ust_msg lum;
368 struct ustcomm_ust_reply lur;
369 int ret;
370
9bfc503d
MD
371 if (!object)
372 return -EINVAL;
373
57773204
MD
374 memset(&lum, 0, sizeof(lum));
375 lum.handle = object->handle;
376 lum.cmd = LTTNG_UST_ENABLE;
377 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
378 if (ret)
379 return ret;
380 DBG("enabled handle %u", object->handle);
381 return 0;
382}
383
384/* Disable event, channel and session ioctl */
61f02aea 385int ustctl_disable(int sock, struct lttng_ust_object_data *object)
57773204
MD
386{
387 struct ustcomm_ust_msg lum;
388 struct ustcomm_ust_reply lur;
389 int ret;
390
9bfc503d
MD
391 if (!object)
392 return -EINVAL;
393
57773204
MD
394 memset(&lum, 0, sizeof(lum));
395 lum.handle = object->handle;
396 lum.cmd = LTTNG_UST_DISABLE;
397 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
398 if (ret)
399 return ret;
400 DBG("disable handle %u", object->handle);
401 return 0;
402}
403
4a6ca058 404int ustctl_start_session(int sock, int handle)
57773204 405{
61f02aea 406 struct lttng_ust_object_data obj;
4a6ca058
MD
407
408 obj.handle = handle;
409 return ustctl_enable(sock, &obj);
57773204
MD
410}
411
4a6ca058 412int ustctl_stop_session(int sock, int handle)
57773204 413{
61f02aea 414 struct lttng_ust_object_data obj;
4a6ca058
MD
415
416 obj.handle = handle;
417 return ustctl_disable(sock, &obj);
57773204
MD
418}
419
57773204
MD
420int ustctl_tracepoint_list(int sock)
421{
b115631f
MD
422 struct ustcomm_ust_msg lum;
423 struct ustcomm_ust_reply lur;
424 int ret, tp_list_handle;
425
426 memset(&lum, 0, sizeof(lum));
427 lum.handle = LTTNG_UST_ROOT_HANDLE;
428 lum.cmd = LTTNG_UST_TRACEPOINT_LIST;
429 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
430 if (ret)
431 return ret;
432 tp_list_handle = lur.ret_val;
433 DBG("received tracepoint list handle %u", tp_list_handle);
434 return tp_list_handle;
435}
436
437int ustctl_tracepoint_list_get(int sock, int tp_list_handle,
cbef6901 438 struct lttng_ust_tracepoint_iter *iter)
b115631f
MD
439{
440 struct ustcomm_ust_msg lum;
441 struct ustcomm_ust_reply lur;
442 int ret;
443
9bfc503d
MD
444 if (!iter)
445 return -EINVAL;
446
b115631f
MD
447 memset(&lum, 0, sizeof(lum));
448 lum.handle = tp_list_handle;
449 lum.cmd = LTTNG_UST_TRACEPOINT_LIST_GET;
450 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
451 if (ret)
452 return ret;
882a56d7 453 DBG("received tracepoint list entry name %s loglevel %d",
cbef6901 454 lur.u.tracepoint.name,
882a56d7 455 lur.u.tracepoint.loglevel);
cbef6901 456 memcpy(iter, &lur.u.tracepoint, sizeof(*iter));
b115631f 457 return 0;
57773204
MD
458}
459
40003310
MD
460int ustctl_tracepoint_field_list(int sock)
461{
462 struct ustcomm_ust_msg lum;
463 struct ustcomm_ust_reply lur;
464 int ret, tp_field_list_handle;
465
466 memset(&lum, 0, sizeof(lum));
467 lum.handle = LTTNG_UST_ROOT_HANDLE;
468 lum.cmd = LTTNG_UST_TRACEPOINT_FIELD_LIST;
469 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
470 if (ret)
471 return ret;
472 tp_field_list_handle = lur.ret_val;
473 DBG("received tracepoint field list handle %u", tp_field_list_handle);
474 return tp_field_list_handle;
475}
476
477int ustctl_tracepoint_field_list_get(int sock, int tp_field_list_handle,
478 struct lttng_ust_field_iter *iter)
479{
480 struct ustcomm_ust_msg lum;
481 struct ustcomm_ust_reply lur;
482 int ret;
483 ssize_t len;
484
485 if (!iter)
486 return -EINVAL;
487
488 memset(&lum, 0, sizeof(lum));
489 lum.handle = tp_field_list_handle;
490 lum.cmd = LTTNG_UST_TRACEPOINT_FIELD_LIST_GET;
491 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
492 if (ret)
493 return ret;
494 len = ustcomm_recv_unix_sock(sock, iter, sizeof(*iter));
495 if (len != sizeof(*iter)) {
496 return -EINVAL;
497 }
498 DBG("received tracepoint field list entry event_name %s event_loglevel %d field_name %s field_type %d",
499 iter->event_name,
500 iter->loglevel,
501 iter->field_name,
502 iter->type);
503 return 0;
504}
505
57773204
MD
506int ustctl_tracer_version(int sock, struct lttng_ust_tracer_version *v)
507{
508 struct ustcomm_ust_msg lum;
509 struct ustcomm_ust_reply lur;
510 int ret;
511
9bfc503d
MD
512 if (!v)
513 return -EINVAL;
514
57773204
MD
515 memset(&lum, 0, sizeof(lum));
516 lum.handle = LTTNG_UST_ROOT_HANDLE;
517 lum.cmd = LTTNG_UST_TRACER_VERSION;
518 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
519 if (ret)
520 return ret;
521 memcpy(v, &lur.u.version, sizeof(*v));
522 DBG("received tracer version");
523 return 0;
524}
525
526int ustctl_wait_quiescent(int sock)
527{
528 struct ustcomm_ust_msg lum;
529 struct ustcomm_ust_reply lur;
530 int ret;
531
532 memset(&lum, 0, sizeof(lum));
533 lum.handle = LTTNG_UST_ROOT_HANDLE;
534 lum.cmd = LTTNG_UST_WAIT_QUIESCENT;
535 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
536 if (ret)
537 return ret;
538 DBG("waited for quiescent state");
539 return 0;
540}
541
542int ustctl_calibrate(int sock, struct lttng_ust_calibrate *calibrate)
543{
9bfc503d
MD
544 if (!calibrate)
545 return -EINVAL;
546
57773204
MD
547 return -ENOSYS;
548}
549
f1fffc57
MD
550int ustctl_sock_flush_buffer(int sock, struct lttng_ust_object_data *object)
551{
552 struct ustcomm_ust_msg lum;
553 struct ustcomm_ust_reply lur;
554 int ret;
555
9bfc503d
MD
556 if (!object)
557 return -EINVAL;
558
f1fffc57
MD
559 memset(&lum, 0, sizeof(lum));
560 lum.handle = object->handle;
561 lum.cmd = LTTNG_UST_FLUSH_BUFFER;
562 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
563 if (ret)
564 return ret;
565 DBG("flushed buffer handle %u", object->handle);
566 return 0;
567}
568
74d81a6c
MD
569static
570int ustctl_send_channel(int sock,
571 enum lttng_ust_chan_type type,
572 void *data,
573 uint64_t size,
ff0f5728 574 int wakeup_fd,
74d81a6c
MD
575 int send_fd_only)
576{
577 ssize_t len;
578
579 if (!send_fd_only) {
580 /* Send mmap size */
581 len = ustcomm_send_unix_sock(sock, &size, sizeof(size));
582 if (len != sizeof(size)) {
583 if (len < 0)
584 return len;
585 else
586 return -EIO;
587 }
588
589 /* Send channel type */
590 len = ustcomm_send_unix_sock(sock, &type, sizeof(type));
591 if (len != sizeof(type)) {
592 if (len < 0)
593 return len;
594 else
595 return -EIO;
596 }
597 }
598
599 /* Send channel data */
600 len = ustcomm_send_unix_sock(sock, data, size);
601 if (len != size) {
602 if (len < 0)
603 return len;
604 else
605 return -EIO;
606 }
57773204 607
ff0f5728
MD
608 /* Send wakeup fd */
609 len = ustcomm_send_fds_unix_sock(sock, &wakeup_fd, 1);
610 if (len <= 0) {
611 if (len < 0)
612 return len;
613 else
614 return -EIO;
615 }
74d81a6c
MD
616 return 0;
617}
618
619static
620int ustctl_send_stream(int sock,
621 uint32_t stream_nr,
622 uint64_t memory_map_size,
623 int shm_fd, int wakeup_fd,
624 int send_fd_only)
57773204 625{
74d81a6c
MD
626 ssize_t len;
627 int fds[2];
628
629 if (!send_fd_only) {
630 if (shm_fd < 0) {
631 /* finish iteration */
632 uint64_t v = -1;
633
634 len = ustcomm_send_unix_sock(sock, &v, sizeof(v));
635 if (len != sizeof(v)) {
636 if (len < 0)
637 return len;
638 else
639 return -EIO;
640 }
641 return 0;
642 }
643
644 /* Send mmap size */
645 len = ustcomm_send_unix_sock(sock, &memory_map_size,
646 sizeof(memory_map_size));
647 if (len != sizeof(memory_map_size)) {
648 if (len < 0)
649 return len;
650 else
651 return -EIO;
652 }
653
654 /* Send stream nr */
655 len = ustcomm_send_unix_sock(sock, &stream_nr,
656 sizeof(stream_nr));
657 if (len != sizeof(stream_nr)) {
658 if (len < 0)
659 return len;
660 else
661 return -EIO;
662 }
663 }
664
665 /* Send shm fd and wakeup fd */
666 fds[0] = shm_fd;
667 fds[1] = wakeup_fd;
668 len = ustcomm_send_fds_unix_sock(sock, fds, 2);
669 if (len <= 0) {
670 if (len < 0)
671 return len;
672 else
673 return -EIO;
674 }
675 return 0;
676}
677
678int ustctl_recv_channel_from_consumer(int sock,
679 struct lttng_ust_object_data **_channel_data)
680{
681 struct lttng_ust_object_data *channel_data;
682 ssize_t len;
ff0f5728 683 int wakeup_fd;
7a784989 684 int ret;
57773204 685
74d81a6c
MD
686 channel_data = zmalloc(sizeof(*channel_data));
687 if (!channel_data) {
688 ret = -ENOMEM;
689 goto error_alloc;
690 }
691 channel_data->type = LTTNG_UST_OBJECT_TYPE_CHANNEL;
12f3dabc 692 channel_data->handle = -1;
74d81a6c
MD
693
694 /* recv mmap size */
695 len = ustcomm_recv_unix_sock(sock, &channel_data->size,
696 sizeof(channel_data->size));
697 if (len != sizeof(channel_data->size)) {
698 if (len < 0)
699 ret = len;
700 else
701 ret = -EINVAL;
702 goto error;
703 }
9bfc503d 704
74d81a6c
MD
705 /* recv channel type */
706 len = ustcomm_recv_unix_sock(sock, &channel_data->u.channel.type,
707 sizeof(channel_data->u.channel.type));
708 if (len != sizeof(channel_data->u.channel.type)) {
709 if (len < 0)
710 ret = len;
711 else
712 ret = -EINVAL;
713 goto error;
714 }
715
716 /* recv channel data */
717 channel_data->u.channel.data = zmalloc(channel_data->size);
718 if (!channel_data->u.channel.data) {
719 ret = -ENOMEM;
720 goto error;
721 }
722 len = ustcomm_recv_unix_sock(sock, channel_data->u.channel.data,
723 channel_data->size);
724 if (len != channel_data->size) {
725 if (len < 0)
726 ret = len;
727 else
728 ret = -EINVAL;
729 goto error_recv_data;
730 }
ff0f5728
MD
731 /* recv wakeup fd */
732 len = ustcomm_recv_fds_unix_sock(sock, &wakeup_fd, 1);
733 if (len <= 0) {
734 if (len < 0) {
735 ret = len;
736 goto error_recv_data;
737 } else {
738 ret = -EIO;
739 goto error_recv_data;
740 }
741 }
742 channel_data->u.channel.wakeup_fd = wakeup_fd;
74d81a6c
MD
743 *_channel_data = channel_data;
744 return 0;
745
746error_recv_data:
747 free(channel_data->u.channel.data);
748error:
749 free(channel_data);
750error_alloc:
751 return ret;
752}
753
754int ustctl_recv_stream_from_consumer(int sock,
755 struct lttng_ust_object_data **_stream_data)
756{
757 struct lttng_ust_object_data *stream_data;
758 ssize_t len;
759 int ret;
760 int fds[2];
761
762 stream_data = zmalloc(sizeof(*stream_data));
763 if (!stream_data) {
764 ret = -ENOMEM;
765 goto error_alloc;
57773204 766 }
74d81a6c
MD
767
768 stream_data->type = LTTNG_UST_OBJECT_TYPE_STREAM;
769 stream_data->handle = -1;
770
771 /* recv mmap size */
772 len = ustcomm_recv_unix_sock(sock, &stream_data->size,
773 sizeof(stream_data->size));
774 if (len != sizeof(stream_data->size)) {
775 if (len < 0)
776 ret = len;
777 else
778 ret = -EINVAL;
779 goto error;
780 }
781 if (stream_data->size == -1) {
782 ret = -LTTNG_UST_ERR_NOENT;
783 goto error;
784 }
785
786 /* recv stream nr */
787 len = ustcomm_recv_unix_sock(sock, &stream_data->u.stream.stream_nr,
788 sizeof(stream_data->u.stream.stream_nr));
789 if (len != sizeof(stream_data->u.stream.stream_nr)) {
790 if (len < 0)
791 ret = len;
792 else
793 ret = -EINVAL;
794 goto error;
795 }
796
797 /* recv shm fd and wakeup fd */
798 len = ustcomm_recv_fds_unix_sock(sock, fds, 2);
799 if (len <= 0) {
800 if (len < 0) {
801 ret = len;
802 goto error;
803 } else {
804 ret = -EIO;
805 goto error;
0bfe09ec 806 }
0bfe09ec 807 }
74d81a6c
MD
808 stream_data->u.stream.shm_fd = fds[0];
809 stream_data->u.stream.wakeup_fd = fds[1];
810 *_stream_data = stream_data;
811 return 0;
0bfe09ec 812
74d81a6c
MD
813error:
814 free(stream_data);
815error_alloc:
816 return ret;
817}
818
819int ustctl_send_channel_to_ust(int sock, int session_handle,
820 struct lttng_ust_object_data *channel_data)
821{
822 struct ustcomm_ust_msg lum;
823 struct ustcomm_ust_reply lur;
824 int ret;
825
826 if (!channel_data)
827 return -EINVAL;
828
829 memset(&lum, 0, sizeof(lum));
830 lum.handle = session_handle;
831 lum.cmd = LTTNG_UST_CHANNEL;
832 lum.u.channel.len = channel_data->size;
833 lum.u.channel.type = channel_data->u.channel.type;
834 ret = ustcomm_send_app_msg(sock, &lum);
835 if (ret)
836 return ret;
837
838 ret = ustctl_send_channel(sock,
839 channel_data->u.channel.type,
840 channel_data->u.channel.data,
841 channel_data->size,
ff0f5728 842 channel_data->u.channel.wakeup_fd,
74d81a6c
MD
843 1);
844 if (ret)
845 return ret;
846 ret = ustcomm_recv_app_reply(sock, &lur, lum.handle, lum.cmd);
847 if (!ret) {
7f2348b8 848 channel_data->handle = lur.ret_val;
57773204 849 }
74d81a6c
MD
850 return ret;
851}
852
853int ustctl_send_stream_to_ust(int sock,
854 struct lttng_ust_object_data *channel_data,
855 struct lttng_ust_object_data *stream_data)
856{
857 struct ustcomm_ust_msg lum;
858 struct ustcomm_ust_reply lur;
859 int ret;
860
861 memset(&lum, 0, sizeof(lum));
862 lum.handle = channel_data->handle;
863 lum.cmd = LTTNG_UST_STREAM;
864 lum.u.stream.len = stream_data->size;
865 lum.u.stream.stream_nr = stream_data->u.stream.stream_nr;
866 ret = ustcomm_send_app_msg(sock, &lum);
867 if (ret)
868 return ret;
869
870 assert(stream_data);
871 assert(stream_data->type == LTTNG_UST_OBJECT_TYPE_STREAM);
872
873 ret = ustctl_send_stream(sock,
874 stream_data->u.stream.stream_nr,
875 stream_data->size,
876 stream_data->u.stream.shm_fd,
877 stream_data->u.stream.wakeup_fd, 1);
878 if (ret)
879 return ret;
880 return ustcomm_recv_app_reply(sock, &lur, lum.handle, lum.cmd);
881}
882
12f3dabc
MD
883int ustctl_duplicate_ust_object_data(struct lttng_ust_object_data **dest,
884 struct lttng_ust_object_data *src)
885{
886 struct lttng_ust_object_data *obj;
887 int ret;
888
889 if (src->handle != -1) {
890 ret = -EINVAL;
891 goto error;
892 }
893
894 obj = zmalloc(sizeof(*obj));
895 if (!obj) {
896 ret = -ENOMEM;
897 goto error;
898 }
899
900 obj->type = src->type;
901 obj->handle = src->handle;
902 obj->size = src->size;
903
904 switch (obj->type) {
905 case LTTNG_UST_OBJECT_TYPE_CHANNEL:
906 {
907 obj->u.channel.type = src->u.channel.type;
908 if (src->u.channel.wakeup_fd >= 0) {
909 obj->u.channel.wakeup_fd =
910 dup(src->u.channel.wakeup_fd);
911 if (obj->u.channel.wakeup_fd < 0) {
912 ret = errno;
913 goto chan_error_wakeup_fd;
914 }
915 } else {
916 obj->u.channel.wakeup_fd =
917 src->u.channel.wakeup_fd;
918 }
919 obj->u.channel.data = zmalloc(obj->size);
920 if (!obj->u.channel.data) {
921 ret = -ENOMEM;
922 goto chan_error_alloc;
923 }
924 memcpy(obj->u.channel.data, src->u.channel.data, obj->size);
925 break;
926
927 chan_error_alloc:
928 if (src->u.channel.wakeup_fd >= 0) {
929 int closeret;
930
931 closeret = close(obj->u.channel.wakeup_fd);
932 if (closeret) {
933 PERROR("close");
934 }
935 }
936 chan_error_wakeup_fd:
937 goto error_type;
938
939 }
940
941 case LTTNG_UST_OBJECT_TYPE_STREAM:
942 {
943 obj->u.stream.stream_nr = src->u.stream.stream_nr;
944 if (src->u.stream.wakeup_fd >= 0) {
945 obj->u.stream.wakeup_fd =
946 dup(src->u.stream.wakeup_fd);
947 if (obj->u.stream.wakeup_fd < 0) {
948 ret = errno;
949 goto stream_error_wakeup_fd;
950 }
951 } else {
952 obj->u.stream.wakeup_fd =
953 src->u.stream.wakeup_fd;
954 }
955
956 if (src->u.stream.shm_fd >= 0) {
957 obj->u.stream.shm_fd =
958 dup(src->u.stream.shm_fd);
959 if (obj->u.stream.shm_fd < 0) {
960 ret = errno;
961 goto stream_error_shm_fd;
962 }
963 } else {
964 obj->u.stream.shm_fd =
965 src->u.stream.shm_fd;
966 }
967 break;
968
969 stream_error_shm_fd:
970 if (src->u.stream.wakeup_fd >= 0) {
971 int closeret;
972
973 closeret = close(obj->u.stream.wakeup_fd);
974 if (closeret) {
975 PERROR("close");
976 }
977 }
978 stream_error_wakeup_fd:
979 goto error_type;
980 }
981
982 default:
983 ret = -EINVAL;
984 goto error_type;
985 }
986
987 *dest = obj;
988 return 0;
989
990error_type:
991 free(obj);
992error:
993 return ret;
994}
995
74d81a6c
MD
996
997/* Buffer operations */
998
5ea386c3
MD
999int ustctl_get_nr_stream_per_channel(void)
1000{
1001 return num_possible_cpus();
1002}
1003
74d81a6c 1004struct ustctl_consumer_channel *
5ea386c3
MD
1005 ustctl_create_channel(struct ustctl_consumer_channel_attr *attr,
1006 const int *stream_fds, int nr_stream_fds)
74d81a6c
MD
1007{
1008 struct ustctl_consumer_channel *chan;
1009 const char *transport_name;
1010 struct lttng_transport *transport;
1011
1012 switch (attr->type) {
1013 case LTTNG_UST_CHAN_PER_CPU:
1014 if (attr->output == LTTNG_UST_MMAP) {
34a91bdb
MD
1015 if (attr->overwrite) {
1016 if (attr->read_timer_interval == 0) {
1017 transport_name = "relay-overwrite-mmap";
1018 } else {
1019 transport_name = "relay-overwrite-rt-mmap";
1020 }
1021 } else {
1022 if (attr->read_timer_interval == 0) {
1023 transport_name = "relay-discard-mmap";
1024 } else {
1025 transport_name = "relay-discard-rt-mmap";
1026 }
1027 }
74d81a6c
MD
1028 } else {
1029 return NULL;
1030 }
c1fca457 1031 break;
74d81a6c
MD
1032 case LTTNG_UST_CHAN_METADATA:
1033 if (attr->output == LTTNG_UST_MMAP)
1034 transport_name = "relay-metadata-mmap";
1035 else
1036 return NULL;
c1fca457
MD
1037 break;
1038 default:
74d81a6c 1039 transport_name = "<unknown>";
c1fca457
MD
1040 return NULL;
1041 }
74d81a6c
MD
1042
1043 transport = lttng_transport_find(transport_name);
1044 if (!transport) {
1045 DBG("LTTng transport %s not found\n",
32ce8569 1046 transport_name);
74d81a6c 1047 return NULL;
7a784989 1048 }
74d81a6c
MD
1049
1050 chan = zmalloc(sizeof(*chan));
1051 if (!chan)
1052 return NULL;
1053
1054 chan->chan = transport->ops.channel_create(transport_name, NULL,
32ce8569 1055 attr->subbuf_size, attr->num_subbuf,
74d81a6c 1056 attr->switch_timer_interval,
32ce8569 1057 attr->read_timer_interval,
a9ff648c 1058 attr->uuid, attr->chan_id,
5ea386c3 1059 stream_fds, nr_stream_fds);
74d81a6c
MD
1060 if (!chan->chan) {
1061 goto chan_error;
1062 }
1063 chan->chan->ops = &transport->ops;
1064 memcpy(&chan->attr, attr, sizeof(chan->attr));
cb7378b3
MD
1065 chan->wait_fd = ustctl_channel_get_wait_fd(chan);
1066 chan->wakeup_fd = ustctl_channel_get_wakeup_fd(chan);
74d81a6c
MD
1067 return chan;
1068
1069chan_error:
1070 free(chan);
1071 return NULL;
57773204
MD
1072}
1073
74d81a6c 1074void ustctl_destroy_channel(struct ustctl_consumer_channel *chan)
57773204 1075{
b24e4e91
MD
1076 (void) ustctl_channel_close_wait_fd(chan);
1077 (void) ustctl_channel_close_wakeup_fd(chan);
74d81a6c
MD
1078 chan->chan->ops->channel_destroy(chan->chan);
1079 free(chan);
1080}
1081
1082int ustctl_send_channel_to_sessiond(int sock,
1083 struct ustctl_consumer_channel *channel)
1084{
1085 struct shm_object_table *table;
57773204 1086
74d81a6c
MD
1087 table = channel->chan->handle->table;
1088 if (table->size <= 0)
9bfc503d 1089 return -EINVAL;
74d81a6c
MD
1090 return ustctl_send_channel(sock,
1091 channel->attr.type,
1092 table->objects[0].memory_map,
1093 table->objects[0].memory_map_size,
ff0f5728 1094 channel->wakeup_fd,
74d81a6c
MD
1095 0);
1096}
9bfc503d 1097
74d81a6c
MD
1098int ustctl_send_stream_to_sessiond(int sock,
1099 struct ustctl_consumer_stream *stream)
1100{
1101 if (!stream)
1102 return ustctl_send_stream(sock, -1U, -1U, -1, -1, 0);
1103
1104 return ustctl_send_stream(sock,
1105 stream->cpu,
1106 stream->memory_map_size,
1107 stream->shm_fd, stream->wakeup_fd,
1108 0);
57773204
MD
1109}
1110
c9023c93
MD
1111int ustctl_write_metadata_to_channel(
1112 struct ustctl_consumer_channel *channel,
1113 const char *metadata_str, /* NOT null-terminated */
1114 size_t len) /* metadata length */
1115{
1116 struct lttng_ust_lib_ring_buffer_ctx ctx;
1117 struct lttng_channel *chan = channel->chan;
1118 const char *str = metadata_str;
1119 int ret = 0, waitret;
1120 size_t reserve_len, pos;
1121
1122 for (pos = 0; pos < len; pos += reserve_len) {
1123 reserve_len = min_t(size_t,
1124 chan->ops->packet_avail_size(chan->chan, chan->handle),
1125 len - pos);
1126 lib_ring_buffer_ctx_init(&ctx, chan->chan, NULL, reserve_len,
53569322 1127 sizeof(char), -1, chan->handle, NULL);
c9023c93
MD
1128 /*
1129 * We don't care about metadata buffer's records lost
1130 * count, because we always retry here. Report error if
1131 * we need to bail out after timeout or being
1132 * interrupted.
1133 */
1134 waitret = wait_cond_interruptible_timeout(
1135 ({
1136 ret = chan->ops->event_reserve(&ctx, 0);
1137 ret != -ENOBUFS || !ret;
1138 }),
1139 LTTNG_METADATA_TIMEOUT_MSEC);
1140 if (waitret == -ETIMEDOUT || waitret == -EINTR || ret) {
1141 DBG("LTTng: Failure to write metadata to buffers (%s)\n",
1142 waitret == -EINTR ? "interrupted" :
1143 (ret == -ENOBUFS ? "timeout" : "I/O error"));
1144 if (waitret == -EINTR)
1145 ret = waitret;
1146 goto end;
1147 }
1148 chan->ops->event_write(&ctx, &str[pos], reserve_len);
1149 chan->ops->event_commit(&ctx);
1150 }
1151end:
1152 return ret;
1153}
1154
3ef94b0e
JD
1155/*
1156 * Write at most one packet in the channel.
1157 * Returns the number of bytes written on success, < 0 on error.
1158 */
1159ssize_t ustctl_write_one_packet_to_channel(
1160 struct ustctl_consumer_channel *channel,
1161 const char *metadata_str, /* NOT null-terminated */
1162 size_t len) /* metadata length */
1163{
1164 struct lttng_ust_lib_ring_buffer_ctx ctx;
1165 struct lttng_channel *chan = channel->chan;
1166 const char *str = metadata_str;
1167 ssize_t reserve_len;
1168 int ret;
1169
1170 reserve_len = min_t(ssize_t,
1171 chan->ops->packet_avail_size(chan->chan, chan->handle),
1172 len);
1173 lib_ring_buffer_ctx_init(&ctx, chan->chan, NULL, reserve_len,
53569322 1174 sizeof(char), -1, chan->handle, NULL);
3ef94b0e
JD
1175 ret = chan->ops->event_reserve(&ctx, 0);
1176 if (ret != 0) {
1177 DBG("LTTng: event reservation failed");
1178 assert(ret < 0);
1179 reserve_len = ret;
1180 goto end;
1181 }
1182 chan->ops->event_write(&ctx, str, reserve_len);
1183 chan->ops->event_commit(&ctx);
1184
1185end:
1186 return reserve_len;
1187}
1188
ff0f5728
MD
1189int ustctl_channel_close_wait_fd(struct ustctl_consumer_channel *consumer_chan)
1190{
1191 struct channel *chan;
cb7378b3 1192 int ret;
ff0f5728
MD
1193
1194 chan = consumer_chan->chan->chan;
cb7378b3 1195 ret = ring_buffer_channel_close_wait_fd(&chan->backend.config,
ff0f5728 1196 chan, chan->handle);
cb7378b3
MD
1197 if (!ret)
1198 consumer_chan->wait_fd = -1;
1199 return ret;
ff0f5728
MD
1200}
1201
1202int ustctl_channel_close_wakeup_fd(struct ustctl_consumer_channel *consumer_chan)
1203{
1204 struct channel *chan;
cb7378b3 1205 int ret;
ff0f5728
MD
1206
1207 chan = consumer_chan->chan->chan;
cb7378b3 1208 ret = ring_buffer_channel_close_wakeup_fd(&chan->backend.config,
ff0f5728 1209 chan, chan->handle);
cb7378b3
MD
1210 if (!ret)
1211 consumer_chan->wakeup_fd = -1;
1212 return ret;
ff0f5728
MD
1213}
1214
74d81a6c 1215int ustctl_stream_close_wait_fd(struct ustctl_consumer_stream *stream)
5224b5c8
MD
1216{
1217 struct channel *chan;
1218
74d81a6c 1219 chan = stream->chan->chan->chan;
ff0f5728 1220 return ring_buffer_stream_close_wait_fd(&chan->backend.config,
74d81a6c 1221 chan, stream->handle, stream->cpu);
5224b5c8
MD
1222}
1223
74d81a6c 1224int ustctl_stream_close_wakeup_fd(struct ustctl_consumer_stream *stream)
6e922b24 1225{
66bdd22a 1226 struct channel *chan;
74d81a6c
MD
1227
1228 chan = stream->chan->chan->chan;
ff0f5728 1229 return ring_buffer_stream_close_wakeup_fd(&chan->backend.config,
74d81a6c
MD
1230 chan, stream->handle, stream->cpu);
1231}
1232
1233struct ustctl_consumer_stream *
1234 ustctl_create_stream(struct ustctl_consumer_channel *channel,
1235 int cpu)
1236{
1237 struct ustctl_consumer_stream *stream;
1238 struct lttng_ust_shm_handle *handle;
1239 struct channel *chan;
1240 int shm_fd, wait_fd, wakeup_fd;
1241 uint64_t memory_map_size;
4cfec15c 1242 struct lttng_ust_lib_ring_buffer *buf;
6e922b24
MD
1243 int ret;
1244
74d81a6c
MD
1245 if (!channel)
1246 return NULL;
1247 handle = channel->chan->handle;
9bfc503d
MD
1248 if (!handle)
1249 return NULL;
1250
74d81a6c 1251 chan = channel->chan->chan;
6e922b24 1252 buf = channel_get_ring_buffer(&chan->backend.config,
74d81a6c
MD
1253 chan, cpu, handle, &shm_fd, &wait_fd,
1254 &wakeup_fd, &memory_map_size);
6e922b24
MD
1255 if (!buf)
1256 return NULL;
74d81a6c 1257 ret = lib_ring_buffer_open_read(buf, handle);
6e922b24
MD
1258 if (ret)
1259 return NULL;
74d81a6c
MD
1260
1261 stream = zmalloc(sizeof(*stream));
1262 if (!stream)
1263 goto alloc_error;
1264 stream->handle = handle;
1265 stream->buf = buf;
1266 stream->chan = channel;
1267 stream->shm_fd = shm_fd;
1268 stream->wait_fd = wait_fd;
1269 stream->wakeup_fd = wakeup_fd;
1270 stream->memory_map_size = memory_map_size;
1271 stream->cpu = cpu;
1272 return stream;
1273
1274alloc_error:
1275 return NULL;
1276}
1277
1278void ustctl_destroy_stream(struct ustctl_consumer_stream *stream)
1279{
1280 struct lttng_ust_lib_ring_buffer *buf;
1281 struct ustctl_consumer_channel *consumer_chan;
1282
1283 assert(stream);
1284 buf = stream->buf;
1285 consumer_chan = stream->chan;
b24e4e91
MD
1286 (void) ustctl_stream_close_wait_fd(stream);
1287 (void) ustctl_stream_close_wakeup_fd(stream);
74d81a6c
MD
1288 lib_ring_buffer_release_read(buf, consumer_chan->chan->handle);
1289 free(stream);
6e922b24
MD
1290}
1291
ff0f5728
MD
1292int ustctl_channel_get_wait_fd(struct ustctl_consumer_channel *chan)
1293{
1294 if (!chan)
1295 return -EINVAL;
1296 return shm_get_wait_fd(chan->chan->handle,
1297 &chan->chan->handle->chan._ref);
1298}
1299
1300int ustctl_channel_get_wakeup_fd(struct ustctl_consumer_channel *chan)
1301{
1302 if (!chan)
1303 return -EINVAL;
1304 return shm_get_wakeup_fd(chan->chan->handle,
1305 &chan->chan->handle->chan._ref);
1306}
1307
1308int ustctl_stream_get_wait_fd(struct ustctl_consumer_stream *stream)
6e922b24 1309{
74d81a6c
MD
1310 struct lttng_ust_lib_ring_buffer *buf;
1311 struct ustctl_consumer_channel *consumer_chan;
1312
1313 if (!stream)
1314 return -EINVAL;
1315 buf = stream->buf;
1316 consumer_chan = stream->chan;
1317 return shm_get_wait_fd(consumer_chan->chan->handle, &buf->self._ref);
1318}
1319
ff0f5728 1320int ustctl_stream_get_wakeup_fd(struct ustctl_consumer_stream *stream)
74d81a6c
MD
1321{
1322 struct lttng_ust_lib_ring_buffer *buf;
1323 struct ustctl_consumer_channel *consumer_chan;
1324
1325 if (!stream)
1326 return -EINVAL;
1327 buf = stream->buf;
1328 consumer_chan = stream->chan;
1329 return shm_get_wakeup_fd(consumer_chan->chan->handle, &buf->self._ref);
6e922b24
MD
1330}
1331
57773204
MD
1332/* For mmap mode, readable without "get" operation */
1333
74d81a6c 1334void *ustctl_get_mmap_base(struct ustctl_consumer_stream *stream)
9095efe9 1335{
74d81a6c
MD
1336 struct lttng_ust_lib_ring_buffer *buf;
1337 struct ustctl_consumer_channel *consumer_chan;
1338
1339 if (!stream)
9bfc503d 1340 return NULL;
74d81a6c
MD
1341 buf = stream->buf;
1342 consumer_chan = stream->chan;
1343 return shmp(consumer_chan->chan->handle, buf->backend.memory_map);
9095efe9
MD
1344}
1345
57773204 1346/* returns the length to mmap. */
74d81a6c 1347int ustctl_get_mmap_len(struct ustctl_consumer_stream *stream,
57773204
MD
1348 unsigned long *len)
1349{
74d81a6c 1350 struct ustctl_consumer_channel *consumer_chan;
57773204 1351 unsigned long mmap_buf_len;
66bdd22a 1352 struct channel *chan;
57773204 1353
74d81a6c 1354 if (!stream)
9bfc503d 1355 return -EINVAL;
74d81a6c
MD
1356 consumer_chan = stream->chan;
1357 chan = consumer_chan->chan->chan;
57773204
MD
1358 if (chan->backend.config.output != RING_BUFFER_MMAP)
1359 return -EINVAL;
1360 mmap_buf_len = chan->backend.buf_size;
1361 if (chan->backend.extra_reader_sb)
1362 mmap_buf_len += chan->backend.subbuf_size;
1363 if (mmap_buf_len > INT_MAX)
1364 return -EFBIG;
1365 *len = mmap_buf_len;
1366 return 0;
1367}
1368
1369/* returns the maximum size for sub-buffers. */
74d81a6c 1370int ustctl_get_max_subbuf_size(struct ustctl_consumer_stream *stream,
57773204
MD
1371 unsigned long *len)
1372{
74d81a6c 1373 struct ustctl_consumer_channel *consumer_chan;
66bdd22a 1374 struct channel *chan;
57773204 1375
74d81a6c 1376 if (!stream)
9bfc503d 1377 return -EINVAL;
74d81a6c
MD
1378 consumer_chan = stream->chan;
1379 chan = consumer_chan->chan->chan;
57773204
MD
1380 *len = chan->backend.subbuf_size;
1381 return 0;
1382}
1383
1384/*
1385 * For mmap mode, operate on the current packet (between get/put or
1386 * get_next/put_next).
1387 */
1388
1389/* returns the offset of the subbuffer belonging to the mmap reader. */
74d81a6c
MD
1390int ustctl_get_mmap_read_offset(struct ustctl_consumer_stream *stream,
1391 unsigned long *off)
57773204 1392{
66bdd22a 1393 struct channel *chan;
57773204 1394 unsigned long sb_bindex;
74d81a6c
MD
1395 struct lttng_ust_lib_ring_buffer *buf;
1396 struct ustctl_consumer_channel *consumer_chan;
34daae3e
MD
1397 struct lttng_ust_lib_ring_buffer_backend_pages_shmp *barray_idx;
1398 struct lttng_ust_lib_ring_buffer_backend_pages *pages;
57773204 1399
74d81a6c 1400 if (!stream)
9bfc503d 1401 return -EINVAL;
74d81a6c
MD
1402 buf = stream->buf;
1403 consumer_chan = stream->chan;
1404 chan = consumer_chan->chan->chan;
57773204
MD
1405 if (chan->backend.config.output != RING_BUFFER_MMAP)
1406 return -EINVAL;
1407 sb_bindex = subbuffer_id_get_index(&chan->backend.config,
32ce8569 1408 buf->backend.buf_rsb.id);
34daae3e
MD
1409 barray_idx = shmp_index(consumer_chan->chan->handle, buf->backend.array,
1410 sb_bindex);
1411 if (!barray_idx)
1412 return -EINVAL;
1413 pages = shmp(consumer_chan->chan->handle, barray_idx->shmp);
1414 if (!pages)
1415 return -EINVAL;
1416 *off = pages->mmap_offset;
57773204
MD
1417 return 0;
1418}
1419
1420/* returns the size of the current sub-buffer, without padding (for mmap). */
74d81a6c
MD
1421int ustctl_get_subbuf_size(struct ustctl_consumer_stream *stream,
1422 unsigned long *len)
57773204 1423{
74d81a6c 1424 struct ustctl_consumer_channel *consumer_chan;
66bdd22a 1425 struct channel *chan;
74d81a6c 1426 struct lttng_ust_lib_ring_buffer *buf;
57773204 1427
74d81a6c 1428 if (!stream)
9bfc503d
MD
1429 return -EINVAL;
1430
74d81a6c
MD
1431 buf = stream->buf;
1432 consumer_chan = stream->chan;
1433 chan = consumer_chan->chan->chan;
57773204 1434 *len = lib_ring_buffer_get_read_data_size(&chan->backend.config, buf,
74d81a6c 1435 consumer_chan->chan->handle);
57773204
MD
1436 return 0;
1437}
1438
1439/* returns the size of the current sub-buffer, without padding (for mmap). */
74d81a6c
MD
1440int ustctl_get_padded_subbuf_size(struct ustctl_consumer_stream *stream,
1441 unsigned long *len)
57773204 1442{
74d81a6c 1443 struct ustctl_consumer_channel *consumer_chan;
66bdd22a 1444 struct channel *chan;
74d81a6c 1445 struct lttng_ust_lib_ring_buffer *buf;
57773204 1446
74d81a6c 1447 if (!stream)
9bfc503d 1448 return -EINVAL;
74d81a6c
MD
1449 buf = stream->buf;
1450 consumer_chan = stream->chan;
1451 chan = consumer_chan->chan->chan;
57773204 1452 *len = lib_ring_buffer_get_read_data_size(&chan->backend.config, buf,
74d81a6c 1453 consumer_chan->chan->handle);
57773204
MD
1454 *len = PAGE_ALIGN(*len);
1455 return 0;
1456}
1457
1458/* Get exclusive read access to the next sub-buffer that can be read. */
74d81a6c 1459int ustctl_get_next_subbuf(struct ustctl_consumer_stream *stream)
57773204 1460{
74d81a6c
MD
1461 struct lttng_ust_lib_ring_buffer *buf;
1462 struct ustctl_consumer_channel *consumer_chan;
9bfc503d 1463
74d81a6c
MD
1464 if (!stream)
1465 return -EINVAL;
1466 buf = stream->buf;
1467 consumer_chan = stream->chan;
1468 return lib_ring_buffer_get_next_subbuf(buf,
1469 consumer_chan->chan->handle);
57773204
MD
1470}
1471
1472
1473/* Release exclusive sub-buffer access, move consumer forward. */
74d81a6c 1474int ustctl_put_next_subbuf(struct ustctl_consumer_stream *stream)
57773204 1475{
74d81a6c
MD
1476 struct lttng_ust_lib_ring_buffer *buf;
1477 struct ustctl_consumer_channel *consumer_chan;
9bfc503d 1478
74d81a6c
MD
1479 if (!stream)
1480 return -EINVAL;
1481 buf = stream->buf;
1482 consumer_chan = stream->chan;
1483 lib_ring_buffer_put_next_subbuf(buf, consumer_chan->chan->handle);
57773204
MD
1484 return 0;
1485}
1486
1487/* snapshot */
1488
1489/* Get a snapshot of the current ring buffer producer and consumer positions */
74d81a6c 1490int ustctl_snapshot(struct ustctl_consumer_stream *stream)
57773204 1491{
74d81a6c
MD
1492 struct lttng_ust_lib_ring_buffer *buf;
1493 struct ustctl_consumer_channel *consumer_chan;
9bfc503d 1494
74d81a6c
MD
1495 if (!stream)
1496 return -EINVAL;
1497 buf = stream->buf;
1498 consumer_chan = stream->chan;
57773204 1499 return lib_ring_buffer_snapshot(buf, &buf->cons_snapshot,
74d81a6c 1500 &buf->prod_snapshot, consumer_chan->chan->handle);
57773204
MD
1501}
1502
1503/* Get the consumer position (iteration start) */
74d81a6c
MD
1504int ustctl_snapshot_get_consumed(struct ustctl_consumer_stream *stream,
1505 unsigned long *pos)
57773204 1506{
74d81a6c 1507 struct lttng_ust_lib_ring_buffer *buf;
9bfc503d 1508
74d81a6c
MD
1509 if (!stream)
1510 return -EINVAL;
1511 buf = stream->buf;
57773204
MD
1512 *pos = buf->cons_snapshot;
1513 return 0;
1514}
1515
1516/* Get the producer position (iteration end) */
74d81a6c
MD
1517int ustctl_snapshot_get_produced(struct ustctl_consumer_stream *stream,
1518 unsigned long *pos)
57773204 1519{
74d81a6c 1520 struct lttng_ust_lib_ring_buffer *buf;
9bfc503d 1521
74d81a6c
MD
1522 if (!stream)
1523 return -EINVAL;
1524 buf = stream->buf;
57773204
MD
1525 *pos = buf->prod_snapshot;
1526 return 0;
1527}
1528
1529/* Get exclusive read access to the specified sub-buffer position */
74d81a6c
MD
1530int ustctl_get_subbuf(struct ustctl_consumer_stream *stream,
1531 unsigned long *pos)
57773204 1532{
74d81a6c
MD
1533 struct lttng_ust_lib_ring_buffer *buf;
1534 struct ustctl_consumer_channel *consumer_chan;
9bfc503d 1535
74d81a6c
MD
1536 if (!stream)
1537 return -EINVAL;
1538 buf = stream->buf;
1539 consumer_chan = stream->chan;
1540 return lib_ring_buffer_get_subbuf(buf, *pos,
1541 consumer_chan->chan->handle);
57773204
MD
1542}
1543
1544/* Release exclusive sub-buffer access */
74d81a6c 1545int ustctl_put_subbuf(struct ustctl_consumer_stream *stream)
57773204 1546{
74d81a6c
MD
1547 struct lttng_ust_lib_ring_buffer *buf;
1548 struct ustctl_consumer_channel *consumer_chan;
9bfc503d 1549
74d81a6c
MD
1550 if (!stream)
1551 return -EINVAL;
1552 buf = stream->buf;
1553 consumer_chan = stream->chan;
1554 lib_ring_buffer_put_subbuf(buf, consumer_chan->chan->handle);
57773204
MD
1555 return 0;
1556}
1557
74d81a6c 1558void ustctl_flush_buffer(struct ustctl_consumer_stream *stream,
b52190f2 1559 int producer_active)
57773204 1560{
74d81a6c
MD
1561 struct lttng_ust_lib_ring_buffer *buf;
1562 struct ustctl_consumer_channel *consumer_chan;
1563
1564 assert(stream);
1565 buf = stream->buf;
1566 consumer_chan = stream->chan;
b52190f2
MD
1567 lib_ring_buffer_switch_slow(buf,
1568 producer_active ? SWITCH_ACTIVE : SWITCH_FLUSH,
74d81a6c
MD
1569 consumer_chan->chan->handle);
1570}
1571
b2f3252a
JD
1572static
1573struct lttng_ust_client_lib_ring_buffer_client_cb *get_client_cb(
1574 struct lttng_ust_lib_ring_buffer *buf,
1575 struct lttng_ust_shm_handle *handle)
1576{
1577 struct channel *chan;
1578 const struct lttng_ust_lib_ring_buffer_config *config;
1579 struct lttng_ust_client_lib_ring_buffer_client_cb *client_cb;
1580
1581 chan = shmp(handle, buf->backend.chan);
34daae3e
MD
1582 if (!chan)
1583 return NULL;
b2f3252a
JD
1584 config = &chan->backend.config;
1585 if (!config->cb_ptr)
1586 return NULL;
1587 client_cb = caa_container_of(config->cb_ptr,
1588 struct lttng_ust_client_lib_ring_buffer_client_cb,
1589 parent);
1590 return client_cb;
1591}
1592
1593int ustctl_get_timestamp_begin(struct ustctl_consumer_stream *stream,
1594 uint64_t *timestamp_begin)
1595{
1596 struct lttng_ust_client_lib_ring_buffer_client_cb *client_cb;
e1919a41
MD
1597 struct lttng_ust_lib_ring_buffer *buf;
1598 struct lttng_ust_shm_handle *handle;
b2f3252a
JD
1599
1600 if (!stream || !timestamp_begin)
1601 return -EINVAL;
e1919a41
MD
1602 buf = stream->buf;
1603 handle = stream->chan->chan->handle;
b2f3252a
JD
1604 client_cb = get_client_cb(buf, handle);
1605 if (!client_cb)
1606 return -ENOSYS;
1607 return client_cb->timestamp_begin(buf, handle, timestamp_begin);
1608}
1609
1610int ustctl_get_timestamp_end(struct ustctl_consumer_stream *stream,
1611 uint64_t *timestamp_end)
1612{
1613 struct lttng_ust_client_lib_ring_buffer_client_cb *client_cb;
e1919a41
MD
1614 struct lttng_ust_lib_ring_buffer *buf;
1615 struct lttng_ust_shm_handle *handle;
b2f3252a
JD
1616
1617 if (!stream || !timestamp_end)
1618 return -EINVAL;
e1919a41
MD
1619 buf = stream->buf;
1620 handle = stream->chan->chan->handle;
b2f3252a
JD
1621 client_cb = get_client_cb(buf, handle);
1622 if (!client_cb)
1623 return -ENOSYS;
1624 return client_cb->timestamp_end(buf, handle, timestamp_end);
1625}
1626
1627int ustctl_get_events_discarded(struct ustctl_consumer_stream *stream,
1628 uint64_t *events_discarded)
1629{
1630 struct lttng_ust_client_lib_ring_buffer_client_cb *client_cb;
e1919a41
MD
1631 struct lttng_ust_lib_ring_buffer *buf;
1632 struct lttng_ust_shm_handle *handle;
b2f3252a
JD
1633
1634 if (!stream || !events_discarded)
1635 return -EINVAL;
e1919a41
MD
1636 buf = stream->buf;
1637 handle = stream->chan->chan->handle;
b2f3252a
JD
1638 client_cb = get_client_cb(buf, handle);
1639 if (!client_cb)
1640 return -ENOSYS;
1641 return client_cb->events_discarded(buf, handle, events_discarded);
1642}
1643
1644int ustctl_get_content_size(struct ustctl_consumer_stream *stream,
1645 uint64_t *content_size)
1646{
1647 struct lttng_ust_client_lib_ring_buffer_client_cb *client_cb;
e1919a41
MD
1648 struct lttng_ust_lib_ring_buffer *buf;
1649 struct lttng_ust_shm_handle *handle;
b2f3252a
JD
1650
1651 if (!stream || !content_size)
1652 return -EINVAL;
e1919a41
MD
1653 buf = stream->buf;
1654 handle = stream->chan->chan->handle;
b2f3252a
JD
1655 client_cb = get_client_cb(buf, handle);
1656 if (!client_cb)
1657 return -ENOSYS;
1658 return client_cb->content_size(buf, handle, content_size);
1659}
1660
1661int ustctl_get_packet_size(struct ustctl_consumer_stream *stream,
1662 uint64_t *packet_size)
1663{
1664 struct lttng_ust_client_lib_ring_buffer_client_cb *client_cb;
e1919a41
MD
1665 struct lttng_ust_lib_ring_buffer *buf;
1666 struct lttng_ust_shm_handle *handle;
b2f3252a
JD
1667
1668 if (!stream || !packet_size)
1669 return -EINVAL;
e1919a41
MD
1670 buf = stream->buf;
1671 handle = stream->chan->chan->handle;
b2f3252a
JD
1672 client_cb = get_client_cb(buf, handle);
1673 if (!client_cb)
1674 return -ENOSYS;
1675 return client_cb->packet_size(buf, handle, packet_size);
1676}
1677
1678int ustctl_get_stream_id(struct ustctl_consumer_stream *stream,
1679 uint64_t *stream_id)
1680{
1681 struct lttng_ust_client_lib_ring_buffer_client_cb *client_cb;
e1919a41
MD
1682 struct lttng_ust_lib_ring_buffer *buf;
1683 struct lttng_ust_shm_handle *handle;
b2f3252a
JD
1684
1685 if (!stream || !stream_id)
1686 return -EINVAL;
e1919a41
MD
1687 buf = stream->buf;
1688 handle = stream->chan->chan->handle;
b2f3252a
JD
1689 client_cb = get_client_cb(buf, handle);
1690 if (!client_cb)
1691 return -ENOSYS;
1692 return client_cb->stream_id(buf, handle, stream_id);
1693}
1694
fca361e8
JD
1695int ustctl_get_current_timestamp(struct ustctl_consumer_stream *stream,
1696 uint64_t *ts)
1697{
1698 struct lttng_ust_client_lib_ring_buffer_client_cb *client_cb;
e1919a41
MD
1699 struct lttng_ust_lib_ring_buffer *buf;
1700 struct lttng_ust_shm_handle *handle;
fca361e8
JD
1701
1702 if (!stream || !ts)
1703 return -EINVAL;
e1919a41
MD
1704 buf = stream->buf;
1705 handle = stream->chan->chan->handle;
fca361e8
JD
1706 client_cb = get_client_cb(buf, handle);
1707 if (!client_cb || !client_cb->current_timestamp)
1708 return -ENOSYS;
1709 return client_cb->current_timestamp(buf, handle, ts);
1710}
1711
1ff31389
JD
1712int ustctl_get_sequence_number(struct ustctl_consumer_stream *stream,
1713 uint64_t *seq)
1714{
1715 struct lttng_ust_client_lib_ring_buffer_client_cb *client_cb;
1716 struct lttng_ust_lib_ring_buffer *buf;
1717 struct lttng_ust_shm_handle *handle;
1718
1719 if (!stream || !seq)
1720 return -EINVAL;
1721 buf = stream->buf;
1722 handle = stream->chan->chan->handle;
1723 client_cb = get_client_cb(buf, handle);
1724 if (!client_cb || !client_cb->sequence_number)
1725 return -ENOSYS;
1726 return client_cb->sequence_number(buf, handle, seq);
1727}
1728
45a00b05
JD
1729int ustctl_get_instance_id(struct ustctl_consumer_stream *stream,
1730 uint64_t *id)
1731{
1732 struct lttng_ust_client_lib_ring_buffer_client_cb *client_cb;
1733 struct lttng_ust_lib_ring_buffer *buf;
1734 struct lttng_ust_shm_handle *handle;
1735
1736 if (!stream || !id)
1737 return -EINVAL;
1738 buf = stream->buf;
1739 handle = stream->chan->chan->handle;
1740 client_cb = get_client_cb(buf, handle);
1741 if (!client_cb)
1742 return -ENOSYS;
1743 return client_cb->instance_id(buf, handle, id);
1744}
1745
c62a3816 1746#ifdef LTTNG_UST_HAVE_PERF_EVENT
57201bb3
MD
1747
1748int ustctl_has_perf_counters(void)
1749{
1750 return 1;
1751}
1752
1753#else
1754
1755int ustctl_has_perf_counters(void)
1756{
1757 return 0;
1758}
1759
1760#endif
1761
32ce8569
MD
1762/*
1763 * Returns 0 on success, negative error value on error.
1764 */
1765int ustctl_recv_reg_msg(int sock,
1766 enum ustctl_socket_type *type,
1767 uint32_t *major,
1768 uint32_t *minor,
1769 uint32_t *pid,
1770 uint32_t *ppid,
1771 uint32_t *uid,
1772 uint32_t *gid,
1773 uint32_t *bits_per_long,
1774 uint32_t *uint8_t_alignment,
1775 uint32_t *uint16_t_alignment,
1776 uint32_t *uint32_t_alignment,
1777 uint32_t *uint64_t_alignment,
1778 uint32_t *long_alignment,
1779 int *byte_order,
1780 char *name)
1781{
1782 ssize_t len;
1783 struct ustctl_reg_msg reg_msg;
1784
1785 len = ustcomm_recv_unix_sock(sock, &reg_msg, sizeof(reg_msg));
1786 if (len > 0 && len != sizeof(reg_msg))
1787 return -EIO;
1788 if (len == 0)
1789 return -EPIPE;
1790 if (len < 0)
1791 return len;
1792
1793 if (reg_msg.magic == LTTNG_UST_COMM_MAGIC) {
1794 *byte_order = BYTE_ORDER == BIG_ENDIAN ?
1795 BIG_ENDIAN : LITTLE_ENDIAN;
1796 } else if (reg_msg.magic == bswap_32(LTTNG_UST_COMM_MAGIC)) {
1797 *byte_order = BYTE_ORDER == BIG_ENDIAN ?
1798 LITTLE_ENDIAN : BIG_ENDIAN;
1799 } else {
1800 return -LTTNG_UST_ERR_INVAL_MAGIC;
1801 }
1802 switch (reg_msg.socket_type) {
1803 case 0: *type = USTCTL_SOCKET_CMD;
1804 break;
1805 case 1: *type = USTCTL_SOCKET_NOTIFY;
1806 break;
1807 default:
1808 return -LTTNG_UST_ERR_INVAL_SOCKET_TYPE;
1809 }
1810 *major = reg_msg.major;
1811 *minor = reg_msg.minor;
1812 *pid = reg_msg.pid;
1813 *ppid = reg_msg.ppid;
1814 *uid = reg_msg.uid;
1815 *gid = reg_msg.gid;
1816 *bits_per_long = reg_msg.bits_per_long;
1817 *uint8_t_alignment = reg_msg.uint8_t_alignment;
1818 *uint16_t_alignment = reg_msg.uint16_t_alignment;
1819 *uint32_t_alignment = reg_msg.uint32_t_alignment;
1820 *uint64_t_alignment = reg_msg.uint64_t_alignment;
1821 *long_alignment = reg_msg.long_alignment;
1822 memcpy(name, reg_msg.name, LTTNG_UST_ABI_PROCNAME_LEN);
1823 if (reg_msg.major != LTTNG_UST_ABI_MAJOR_VERSION) {
1824 return -LTTNG_UST_ERR_UNSUP_MAJOR;
1825 }
1826
1827 return 0;
1828}
1829
1830int ustctl_recv_notify(int sock, enum ustctl_notify_cmd *notify_cmd)
1831{
1832 struct ustcomm_notify_hdr header;
1833 ssize_t len;
1834
1835 len = ustcomm_recv_unix_sock(sock, &header, sizeof(header));
1836 if (len > 0 && len != sizeof(header))
1837 return -EIO;
1838 if (len == 0)
1839 return -EPIPE;
1840 if (len < 0)
1841 return len;
1842 switch (header.notify_cmd) {
1843 case 0:
1844 *notify_cmd = USTCTL_NOTIFY_CMD_EVENT;
1845 break;
1846 case 1:
1847 *notify_cmd = USTCTL_NOTIFY_CMD_CHANNEL;
1848 break;
c785c634
MD
1849 case 2:
1850 *notify_cmd = USTCTL_NOTIFY_CMD_ENUM;
1851 break;
32ce8569
MD
1852 default:
1853 return -EINVAL;
1854 }
1855 return 0;
1856}
1857
1858/*
1859 * Returns 0 on success, negative error value on error.
1860 */
1861int ustctl_recv_register_event(int sock,
1862 int *session_objd,
1863 int *channel_objd,
1864 char *event_name,
1865 int *loglevel,
1866 char **signature,
1867 size_t *nr_fields,
1868 struct ustctl_field **fields,
1869 char **model_emf_uri)
1870{
1871 ssize_t len;
1872 struct ustcomm_notify_event_msg msg;
1873 size_t signature_len, fields_len, model_emf_uri_len;
1874 char *a_sign = NULL, *a_model_emf_uri = NULL;
1875 struct ustctl_field *a_fields = NULL;
1876
1877 len = ustcomm_recv_unix_sock(sock, &msg, sizeof(msg));
1878 if (len > 0 && len != sizeof(msg))
1879 return -EIO;
1880 if (len == 0)
1881 return -EPIPE;
1882 if (len < 0)
1883 return len;
1884
1885 *session_objd = msg.session_objd;
1886 *channel_objd = msg.channel_objd;
1887 strncpy(event_name, msg.event_name, LTTNG_UST_SYM_NAME_LEN);
1888 event_name[LTTNG_UST_SYM_NAME_LEN - 1] = '\0';
1889 *loglevel = msg.loglevel;
1890 signature_len = msg.signature_len;
1891 fields_len = msg.fields_len;
1892
1893 if (fields_len % sizeof(*a_fields) != 0) {
1894 return -EINVAL;
1895 }
1896
1897 model_emf_uri_len = msg.model_emf_uri_len;
1898
1899 /* recv signature. contains at least \0. */
1900 a_sign = zmalloc(signature_len);
1901 if (!a_sign)
1902 return -ENOMEM;
1903 len = ustcomm_recv_unix_sock(sock, a_sign, signature_len);
1904 if (len > 0 && len != signature_len) {
1905 len = -EIO;
1906 goto signature_error;
1907 }
1908 if (len == 0) {
1909 len = -EPIPE;
1910 goto signature_error;
1911 }
1912 if (len < 0) {
1913 goto signature_error;
1914 }
1915 /* Enforce end of string */
111198c2 1916 a_sign[signature_len - 1] = '\0';
32ce8569
MD
1917
1918 /* recv fields */
1919 if (fields_len) {
1920 a_fields = zmalloc(fields_len);
1921 if (!a_fields) {
1922 len = -ENOMEM;
1923 goto signature_error;
1924 }
1925 len = ustcomm_recv_unix_sock(sock, a_fields, fields_len);
1926 if (len > 0 && len != fields_len) {
1927 len = -EIO;
1928 goto fields_error;
1929 }
1930 if (len == 0) {
1931 len = -EPIPE;
1932 goto fields_error;
1933 }
1934 if (len < 0) {
1935 goto fields_error;
1936 }
1937 }
1938
1939 if (model_emf_uri_len) {
1940 /* recv model_emf_uri_len */
1941 a_model_emf_uri = zmalloc(model_emf_uri_len);
1942 if (!a_model_emf_uri) {
1943 len = -ENOMEM;
1944 goto fields_error;
1945 }
1946 len = ustcomm_recv_unix_sock(sock, a_model_emf_uri,
1947 model_emf_uri_len);
1948 if (len > 0 && len != model_emf_uri_len) {
1949 len = -EIO;
1950 goto model_error;
1951 }
1952 if (len == 0) {
1953 len = -EPIPE;
1954 goto model_error;
1955 }
1956 if (len < 0) {
1957 goto model_error;
1958 }
1959 /* Enforce end of string */
1960 a_model_emf_uri[model_emf_uri_len - 1] = '\0';
1961 }
1962
1963 *signature = a_sign;
1964 *nr_fields = fields_len / sizeof(*a_fields);
1965 *fields = a_fields;
1966 *model_emf_uri = a_model_emf_uri;
1967
1968 return 0;
1969
1970model_error:
1971 free(a_model_emf_uri);
1972fields_error:
1973 free(a_fields);
1974signature_error:
1975 free(a_sign);
1976 return len;
1977}
1978
1979/*
1980 * Returns 0 on success, negative error value on error.
1981 */
1982int ustctl_reply_register_event(int sock,
1983 uint32_t id,
1984 int ret_code)
1985{
1986 ssize_t len;
1987 struct {
1988 struct ustcomm_notify_hdr header;
1989 struct ustcomm_notify_event_reply r;
1990 } reply;
1991
1992 memset(&reply, 0, sizeof(reply));
1993 reply.header.notify_cmd = USTCTL_NOTIFY_CMD_EVENT;
1994 reply.r.ret_code = ret_code;
1995 reply.r.event_id = id;
1996 len = ustcomm_send_unix_sock(sock, &reply, sizeof(reply));
1997 if (len > 0 && len != sizeof(reply))
1998 return -EIO;
1999 if (len < 0)
2000 return len;
2001 return 0;
2002}
2003
c785c634
MD
2004/*
2005 * Returns 0 on success, negative UST or system error value on error.
2006 */
2007int ustctl_recv_register_enum(int sock,
2008 int *session_objd,
2009 char *enum_name,
2010 struct ustctl_enum_entry **entries,
2011 size_t *nr_entries)
2012{
2013 ssize_t len;
2014 struct ustcomm_notify_enum_msg msg;
2015 size_t entries_len;
2016 struct ustctl_enum_entry *a_entries = NULL;
2017
2018 len = ustcomm_recv_unix_sock(sock, &msg, sizeof(msg));
2019 if (len > 0 && len != sizeof(msg))
2020 return -EIO;
2021 if (len == 0)
2022 return -EPIPE;
2023 if (len < 0)
2024 return len;
2025
2026 *session_objd = msg.session_objd;
2027 strncpy(enum_name, msg.enum_name, LTTNG_UST_SYM_NAME_LEN);
2028 enum_name[LTTNG_UST_SYM_NAME_LEN - 1] = '\0';
2029 entries_len = msg.entries_len;
2030
2031 if (entries_len % sizeof(*a_entries) != 0) {
2032 return -EINVAL;
2033 }
2034
2035 /* recv entries */
2036 if (entries_len) {
2037 a_entries = zmalloc(entries_len);
2038 if (!a_entries)
2039 return -ENOMEM;
2040 len = ustcomm_recv_unix_sock(sock, a_entries, entries_len);
2041 if (len > 0 && len != entries_len) {
2042 len = -EIO;
2043 goto entries_error;
2044 }
2045 if (len == 0) {
2046 len = -EPIPE;
2047 goto entries_error;
2048 }
2049 if (len < 0) {
2050 goto entries_error;
2051 }
2052 }
2053 *nr_entries = entries_len / sizeof(*a_entries);
2054 *entries = a_entries;
2055
2056 return 0;
2057
2058entries_error:
2059 free(a_entries);
2060 return len;
2061}
2062
2063/*
2064 * Returns 0 on success, negative error value on error.
2065 */
2066int ustctl_reply_register_enum(int sock,
2067 uint64_t id,
2068 int ret_code)
2069{
2070 ssize_t len;
2071 struct {
2072 struct ustcomm_notify_hdr header;
2073 struct ustcomm_notify_enum_reply r;
2074 } reply;
2075
2076 memset(&reply, 0, sizeof(reply));
2077 reply.header.notify_cmd = USTCTL_NOTIFY_CMD_ENUM;
2078 reply.r.ret_code = ret_code;
2079 reply.r.enum_id = id;
2080 len = ustcomm_send_unix_sock(sock, &reply, sizeof(reply));
2081 if (len > 0 && len != sizeof(reply))
2082 return -EIO;
2083 if (len < 0)
2084 return len;
2085 return 0;
2086}
2087
32ce8569
MD
2088/*
2089 * Returns 0 on success, negative UST or system error value on error.
2090 */
2091int ustctl_recv_register_channel(int sock,
2092 int *session_objd, /* session descriptor (output) */
2093 int *channel_objd, /* channel descriptor (output) */
2094 size_t *nr_fields,
2095 struct ustctl_field **fields)
2096{
2097 ssize_t len;
2098 struct ustcomm_notify_channel_msg msg;
2099 size_t fields_len;
2100 struct ustctl_field *a_fields;
2101
2102 len = ustcomm_recv_unix_sock(sock, &msg, sizeof(msg));
2103 if (len > 0 && len != sizeof(msg))
2104 return -EIO;
2105 if (len == 0)
2106 return -EPIPE;
2107 if (len < 0)
2108 return len;
2109
2110 *session_objd = msg.session_objd;
2111 *channel_objd = msg.channel_objd;
2112 fields_len = msg.ctx_fields_len;
2113
2114 if (fields_len % sizeof(*a_fields) != 0) {
2115 return -EINVAL;
2116 }
2117
2118 /* recv fields */
2119 if (fields_len) {
2120 a_fields = zmalloc(fields_len);
2121 if (!a_fields) {
2122 len = -ENOMEM;
2123 goto alloc_error;
2124 }
2125 len = ustcomm_recv_unix_sock(sock, a_fields, fields_len);
2126 if (len > 0 && len != fields_len) {
2127 len = -EIO;
2128 goto fields_error;
2129 }
2130 if (len == 0) {
2131 len = -EPIPE;
2132 goto fields_error;
2133 }
2134 if (len < 0) {
2135 goto fields_error;
2136 }
2137 *fields = a_fields;
2138 } else {
2139 *fields = NULL;
2140 }
2141 *nr_fields = fields_len / sizeof(*a_fields);
2142 return 0;
2143
2144fields_error:
2145 free(a_fields);
2146alloc_error:
2147 return len;
2148}
2149
2150/*
2151 * Returns 0 on success, negative error value on error.
2152 */
2153int ustctl_reply_register_channel(int sock,
2154 uint32_t chan_id,
2155 enum ustctl_channel_header header_type,
2156 int ret_code)
2157{
2158 ssize_t len;
2159 struct {
2160 struct ustcomm_notify_hdr header;
2161 struct ustcomm_notify_channel_reply r;
2162 } reply;
2163
2164 memset(&reply, 0, sizeof(reply));
2165 reply.header.notify_cmd = USTCTL_NOTIFY_CMD_CHANNEL;
2166 reply.r.ret_code = ret_code;
2167 reply.r.chan_id = chan_id;
2168 switch (header_type) {
2169 case USTCTL_CHANNEL_HEADER_COMPACT:
2170 reply.r.header_type = 1;
2171 break;
2172 case USTCTL_CHANNEL_HEADER_LARGE:
2173 reply.r.header_type = 2;
2174 break;
2175 default:
2176 reply.r.header_type = 0;
2177 break;
2178 }
2179 len = ustcomm_send_unix_sock(sock, &reply, sizeof(reply));
2180 if (len > 0 && len != sizeof(reply))
2181 return -EIO;
2182 if (len < 0)
2183 return len;
2184 return 0;
2185}
2186
f53329f3
JD
2187/* Regenerate the statedump. */
2188int ustctl_regenerate_statedump(int sock, int handle)
2189{
2190 struct ustcomm_ust_msg lum;
2191 struct ustcomm_ust_reply lur;
2192 int ret;
2193
2194 memset(&lum, 0, sizeof(lum));
2195 lum.handle = handle;
2196 lum.cmd = LTTNG_UST_SESSION_STATEDUMP;
2197 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
2198 if (ret)
2199 return ret;
2200 DBG("Regenerated statedump for handle %u", handle);
2201 return 0;
2202}
2203
74d81a6c
MD
2204static __attribute__((constructor))
2205void ustctl_init(void)
2206{
2207 init_usterr();
6f626d28 2208 lttng_ust_getenv_init(); /* Needs init_usterr() to be completed. */
f9364363 2209 lttng_ust_clock_init();
74d81a6c
MD
2210 lttng_ring_buffer_metadata_client_init();
2211 lttng_ring_buffer_client_overwrite_init();
34a91bdb 2212 lttng_ring_buffer_client_overwrite_rt_init();
74d81a6c 2213 lttng_ring_buffer_client_discard_init();
34a91bdb 2214 lttng_ring_buffer_client_discard_rt_init();
03d2d293 2215 lib_ringbuffer_signal_init();
74d81a6c
MD
2216}
2217
2218static __attribute__((destructor))
2219void ustctl_exit(void)
2220{
34a91bdb 2221 lttng_ring_buffer_client_discard_rt_exit();
74d81a6c 2222 lttng_ring_buffer_client_discard_exit();
34a91bdb 2223 lttng_ring_buffer_client_overwrite_rt_exit();
74d81a6c
MD
2224 lttng_ring_buffer_client_overwrite_exit();
2225 lttng_ring_buffer_metadata_client_exit();
57773204 2226}
This page took 0.127244 seconds and 4 git commands to generate.