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