Add LTTNG_HOME_RUNDIR constant for local tracing
[lttng-ust.git] / liblttng-ust-ctl / ustctl.c
CommitLineData
57773204
MD
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; only version 2
8 * of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
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>
44c72f10
MD
25
26#include <usterr-signal-safe.h>
b728d87e 27#include <ust-comm.h>
57773204
MD
28
29#include "../libringbuffer/backend.h"
30#include "../libringbuffer/frontend.h"
31
6b120308
MD
32volatile enum ust_loglevel ust_loglevel;
33
57773204 34static
61f02aea 35void init_object(struct lttng_ust_object_data *data)
57773204
MD
36{
37 data->handle = -1;
38 data->shm_fd = -1;
39 data->wait_fd = -1;
40 data->memory_map_size = 0;
41}
42
12388166
MD
43/*
44 * If sock is negative, it means we don't have to notify the other side
45 * (e.g. application has already vanished).
46 */
d26228ae 47int ustctl_release_object(int sock, struct lttng_ust_object_data *data)
57773204
MD
48{
49 struct ustcomm_ust_msg lum;
50 struct ustcomm_ust_reply lur;
51 int ret;
52
d26228ae
MD
53 if (data->shm_fd >= 0) {
54 ret = close(data->shm_fd);
55 if (ret < 0) {
56 return ret;
57 }
58 }
59 if (data->wait_fd >= 0) {
60 ret = close(data->wait_fd);
61 if (ret < 0) {
62 return ret;
63 }
64 }
12388166
MD
65 if (sock >= 0) {
66 memset(&lum, 0, sizeof(lum));
67 lum.handle = data->handle;
68 lum.cmd = LTTNG_UST_RELEASE;
69 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
d26228ae
MD
70 if (ret < 0) {
71 return ret;
72 }
12388166 73 }
d26228ae 74 return 0;
57773204
MD
75}
76
1c5e467e
MD
77/*
78 * Send registration done packet to the application.
79 */
80int ustctl_register_done(int sock)
81{
82 struct ustcomm_ust_msg lum;
83 struct ustcomm_ust_reply lur;
84 int ret;
85
86 DBG("Sending register done command to %d", sock);
87 memset(&lum, 0, sizeof(lum));
88 lum.handle = LTTNG_UST_ROOT_HANDLE;
89 lum.cmd = LTTNG_UST_REGISTER_DONE;
90 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
91 if (ret)
92 return ret;
93 if (lur.ret_code != USTCOMM_OK) {
94 DBG("Return code: %s", ustcomm_get_readable_code(lur.ret_code));
95 goto error;
96 }
97 return 0;
98
99error:
100 return -1;
101}
102
57773204
MD
103/*
104 * returns session handle.
105 */
106int ustctl_create_session(int sock)
107{
108 struct ustcomm_ust_msg lum;
109 struct ustcomm_ust_reply lur;
110 int ret, session_handle;
111
112 /* Create session */
113 memset(&lum, 0, sizeof(lum));
114 lum.handle = LTTNG_UST_ROOT_HANDLE;
115 lum.cmd = LTTNG_UST_SESSION;
116 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
117 if (ret)
118 return ret;
119 session_handle = lur.ret_val;
120 DBG("received session handle %u", session_handle);
121 return session_handle;
122}
123
124/* open the metadata global channel */
125int ustctl_open_metadata(int sock, int session_handle,
126 struct lttng_ust_channel_attr *chops,
61f02aea 127 struct lttng_ust_object_data **_metadata_data)
57773204
MD
128{
129 struct ustcomm_ust_msg lum;
130 struct ustcomm_ust_reply lur;
61f02aea 131 struct lttng_ust_object_data *metadata_data;
57773204
MD
132 int ret;
133
134 metadata_data = malloc(sizeof(*metadata_data));
135 if (!metadata_data)
136 return -ENOMEM;
137 init_object(metadata_data);
138 /* Create metadata channel */
139 memset(&lum, 0, sizeof(lum));
140 lum.handle = session_handle;
141 lum.cmd = LTTNG_UST_METADATA;
142 lum.u.channel.overwrite = chops->overwrite;
143 lum.u.channel.subbuf_size = chops->subbuf_size;
144 lum.u.channel.num_subbuf = chops->num_subbuf;
145 lum.u.channel.switch_timer_interval = chops->switch_timer_interval;
146 lum.u.channel.read_timer_interval = chops->read_timer_interval;
147 lum.u.channel.output = chops->output;
148 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
149 if (ret) {
150 free(metadata_data);
151 return ret;
152 }
153 if (lur.ret_code != USTCOMM_OK) {
154 free(metadata_data);
155 return lur.ret_code;
156 }
157 metadata_data->handle = lur.ret_val;
158 DBG("received metadata handle %u", metadata_data->handle);
159 metadata_data->memory_map_size = lur.u.channel.memory_map_size;
160 /* get shm fd */
161 ret = ustcomm_recv_fd(sock);
162 if (ret < 0)
163 goto error;
164 metadata_data->shm_fd = ret;
165 /* get wait fd */
166 ret = ustcomm_recv_fd(sock);
167 if (ret < 0)
168 goto error;
169 metadata_data->wait_fd = ret;
170 *_metadata_data = metadata_data;
171 return 0;
172
173error:
d26228ae 174 (void) ustctl_release_object(sock, metadata_data);
38970582 175 free(metadata_data);
57773204
MD
176 return -EINVAL;
177}
178
179int ustctl_create_channel(int sock, int session_handle,
180 struct lttng_ust_channel_attr *chops,
61f02aea 181 struct lttng_ust_object_data **_channel_data)
57773204
MD
182{
183 struct ustcomm_ust_msg lum;
184 struct ustcomm_ust_reply lur;
61f02aea 185 struct lttng_ust_object_data *channel_data;
57773204
MD
186 int ret;
187
188 channel_data = malloc(sizeof(*channel_data));
189 if (!channel_data)
190 return -ENOMEM;
191 init_object(channel_data);
192 /* Create metadata channel */
193 memset(&lum, 0, sizeof(lum));
194 lum.handle = session_handle;
195 lum.cmd = LTTNG_UST_CHANNEL;
196 lum.u.channel.overwrite = chops->overwrite;
197 lum.u.channel.subbuf_size = chops->subbuf_size;
198 lum.u.channel.num_subbuf = chops->num_subbuf;
199 lum.u.channel.switch_timer_interval = chops->switch_timer_interval;
200 lum.u.channel.read_timer_interval = chops->read_timer_interval;
201 lum.u.channel.output = chops->output;
202 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
203 if (ret) {
204 free(channel_data);
205 return ret;
206 }
207 if (lur.ret_code != USTCOMM_OK) {
208 free(channel_data);
209 return lur.ret_code;
210 }
211 channel_data->handle = lur.ret_val;
212 DBG("received channel handle %u", channel_data->handle);
213 channel_data->memory_map_size = lur.u.channel.memory_map_size;
214 /* get shm fd */
215 ret = ustcomm_recv_fd(sock);
216 if (ret < 0)
217 goto error;
218 channel_data->shm_fd = ret;
219 /* get wait fd */
220 ret = ustcomm_recv_fd(sock);
221 if (ret < 0)
222 goto error;
223 channel_data->wait_fd = ret;
224 *_channel_data = channel_data;
225 return 0;
226
227error:
d26228ae 228 (void) ustctl_release_object(sock, channel_data);
38970582 229 free(channel_data);
57773204
MD
230 return -EINVAL;
231}
232
233/*
234 * Return -ENOENT if no more stream is available for creation.
235 * Return 0 on success.
236 * Return negative error value on error.
237 */
61f02aea
MD
238int ustctl_create_stream(int sock, struct lttng_ust_object_data *channel_data,
239 struct lttng_ust_object_data **_stream_data)
57773204
MD
240{
241 struct ustcomm_ust_msg lum;
242 struct ustcomm_ust_reply lur;
61f02aea 243 struct lttng_ust_object_data *stream_data;
57773204
MD
244 int ret, fd;
245
246 stream_data = malloc(sizeof(*stream_data));
247 if (!stream_data)
248 return -ENOMEM;
249 init_object(stream_data);
250 memset(&lum, 0, sizeof(lum));
251 lum.handle = channel_data->handle;
252 lum.cmd = LTTNG_UST_STREAM;
253 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
254 if (ret) {
255 free(stream_data);
256 return ret;
257 }
258 if (lur.ret_code != USTCOMM_OK) {
259 free(stream_data);
260 return lur.ret_code;
261 }
262
263 stream_data->handle = lur.ret_val;
264 DBG("received stream handle %u", stream_data->handle);
265 stream_data->memory_map_size = lur.u.stream.memory_map_size;
266 /* get shm fd */
267 fd = ustcomm_recv_fd(sock);
268 if (fd < 0)
269 goto error;
270 stream_data->shm_fd = fd;
271 /* get wait fd */
272 fd = ustcomm_recv_fd(sock);
273 if (fd < 0)
274 goto error;
275 stream_data->wait_fd = fd;
276 *_stream_data = stream_data;
277 return ret;
278
279error:
d26228ae 280 (void) ustctl_release_object(sock, stream_data);
38970582 281 free(stream_data);
57773204
MD
282 return -EINVAL;
283}
284
285int ustctl_create_event(int sock, struct lttng_ust_event *ev,
61f02aea
MD
286 struct lttng_ust_object_data *channel_data,
287 struct lttng_ust_object_data **_event_data)
57773204
MD
288{
289 struct ustcomm_ust_msg lum;
290 struct ustcomm_ust_reply lur;
61f02aea 291 struct lttng_ust_object_data *event_data;
57773204
MD
292 int ret;
293
294 event_data = malloc(sizeof(*event_data));
295 if (!event_data)
296 return -ENOMEM;
297 init_object(event_data);
298 memset(&lum, 0, sizeof(lum));
299 lum.handle = channel_data->handle;
300 lum.cmd = LTTNG_UST_EVENT;
301 strncpy(lum.u.event.name, ev->name,
302 LTTNG_UST_SYM_NAME_LEN);
303 lum.u.event.instrumentation = ev->instrumentation;
304 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
305 if (ret) {
306 free(event_data);
307 return ret;
308 }
309 event_data->handle = lur.ret_val;
310 DBG("received event handle %u", event_data->handle);
311 *_event_data = event_data;
312 return 0;
313}
314
315int ustctl_add_context(int sock, struct lttng_ust_context *ctx,
61f02aea
MD
316 struct lttng_ust_object_data *obj_data,
317 struct lttng_ust_object_data **_context_data)
57773204
MD
318{
319 struct ustcomm_ust_msg lum;
320 struct ustcomm_ust_reply lur;
61f02aea 321 struct lttng_ust_object_data *context_data;
57773204
MD
322 int ret;
323
324 context_data = malloc(sizeof(*context_data));
325 if (!context_data)
326 return -ENOMEM;
327 init_object(context_data);
328 memset(&lum, 0, sizeof(lum));
3039d8ed 329 lum.handle = obj_data->handle;
57773204
MD
330 lum.cmd = LTTNG_UST_CONTEXT;
331 lum.u.context.ctx = ctx->ctx;
332 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
333 if (ret) {
334 free(context_data);
335 return ret;
336 }
337 context_data->handle = lur.ret_val;
338 DBG("received context handle %u", context_data->handle);
339 *_context_data = context_data;
340 return ret;
341}
342
343/* Enable event, channel and session ioctl */
61f02aea 344int ustctl_enable(int sock, struct lttng_ust_object_data *object)
57773204
MD
345{
346 struct ustcomm_ust_msg lum;
347 struct ustcomm_ust_reply lur;
348 int ret;
349
350 memset(&lum, 0, sizeof(lum));
351 lum.handle = object->handle;
352 lum.cmd = LTTNG_UST_ENABLE;
353 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
354 if (ret)
355 return ret;
356 DBG("enabled handle %u", object->handle);
357 return 0;
358}
359
360/* Disable event, channel and session ioctl */
61f02aea 361int ustctl_disable(int sock, struct lttng_ust_object_data *object)
57773204
MD
362{
363 struct ustcomm_ust_msg lum;
364 struct ustcomm_ust_reply lur;
365 int ret;
366
367 memset(&lum, 0, sizeof(lum));
368 lum.handle = object->handle;
369 lum.cmd = LTTNG_UST_DISABLE;
370 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
371 if (ret)
372 return ret;
373 DBG("disable handle %u", object->handle);
374 return 0;
375}
376
4a6ca058 377int ustctl_start_session(int sock, int handle)
57773204 378{
61f02aea 379 struct lttng_ust_object_data obj;
4a6ca058
MD
380
381 obj.handle = handle;
382 return ustctl_enable(sock, &obj);
57773204
MD
383}
384
4a6ca058 385int ustctl_stop_session(int sock, int handle)
57773204 386{
61f02aea 387 struct lttng_ust_object_data obj;
4a6ca058
MD
388
389 obj.handle = handle;
390 return ustctl_disable(sock, &obj);
57773204
MD
391}
392
57773204
MD
393int ustctl_tracepoint_list(int sock)
394{
b115631f
MD
395 struct ustcomm_ust_msg lum;
396 struct ustcomm_ust_reply lur;
397 int ret, tp_list_handle;
398
399 memset(&lum, 0, sizeof(lum));
400 lum.handle = LTTNG_UST_ROOT_HANDLE;
401 lum.cmd = LTTNG_UST_TRACEPOINT_LIST;
402 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
403 if (ret)
404 return ret;
405 tp_list_handle = lur.ret_val;
406 DBG("received tracepoint list handle %u", tp_list_handle);
407 return tp_list_handle;
408}
409
410int ustctl_tracepoint_list_get(int sock, int tp_list_handle,
cbef6901 411 struct lttng_ust_tracepoint_iter *iter)
b115631f
MD
412{
413 struct ustcomm_ust_msg lum;
414 struct ustcomm_ust_reply lur;
415 int ret;
416
417 memset(&lum, 0, sizeof(lum));
418 lum.handle = tp_list_handle;
419 lum.cmd = LTTNG_UST_TRACEPOINT_LIST_GET;
420 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
421 if (ret)
422 return ret;
cbef6901
MD
423 DBG("received tracepoint list entry name %s loglevel %s loglevel_value %lld",
424 lur.u.tracepoint.name,
425 lur.u.tracepoint.loglevel,
426 (unsigned long long) lur.u.tracepoint.loglevel_value);
427 memcpy(iter, &lur.u.tracepoint, sizeof(*iter));
b115631f 428 return 0;
57773204
MD
429}
430
431int ustctl_tracer_version(int sock, struct lttng_ust_tracer_version *v)
432{
433 struct ustcomm_ust_msg lum;
434 struct ustcomm_ust_reply lur;
435 int ret;
436
437 memset(&lum, 0, sizeof(lum));
438 lum.handle = LTTNG_UST_ROOT_HANDLE;
439 lum.cmd = LTTNG_UST_TRACER_VERSION;
440 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
441 if (ret)
442 return ret;
443 memcpy(v, &lur.u.version, sizeof(*v));
444 DBG("received tracer version");
445 return 0;
446}
447
448int ustctl_wait_quiescent(int sock)
449{
450 struct ustcomm_ust_msg lum;
451 struct ustcomm_ust_reply lur;
452 int ret;
453
454 memset(&lum, 0, sizeof(lum));
455 lum.handle = LTTNG_UST_ROOT_HANDLE;
456 lum.cmd = LTTNG_UST_WAIT_QUIESCENT;
457 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
458 if (ret)
459 return ret;
460 DBG("waited for quiescent state");
461 return 0;
462}
463
464int ustctl_calibrate(int sock, struct lttng_ust_calibrate *calibrate)
465{
466 return -ENOSYS;
467}
468
469/* Buffer operations */
470
471/* Map channel shm into process memory */
38fae1d3 472struct lttng_ust_shm_handle *ustctl_map_channel(struct lttng_ust_object_data *chan_data)
57773204 473{
38fae1d3 474 struct lttng_ust_shm_handle *handle;
57773204
MD
475 struct channel *chan;
476 size_t chan_size;
c1fca457 477 struct lttng_ust_lib_ring_buffer_config *config;
7a784989 478 int ret;
57773204
MD
479
480 handle = channel_handle_create(chan_data->shm_fd,
481 chan_data->wait_fd,
482 chan_data->memory_map_size);
483 if (!handle) {
484 ERR("create handle error");
485 return NULL;
486 }
487 /*
38fae1d3 488 * Set to -1 because the lttng_ust_shm_handle destruction will take care
57773204
MD
489 * of closing shm_fd and wait_fd.
490 */
491 chan_data->shm_fd = -1;
492 chan_data->wait_fd = -1;
493
494 /*
495 * TODO: add consistency checks to be resilient if the
496 * application try to feed us with incoherent channel structure
497 * values.
498 */
499 chan = shmp(handle, handle->chan);
500 /* chan is object 0. This is hardcoded. */
501 chan_size = handle->table->objects[0].allocated_len;
502 handle->shadow_chan = malloc(chan_size);
503 if (!handle->shadow_chan) {
504 channel_destroy(chan, handle, 1);
505 return NULL;
506 }
507 memcpy(handle->shadow_chan, chan, chan_size);
bbc70d1b
MD
508 /*
509 * The callback pointers in the producer are invalid in the
c1fca457 510 * consumer. We need to look them up here.
bbc70d1b 511 */
c1fca457
MD
512 config = &handle->shadow_chan->backend.config;
513 switch (config->client_type) {
514 case LTTNG_CLIENT_METADATA:
515 memcpy(&config->cb, lttng_client_callbacks_metadata,
516 sizeof(config->cb));
517 break;
518 case LTTNG_CLIENT_DISCARD:
519 memcpy(&config->cb, lttng_client_callbacks_discard,
520 sizeof(config->cb));
521 break;
522 case LTTNG_CLIENT_OVERWRITE:
523 memcpy(&config->cb, lttng_client_callbacks_overwrite,
524 sizeof(config->cb));
525 break;
526 default:
527 ERR("Unknown client type %d", config->client_type);
528 channel_destroy(chan, handle, 1);
529 return NULL;
530 }
7a784989
MD
531 /* Replace the object table pointer. */
532 ret = munmap(handle->table->objects[0].memory_map,
533 handle->table->objects[0].memory_map_size);
534 if (ret) {
535 perror("munmap");
536 assert(0);
537 }
538 handle->table->objects[0].memory_map = (char *) handle->shadow_chan;
539 handle->table->objects[0].is_shadow = 1;
57773204
MD
540 return handle;
541}
542
543/* Add stream to channel shm and map its shm into process memory */
38fae1d3 544int ustctl_add_stream(struct lttng_ust_shm_handle *handle,
61f02aea 545 struct lttng_ust_object_data *stream_data)
57773204
MD
546{
547 int ret;
548
549 if (!stream_data->handle)
550 return -ENOENT;
551 /* map stream */
552 ret = channel_handle_add_stream(handle,
553 stream_data->shm_fd,
554 stream_data->wait_fd,
555 stream_data->memory_map_size);
556 if (ret) {
557 ERR("add stream error\n");
558 return ret;
559 }
560 /*
38fae1d3 561 * Set to -1 because the lttng_ust_shm_handle destruction will take care
57773204
MD
562 * of closing shm_fd and wait_fd.
563 */
564 stream_data->shm_fd = -1;
565 stream_data->wait_fd = -1;
566 return 0;
567}
568
38fae1d3 569void ustctl_unmap_channel(struct lttng_ust_shm_handle *handle)
5224b5c8
MD
570{
571 struct channel *chan;
572
573 chan = shmp(handle, handle->chan);
574 channel_destroy(chan, handle, 1);
575}
576
4cfec15c 577struct lttng_ust_lib_ring_buffer *ustctl_open_stream_read(struct lttng_ust_shm_handle *handle,
6e922b24
MD
578 int cpu)
579{
580 struct channel *chan = handle->shadow_chan;
581 int shm_fd, wait_fd;
582 uint64_t memory_map_size;
4cfec15c 583 struct lttng_ust_lib_ring_buffer *buf;
6e922b24
MD
584 int ret;
585
586 buf = channel_get_ring_buffer(&chan->backend.config,
587 chan, cpu, handle, &shm_fd, &wait_fd, &memory_map_size);
588 if (!buf)
589 return NULL;
590 ret = lib_ring_buffer_open_read(buf, handle, 1);
591 if (ret)
592 return NULL;
593 return buf;
594}
595
38fae1d3 596void ustctl_close_stream_read(struct lttng_ust_shm_handle *handle,
4cfec15c 597 struct lttng_ust_lib_ring_buffer *buf)
6e922b24
MD
598{
599 lib_ring_buffer_release_read(buf, handle, 1);
600}
601
57773204
MD
602/* For mmap mode, readable without "get" operation */
603
38fae1d3 604void *ustctl_get_mmap_base(struct lttng_ust_shm_handle *handle,
4cfec15c 605 struct lttng_ust_lib_ring_buffer *buf)
9095efe9
MD
606{
607 return shmp(handle, buf->backend.memory_map);
608}
609
57773204 610/* returns the length to mmap. */
38fae1d3 611int ustctl_get_mmap_len(struct lttng_ust_shm_handle *handle,
4cfec15c 612 struct lttng_ust_lib_ring_buffer *buf,
57773204
MD
613 unsigned long *len)
614{
615 unsigned long mmap_buf_len;
616 struct channel *chan = handle->shadow_chan;
617
618 if (chan->backend.config.output != RING_BUFFER_MMAP)
619 return -EINVAL;
620 mmap_buf_len = chan->backend.buf_size;
621 if (chan->backend.extra_reader_sb)
622 mmap_buf_len += chan->backend.subbuf_size;
623 if (mmap_buf_len > INT_MAX)
624 return -EFBIG;
625 *len = mmap_buf_len;
626 return 0;
627}
628
629/* returns the maximum size for sub-buffers. */
38fae1d3 630int ustctl_get_max_subbuf_size(struct lttng_ust_shm_handle *handle,
4cfec15c 631 struct lttng_ust_lib_ring_buffer *buf,
57773204
MD
632 unsigned long *len)
633{
634 struct channel *chan = handle->shadow_chan;
635
636 *len = chan->backend.subbuf_size;
637 return 0;
638}
639
640/*
641 * For mmap mode, operate on the current packet (between get/put or
642 * get_next/put_next).
643 */
644
645/* returns the offset of the subbuffer belonging to the mmap reader. */
38fae1d3 646int ustctl_get_mmap_read_offset(struct lttng_ust_shm_handle *handle,
4cfec15c 647 struct lttng_ust_lib_ring_buffer *buf, unsigned long *off)
57773204
MD
648{
649 struct channel *chan = handle->shadow_chan;
650 unsigned long sb_bindex;
651
652 if (chan->backend.config.output != RING_BUFFER_MMAP)
653 return -EINVAL;
654 sb_bindex = subbuffer_id_get_index(&chan->backend.config,
655 buf->backend.buf_rsb.id);
656 *off = shmp(handle, shmp_index(handle, buf->backend.array, sb_bindex)->shmp)->mmap_offset;
657 return 0;
658}
659
660/* returns the size of the current sub-buffer, without padding (for mmap). */
38fae1d3 661int ustctl_get_subbuf_size(struct lttng_ust_shm_handle *handle,
4cfec15c 662 struct lttng_ust_lib_ring_buffer *buf, unsigned long *len)
57773204
MD
663{
664 struct channel *chan = handle->shadow_chan;
665
666 *len = lib_ring_buffer_get_read_data_size(&chan->backend.config, buf,
667 handle);
668 return 0;
669}
670
671/* returns the size of the current sub-buffer, without padding (for mmap). */
38fae1d3 672int ustctl_get_padded_subbuf_size(struct lttng_ust_shm_handle *handle,
4cfec15c 673 struct lttng_ust_lib_ring_buffer *buf, unsigned long *len)
57773204
MD
674{
675 struct channel *chan = handle->shadow_chan;
676
677 *len = lib_ring_buffer_get_read_data_size(&chan->backend.config, buf,
678 handle);
679 *len = PAGE_ALIGN(*len);
680 return 0;
681}
682
683/* Get exclusive read access to the next sub-buffer that can be read. */
38fae1d3 684int ustctl_get_next_subbuf(struct lttng_ust_shm_handle *handle,
4cfec15c 685 struct lttng_ust_lib_ring_buffer *buf)
57773204
MD
686{
687 return lib_ring_buffer_get_next_subbuf(buf, handle);
688}
689
690
691/* Release exclusive sub-buffer access, move consumer forward. */
38fae1d3 692int ustctl_put_next_subbuf(struct lttng_ust_shm_handle *handle,
4cfec15c 693 struct lttng_ust_lib_ring_buffer *buf)
57773204
MD
694{
695 lib_ring_buffer_put_next_subbuf(buf, handle);
696 return 0;
697}
698
699/* snapshot */
700
701/* Get a snapshot of the current ring buffer producer and consumer positions */
38fae1d3 702int ustctl_snapshot(struct lttng_ust_shm_handle *handle,
4cfec15c 703 struct lttng_ust_lib_ring_buffer *buf)
57773204
MD
704{
705 return lib_ring_buffer_snapshot(buf, &buf->cons_snapshot,
706 &buf->prod_snapshot, handle);
707}
708
709/* Get the consumer position (iteration start) */
38fae1d3 710int ustctl_snapshot_get_consumed(struct lttng_ust_shm_handle *handle,
4cfec15c 711 struct lttng_ust_lib_ring_buffer *buf, unsigned long *pos)
57773204
MD
712{
713 *pos = buf->cons_snapshot;
714 return 0;
715}
716
717/* Get the producer position (iteration end) */
38fae1d3 718int ustctl_snapshot_get_produced(struct lttng_ust_shm_handle *handle,
4cfec15c 719 struct lttng_ust_lib_ring_buffer *buf, unsigned long *pos)
57773204
MD
720{
721 *pos = buf->prod_snapshot;
722 return 0;
723}
724
725/* Get exclusive read access to the specified sub-buffer position */
38fae1d3 726int ustctl_get_subbuf(struct lttng_ust_shm_handle *handle,
4cfec15c 727 struct lttng_ust_lib_ring_buffer *buf, unsigned long *pos)
57773204
MD
728{
729 return lib_ring_buffer_get_subbuf(buf, *pos, handle);
730}
731
732/* Release exclusive sub-buffer access */
38fae1d3 733int ustctl_put_subbuf(struct lttng_ust_shm_handle *handle,
4cfec15c 734 struct lttng_ust_lib_ring_buffer *buf)
57773204
MD
735{
736 lib_ring_buffer_put_subbuf(buf, handle);
737 return 0;
738}
739
02a15cfb 740void ustctl_flush_buffer(struct lttng_ust_shm_handle *handle,
b52190f2
MD
741 struct lttng_ust_lib_ring_buffer *buf,
742 int producer_active)
57773204 743{
b52190f2
MD
744 lib_ring_buffer_switch_slow(buf,
745 producer_active ? SWITCH_ACTIVE : SWITCH_FLUSH,
746 handle);
57773204 747}
This page took 0.065257 seconds and 4 git commands to generate.