cec7e24cab8a0b7eef95d995530843330138457c
[ust.git] / libustctl / ustctl.c
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>
21 #include <ust/lttng-ust-ctl.h>
22 #include <ust/lttng-ust-abi.h>
23 #include <ust/usterr-signal-safe.h>
24 #include <ust/lttng-ust-comm.h>
25
26 #include "../libringbuffer/backend.h"
27 #include "../libringbuffer/frontend.h"
28
29 volatile enum ust_loglevel ust_loglevel;
30
31 static
32 void init_object(struct object_data *data)
33 {
34 data->handle = -1;
35 data->shm_fd = -1;
36 data->wait_fd = -1;
37 data->memory_map_size = 0;
38 }
39
40 void release_object(int sock, struct object_data *data)
41 {
42 struct ustcomm_ust_msg lum;
43 struct ustcomm_ust_reply lur;
44 int ret;
45
46 if (data->shm_fd >= 0)
47 close(data->shm_fd);
48 if (data->wait_fd >= 0)
49 close(data->wait_fd);
50 memset(&lum, 0, sizeof(lum));
51 lum.handle = data->handle;
52 lum.cmd = LTTNG_UST_RELEASE;
53 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
54 assert(!ret);
55 free(data);
56 }
57
58 /*
59 * Send registration done packet to the application.
60 */
61 int ustctl_register_done(int sock)
62 {
63 struct ustcomm_ust_msg lum;
64 struct ustcomm_ust_reply lur;
65 int ret;
66
67 DBG("Sending register done command to %d", sock);
68 memset(&lum, 0, sizeof(lum));
69 lum.handle = LTTNG_UST_ROOT_HANDLE;
70 lum.cmd = LTTNG_UST_REGISTER_DONE;
71 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
72 if (ret)
73 return ret;
74 if (lur.ret_code != USTCOMM_OK) {
75 DBG("Return code: %s", ustcomm_get_readable_code(lur.ret_code));
76 goto error;
77 }
78 return 0;
79
80 error:
81 return -1;
82 }
83
84 /*
85 * returns session handle.
86 */
87 int ustctl_create_session(int sock)
88 {
89 struct ustcomm_ust_msg lum;
90 struct ustcomm_ust_reply lur;
91 int ret, session_handle;
92
93 /* Create session */
94 memset(&lum, 0, sizeof(lum));
95 lum.handle = LTTNG_UST_ROOT_HANDLE;
96 lum.cmd = LTTNG_UST_SESSION;
97 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
98 if (ret)
99 return ret;
100 session_handle = lur.ret_val;
101 DBG("received session handle %u", session_handle);
102 return session_handle;
103 }
104
105 /* open the metadata global channel */
106 int ustctl_open_metadata(int sock, int session_handle,
107 struct lttng_ust_channel_attr *chops,
108 struct object_data **_metadata_data)
109 {
110 struct ustcomm_ust_msg lum;
111 struct ustcomm_ust_reply lur;
112 struct object_data *metadata_data;
113 int ret;
114
115 metadata_data = malloc(sizeof(*metadata_data));
116 if (!metadata_data)
117 return -ENOMEM;
118 init_object(metadata_data);
119 /* Create metadata channel */
120 memset(&lum, 0, sizeof(lum));
121 lum.handle = session_handle;
122 lum.cmd = LTTNG_UST_METADATA;
123 lum.u.channel.overwrite = chops->overwrite;
124 lum.u.channel.subbuf_size = chops->subbuf_size;
125 lum.u.channel.num_subbuf = chops->num_subbuf;
126 lum.u.channel.switch_timer_interval = chops->switch_timer_interval;
127 lum.u.channel.read_timer_interval = chops->read_timer_interval;
128 lum.u.channel.output = chops->output;
129 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
130 if (ret) {
131 free(metadata_data);
132 return ret;
133 }
134 if (lur.ret_code != USTCOMM_OK) {
135 free(metadata_data);
136 return lur.ret_code;
137 }
138 metadata_data->handle = lur.ret_val;
139 DBG("received metadata handle %u", metadata_data->handle);
140 metadata_data->memory_map_size = lur.u.channel.memory_map_size;
141 /* get shm fd */
142 ret = ustcomm_recv_fd(sock);
143 if (ret < 0)
144 goto error;
145 metadata_data->shm_fd = ret;
146 /* get wait fd */
147 ret = ustcomm_recv_fd(sock);
148 if (ret < 0)
149 goto error;
150 metadata_data->wait_fd = ret;
151 *_metadata_data = metadata_data;
152 return 0;
153
154 error:
155 release_object(sock, metadata_data);
156 return -EINVAL;
157 }
158
159 int ustctl_create_channel(int sock, int session_handle,
160 struct lttng_ust_channel_attr *chops,
161 struct object_data **_channel_data)
162 {
163 struct ustcomm_ust_msg lum;
164 struct ustcomm_ust_reply lur;
165 struct object_data *channel_data;
166 int ret;
167
168 channel_data = malloc(sizeof(*channel_data));
169 if (!channel_data)
170 return -ENOMEM;
171 init_object(channel_data);
172 /* Create metadata channel */
173 memset(&lum, 0, sizeof(lum));
174 lum.handle = session_handle;
175 lum.cmd = LTTNG_UST_CHANNEL;
176 lum.u.channel.overwrite = chops->overwrite;
177 lum.u.channel.subbuf_size = chops->subbuf_size;
178 lum.u.channel.num_subbuf = chops->num_subbuf;
179 lum.u.channel.switch_timer_interval = chops->switch_timer_interval;
180 lum.u.channel.read_timer_interval = chops->read_timer_interval;
181 lum.u.channel.output = chops->output;
182 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
183 if (ret) {
184 free(channel_data);
185 return ret;
186 }
187 if (lur.ret_code != USTCOMM_OK) {
188 free(channel_data);
189 return lur.ret_code;
190 }
191 channel_data->handle = lur.ret_val;
192 DBG("received channel handle %u", channel_data->handle);
193 channel_data->memory_map_size = lur.u.channel.memory_map_size;
194 /* get shm fd */
195 ret = ustcomm_recv_fd(sock);
196 if (ret < 0)
197 goto error;
198 channel_data->shm_fd = ret;
199 /* get wait fd */
200 ret = ustcomm_recv_fd(sock);
201 if (ret < 0)
202 goto error;
203 channel_data->wait_fd = ret;
204 *_channel_data = channel_data;
205 return 0;
206
207 error:
208 release_object(sock, channel_data);
209 return -EINVAL;
210 }
211
212 /*
213 * Return -ENOENT if no more stream is available for creation.
214 * Return 0 on success.
215 * Return negative error value on error.
216 */
217 int ustctl_create_stream(int sock, struct object_data *channel_data,
218 struct object_data **_stream_data)
219 {
220 struct ustcomm_ust_msg lum;
221 struct ustcomm_ust_reply lur;
222 struct object_data *stream_data;
223 int ret, fd;
224
225 stream_data = malloc(sizeof(*stream_data));
226 if (!stream_data)
227 return -ENOMEM;
228 init_object(stream_data);
229 memset(&lum, 0, sizeof(lum));
230 lum.handle = channel_data->handle;
231 lum.cmd = LTTNG_UST_STREAM;
232 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
233 if (ret) {
234 free(stream_data);
235 return ret;
236 }
237 if (lur.ret_code != USTCOMM_OK) {
238 free(stream_data);
239 return lur.ret_code;
240 }
241
242 stream_data->handle = lur.ret_val;
243 DBG("received stream handle %u", stream_data->handle);
244 stream_data->memory_map_size = lur.u.stream.memory_map_size;
245 /* get shm fd */
246 fd = ustcomm_recv_fd(sock);
247 if (fd < 0)
248 goto error;
249 stream_data->shm_fd = fd;
250 /* get wait fd */
251 fd = ustcomm_recv_fd(sock);
252 if (fd < 0)
253 goto error;
254 stream_data->wait_fd = fd;
255 *_stream_data = stream_data;
256 return ret;
257
258 error:
259 release_object(sock, stream_data);
260 return -EINVAL;
261 }
262
263 int ustctl_create_event(int sock, struct lttng_ust_event *ev,
264 struct object_data *channel_data,
265 struct object_data **_event_data)
266 {
267 struct ustcomm_ust_msg lum;
268 struct ustcomm_ust_reply lur;
269 struct object_data *event_data;
270 int ret;
271
272 event_data = malloc(sizeof(*event_data));
273 if (!event_data)
274 return -ENOMEM;
275 init_object(event_data);
276 memset(&lum, 0, sizeof(lum));
277 lum.handle = channel_data->handle;
278 lum.cmd = LTTNG_UST_EVENT;
279 strncpy(lum.u.event.name, ev->name,
280 LTTNG_UST_SYM_NAME_LEN);
281 lum.u.event.instrumentation = ev->instrumentation;
282 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
283 if (ret) {
284 free(event_data);
285 return ret;
286 }
287 event_data->handle = lur.ret_val;
288 DBG("received event handle %u", event_data->handle);
289 *_event_data = event_data;
290 return 0;
291 }
292
293 int ustctl_add_context(int sock, struct lttng_ust_context *ctx,
294 struct object_data *channel_data,
295 struct object_data **_context_data)
296 {
297 struct ustcomm_ust_msg lum;
298 struct ustcomm_ust_reply lur;
299 struct object_data *context_data;
300 int ret;
301
302 context_data = malloc(sizeof(*context_data));
303 if (!context_data)
304 return -ENOMEM;
305 init_object(context_data);
306 memset(&lum, 0, sizeof(lum));
307 lum.handle = channel_data->handle;
308 lum.cmd = LTTNG_UST_CONTEXT;
309 lum.u.context.ctx = ctx->ctx;
310 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
311 if (ret) {
312 free(context_data);
313 return ret;
314 }
315 context_data->handle = lur.ret_val;
316 DBG("received context handle %u", context_data->handle);
317 *_context_data = context_data;
318 return ret;
319 }
320
321 /* Enable event, channel and session ioctl */
322 int ustctl_enable(int sock, struct object_data *object)
323 {
324 struct ustcomm_ust_msg lum;
325 struct ustcomm_ust_reply lur;
326 int ret;
327
328 memset(&lum, 0, sizeof(lum));
329 lum.handle = object->handle;
330 lum.cmd = LTTNG_UST_ENABLE;
331 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
332 if (ret)
333 return ret;
334 DBG("enabled handle %u", object->handle);
335 return 0;
336 }
337
338 /* Disable event, channel and session ioctl */
339 int ustctl_disable(int sock, struct object_data *object)
340 {
341 struct ustcomm_ust_msg lum;
342 struct ustcomm_ust_reply lur;
343 int ret;
344
345 memset(&lum, 0, sizeof(lum));
346 lum.handle = object->handle;
347 lum.cmd = LTTNG_UST_DISABLE;
348 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
349 if (ret)
350 return ret;
351 DBG("disable handle %u", object->handle);
352 return 0;
353 }
354
355 int ustctl_start_session(int sock, struct object_data *object)
356 {
357 return ustctl_enable(sock, object);
358 }
359
360 int ustctl_stop_session(int sock, struct object_data *object)
361 {
362 return ustctl_disable(sock, object);
363 }
364
365
366 int ustctl_tracepoint_list(int sock)
367 {
368 return -ENOSYS; /* not implemented */
369 }
370
371 int ustctl_tracer_version(int sock, struct lttng_ust_tracer_version *v)
372 {
373 struct ustcomm_ust_msg lum;
374 struct ustcomm_ust_reply lur;
375 int ret;
376
377 memset(&lum, 0, sizeof(lum));
378 lum.handle = LTTNG_UST_ROOT_HANDLE;
379 lum.cmd = LTTNG_UST_TRACER_VERSION;
380 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
381 if (ret)
382 return ret;
383 memcpy(v, &lur.u.version, sizeof(*v));
384 DBG("received tracer version");
385 return 0;
386 }
387
388 int ustctl_wait_quiescent(int sock)
389 {
390 struct ustcomm_ust_msg lum;
391 struct ustcomm_ust_reply lur;
392 int ret;
393
394 memset(&lum, 0, sizeof(lum));
395 lum.handle = LTTNG_UST_ROOT_HANDLE;
396 lum.cmd = LTTNG_UST_WAIT_QUIESCENT;
397 ret = ustcomm_send_app_cmd(sock, &lum, &lur);
398 if (ret)
399 return ret;
400 DBG("waited for quiescent state");
401 return 0;
402 }
403
404 int ustctl_calibrate(int sock, struct lttng_ust_calibrate *calibrate)
405 {
406 return -ENOSYS;
407 }
408
409 /* Buffer operations */
410
411 /* Map channel shm into process memory */
412 struct shm_handle *ustctl_map_channel(struct object_data *chan_data)
413 {
414 struct shm_handle *handle;
415 struct channel *chan;
416 size_t chan_size;
417
418 handle = channel_handle_create(chan_data->shm_fd,
419 chan_data->wait_fd,
420 chan_data->memory_map_size);
421 if (!handle) {
422 ERR("create handle error");
423 return NULL;
424 }
425 /*
426 * Set to -1 because the shm_handle destruction will take care
427 * of closing shm_fd and wait_fd.
428 */
429 chan_data->shm_fd = -1;
430 chan_data->wait_fd = -1;
431
432 /*
433 * TODO: add consistency checks to be resilient if the
434 * application try to feed us with incoherent channel structure
435 * values.
436 */
437 chan = shmp(handle, handle->chan);
438 /* chan is object 0. This is hardcoded. */
439 chan_size = handle->table->objects[0].allocated_len;
440 handle->shadow_chan = malloc(chan_size);
441 if (!handle->shadow_chan) {
442 channel_destroy(chan, handle, 1);
443 return NULL;
444 }
445 memcpy(handle->shadow_chan, chan, chan_size);
446 return handle;
447 }
448
449 /* Add stream to channel shm and map its shm into process memory */
450 int ustctl_add_stream(struct shm_handle *handle,
451 struct object_data *stream_data)
452 {
453 int ret;
454
455 if (!stream_data->handle)
456 return -ENOENT;
457 /* map stream */
458 ret = channel_handle_add_stream(handle,
459 stream_data->shm_fd,
460 stream_data->wait_fd,
461 stream_data->memory_map_size);
462 if (ret) {
463 ERR("add stream error\n");
464 return ret;
465 }
466 /*
467 * Set to -1 because the shm_handle destruction will take care
468 * of closing shm_fd and wait_fd.
469 */
470 stream_data->shm_fd = -1;
471 stream_data->wait_fd = -1;
472 return 0;
473 }
474
475 void ustctl_unmap_channel(struct shm_handle *handle)
476 {
477 struct channel *chan;
478
479 chan = shmp(handle, handle->chan);
480 channel_destroy(chan, handle, 1);
481 }
482
483 struct lib_ring_buffer *ustctl_open_stream_read(struct shm_handle *handle,
484 int cpu)
485 {
486 struct channel *chan = handle->shadow_chan;
487 int shm_fd, wait_fd;
488 uint64_t memory_map_size;
489 struct lib_ring_buffer *buf;
490 int ret;
491
492 buf = channel_get_ring_buffer(&chan->backend.config,
493 chan, cpu, handle, &shm_fd, &wait_fd, &memory_map_size);
494 if (!buf)
495 return NULL;
496 ret = lib_ring_buffer_open_read(buf, handle, 1);
497 if (ret)
498 return NULL;
499 return buf;
500 }
501
502 void ustctl_close_stream_read(struct shm_handle *handle,
503 struct lib_ring_buffer *buf)
504 {
505 lib_ring_buffer_release_read(buf, handle, 1);
506 }
507
508 /* For mmap mode, readable without "get" operation */
509
510 void *ustctl_get_mmap_base(struct shm_handle *handle,
511 struct lib_ring_buffer *buf)
512 {
513 return shmp(handle, buf->backend.memory_map);
514 }
515
516 /* returns the length to mmap. */
517 int ustctl_get_mmap_len(struct shm_handle *handle,
518 struct lib_ring_buffer *buf,
519 unsigned long *len)
520 {
521 unsigned long mmap_buf_len;
522 struct channel *chan = handle->shadow_chan;
523
524 if (chan->backend.config.output != RING_BUFFER_MMAP)
525 return -EINVAL;
526 mmap_buf_len = chan->backend.buf_size;
527 if (chan->backend.extra_reader_sb)
528 mmap_buf_len += chan->backend.subbuf_size;
529 if (mmap_buf_len > INT_MAX)
530 return -EFBIG;
531 *len = mmap_buf_len;
532 return 0;
533 }
534
535 /* returns the maximum size for sub-buffers. */
536 int ustctl_get_max_subbuf_size(struct shm_handle *handle,
537 struct lib_ring_buffer *buf,
538 unsigned long *len)
539 {
540 struct channel *chan = handle->shadow_chan;
541
542 *len = chan->backend.subbuf_size;
543 return 0;
544 }
545
546 /*
547 * For mmap mode, operate on the current packet (between get/put or
548 * get_next/put_next).
549 */
550
551 /* returns the offset of the subbuffer belonging to the mmap reader. */
552 int ustctl_get_mmap_read_offset(struct shm_handle *handle,
553 struct lib_ring_buffer *buf, unsigned long *off)
554 {
555 struct channel *chan = handle->shadow_chan;
556 unsigned long sb_bindex;
557
558 if (chan->backend.config.output != RING_BUFFER_MMAP)
559 return -EINVAL;
560 sb_bindex = subbuffer_id_get_index(&chan->backend.config,
561 buf->backend.buf_rsb.id);
562 *off = shmp(handle, shmp_index(handle, buf->backend.array, sb_bindex)->shmp)->mmap_offset;
563 return 0;
564 }
565
566 /* returns the size of the current sub-buffer, without padding (for mmap). */
567 int ustctl_get_subbuf_size(struct shm_handle *handle,
568 struct lib_ring_buffer *buf, unsigned long *len)
569 {
570 struct channel *chan = handle->shadow_chan;
571
572 *len = lib_ring_buffer_get_read_data_size(&chan->backend.config, buf,
573 handle);
574 return 0;
575 }
576
577 /* returns the size of the current sub-buffer, without padding (for mmap). */
578 int ustctl_get_padded_subbuf_size(struct shm_handle *handle,
579 struct lib_ring_buffer *buf, unsigned long *len)
580 {
581 struct channel *chan = handle->shadow_chan;
582
583 *len = lib_ring_buffer_get_read_data_size(&chan->backend.config, buf,
584 handle);
585 *len = PAGE_ALIGN(*len);
586 return 0;
587 }
588
589 /* Get exclusive read access to the next sub-buffer that can be read. */
590 int ustctl_get_next_subbuf(struct shm_handle *handle,
591 struct lib_ring_buffer *buf)
592 {
593 return lib_ring_buffer_get_next_subbuf(buf, handle);
594 }
595
596
597 /* Release exclusive sub-buffer access, move consumer forward. */
598 int ustctl_put_next_subbuf(struct shm_handle *handle,
599 struct lib_ring_buffer *buf)
600 {
601 lib_ring_buffer_put_next_subbuf(buf, handle);
602 return 0;
603 }
604
605 /* snapshot */
606
607 /* Get a snapshot of the current ring buffer producer and consumer positions */
608 int ustctl_snapshot(struct shm_handle *handle,
609 struct lib_ring_buffer *buf)
610 {
611 return lib_ring_buffer_snapshot(buf, &buf->cons_snapshot,
612 &buf->prod_snapshot, handle);
613 }
614
615 /* Get the consumer position (iteration start) */
616 int ustctl_snapshot_get_consumed(struct shm_handle *handle,
617 struct lib_ring_buffer *buf, unsigned long *pos)
618 {
619 *pos = buf->cons_snapshot;
620 return 0;
621 }
622
623 /* Get the producer position (iteration end) */
624 int ustctl_snapshot_get_produced(struct shm_handle *handle,
625 struct lib_ring_buffer *buf, unsigned long *pos)
626 {
627 *pos = buf->prod_snapshot;
628 return 0;
629 }
630
631 /* Get exclusive read access to the specified sub-buffer position */
632 int ustctl_get_subbuf(struct shm_handle *handle,
633 struct lib_ring_buffer *buf, unsigned long *pos)
634 {
635 return lib_ring_buffer_get_subbuf(buf, *pos, handle);
636 }
637
638 /* Release exclusive sub-buffer access */
639 int ustctl_put_subbuf(struct shm_handle *handle,
640 struct lib_ring_buffer *buf)
641 {
642 lib_ring_buffer_put_subbuf(buf, handle);
643 return 0;
644 }
645
646 int ustctl_buffer_flush(struct shm_handle *handle,
647 struct lib_ring_buffer *buf)
648 {
649 lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE, handle);
650 return 0;
651 }
This page took 0.040578 seconds and 3 git commands to generate.