Fix: lttng_abi_map_channel should be static
[deliverable/lttng-ust.git] / liblttng-ust / lttng-ust-abi.c
CommitLineData
f4681817
MD
1/*
2 * lttng-ust-abi.c
3 *
f4681817
MD
4 * LTTng UST ABI
5 *
e92f3e28
MD
6 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; only
11 * version 2.1 of the License.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 *
22 *
f4681817
MD
23 * Mimic system calls for:
24 * - session creation, returns an object descriptor or failure.
25 * - channel creation, returns an object descriptor or failure.
26 * - Operates on a session object descriptor
27 * - Takes all channel options as parameters.
28 * - stream get, returns an object descriptor or failure.
29 * - Operates on a channel object descriptor.
30 * - stream notifier get, returns an object descriptor or failure.
31 * - Operates on a channel object descriptor.
32 * - event creation, returns an object descriptor or failure.
33 * - Operates on a channel object descriptor
34 * - Takes an event name as parameter
35 * - Takes an instrumentation source as parameter
36 * - e.g. tracepoints, dynamic_probes...
37 * - Takes instrumentation source specific arguments.
f4681817
MD
38 */
39
3fbec7dc 40#define _LGPL_SOURCE
4318ae1b 41#include <lttng/ust-abi.h>
7bc53e94 42#include <lttng/ust-error.h>
f4681817
MD
43#include <urcu/compiler.h>
44#include <urcu/list.h>
4318ae1b 45#include <lttng/ust-events.h>
23c8854a 46#include <lttng/ust-version.h>
902e1379 47#include <lttng/tracepoint.h>
6548fca4 48#include <ust-fd.h>
d8de1354 49#include "tracepoint-internal.h"
44c72f10
MD
50#include <usterr-signal-safe.h>
51#include <helper.h>
7dd08bec 52#include "lttng-tracer.h"
196ec2df 53#include "string-utils.h"
74d81a6c
MD
54#include "../libringbuffer/shm.h"
55#include "../libringbuffer/frontend_types.h"
4ab44fbe 56
7047f3da
MD
57#define OBJ_NAME_LEN 16
58
45e9e699
MD
59static int lttng_ust_abi_close_in_progress;
60
51489cad 61static
f59ed768 62int lttng_abi_tracepoint_list(void *owner);
06d4f27e 63static
f59ed768 64int lttng_abi_tracepoint_field_list(void *owner);
51489cad 65
f4681817
MD
66/*
67 * Object descriptor table. Should be protected from concurrent access
68 * by the caller.
69 */
70
b61ce3b2 71struct lttng_ust_obj {
f4681817
MD
72 union {
73 struct {
74 void *private_data;
b61ce3b2 75 const struct lttng_ust_objd_ops *ops;
f4681817 76 int f_count;
1849ef7c 77 int owner_ref; /* has ref from owner */
f59ed768 78 void *owner;
7047f3da 79 char name[OBJ_NAME_LEN];
f4681817
MD
80 } s;
81 int freelist_next; /* offset freelist. end is -1. */
82 } u;
83};
84
b61ce3b2
MD
85struct lttng_ust_objd_table {
86 struct lttng_ust_obj *array;
f4681817
MD
87 unsigned int len, allocated_len;
88 int freelist_head; /* offset freelist head. end is -1 */
89};
90
b61ce3b2 91static struct lttng_ust_objd_table objd_table = {
f4681817
MD
92 .freelist_head = -1,
93};
94
95static
f59ed768 96int objd_alloc(void *private_data, const struct lttng_ust_objd_ops *ops,
7047f3da 97 void *owner, const char *name)
f4681817 98{
b61ce3b2 99 struct lttng_ust_obj *obj;
f4681817
MD
100
101 if (objd_table.freelist_head != -1) {
102 obj = &objd_table.array[objd_table.freelist_head];
103 objd_table.freelist_head = obj->u.freelist_next;
104 goto end;
105 }
106
107 if (objd_table.len >= objd_table.allocated_len) {
108 unsigned int new_allocated_len, old_allocated_len;
b61ce3b2 109 struct lttng_ust_obj *new_table, *old_table;
f4681817
MD
110
111 old_allocated_len = objd_table.allocated_len;
112 old_table = objd_table.array;
113 if (!old_allocated_len)
114 new_allocated_len = 1;
115 else
116 new_allocated_len = old_allocated_len << 1;
b61ce3b2 117 new_table = zmalloc(sizeof(struct lttng_ust_obj) * new_allocated_len);
f4681817
MD
118 if (!new_table)
119 return -ENOMEM;
120 memcpy(new_table, old_table,
b61ce3b2 121 sizeof(struct lttng_ust_obj) * old_allocated_len);
f4681817
MD
122 free(old_table);
123 objd_table.array = new_table;
124 objd_table.allocated_len = new_allocated_len;
125 }
126 obj = &objd_table.array[objd_table.len];
127 objd_table.len++;
128end:
129 obj->u.s.private_data = private_data;
130 obj->u.s.ops = ops;
a4be8962
MD
131 obj->u.s.f_count = 2; /* count == 1 : object is allocated */
132 /* count == 2 : allocated + hold ref */
1849ef7c 133 obj->u.s.owner_ref = 1; /* One owner reference */
f59ed768 134 obj->u.s.owner = owner;
7047f3da
MD
135 strncpy(obj->u.s.name, name, OBJ_NAME_LEN);
136 obj->u.s.name[OBJ_NAME_LEN - 1] = '\0';
f4681817
MD
137 return obj - objd_table.array;
138}
139
140static
b61ce3b2 141struct lttng_ust_obj *_objd_get(int id)
f4681817
MD
142{
143 if (id >= objd_table.len)
144 return NULL;
a4be8962
MD
145 if (!objd_table.array[id].u.s.f_count)
146 return NULL;
f4681817
MD
147 return &objd_table.array[id];
148}
149
150static
151void *objd_private(int id)
152{
b61ce3b2 153 struct lttng_ust_obj *obj = _objd_get(id);
f4681817
MD
154 assert(obj);
155 return obj->u.s.private_data;
156}
157
158static
159void objd_set_private(int id, void *private_data)
160{
b61ce3b2 161 struct lttng_ust_obj *obj = _objd_get(id);
f4681817
MD
162 assert(obj);
163 obj->u.s.private_data = private_data;
164}
165
b61ce3b2 166const struct lttng_ust_objd_ops *objd_ops(int id)
f4681817 167{
b61ce3b2 168 struct lttng_ust_obj *obj = _objd_get(id);
46050b1a 169
a4be8962
MD
170 if (!obj)
171 return NULL;
f4681817
MD
172 return obj->u.s.ops;
173}
174
175static
176void objd_free(int id)
177{
b61ce3b2 178 struct lttng_ust_obj *obj = _objd_get(id);
f4681817
MD
179
180 assert(obj);
181 obj->u.freelist_next = objd_table.freelist_head;
182 objd_table.freelist_head = obj - objd_table.array;
a4be8962
MD
183 assert(obj->u.s.f_count == 1);
184 obj->u.s.f_count = 0; /* deallocated */
f4681817
MD
185}
186
187static
188void objd_ref(int id)
189{
b61ce3b2 190 struct lttng_ust_obj *obj = _objd_get(id);
072886c4 191 assert(obj != NULL);
f4681817
MD
192 obj->u.s.f_count++;
193}
194
1849ef7c 195int lttng_ust_objd_unref(int id, int is_owner)
f4681817 196{
b61ce3b2 197 struct lttng_ust_obj *obj = _objd_get(id);
f4681817 198
1ea11eab
MD
199 if (!obj)
200 return -EINVAL;
a4be8962
MD
201 if (obj->u.s.f_count == 1) {
202 ERR("Reference counting error\n");
203 return -EINVAL;
204 }
1849ef7c
MD
205 if (is_owner) {
206 if (!obj->u.s.owner_ref) {
207 ERR("Error decrementing owner reference");
208 return -EINVAL;
209 }
210 obj->u.s.owner_ref--;
211 }
a4be8962 212 if ((--obj->u.s.f_count) == 1) {
b61ce3b2 213 const struct lttng_ust_objd_ops *ops = objd_ops(id);
196ec2df 214
f4681817
MD
215 if (ops->release)
216 ops->release(id);
217 objd_free(id);
218 }
1ea11eab 219 return 0;
f4681817
MD
220}
221
222static
223void objd_table_destroy(void)
224{
a4be8962
MD
225 int i;
226
1849ef7c
MD
227 for (i = 0; i < objd_table.allocated_len; i++) {
228 struct lttng_ust_obj *obj;
229
230 obj = _objd_get(i);
231 if (!obj)
232 continue;
233 if (!obj->u.s.owner_ref)
234 continue; /* only unref owner ref. */
235 (void) lttng_ust_objd_unref(i, 1);
236 }
f4681817 237 free(objd_table.array);
02fb3381
MD
238 objd_table.array = NULL;
239 objd_table.len = 0;
240 objd_table.allocated_len = 0;
17dfb34b 241 objd_table.freelist_head = -1;
f4681817
MD
242}
243
74d81a6c
MD
244const char *lttng_ust_obj_get_name(int id)
245{
246 struct lttng_ust_obj *obj = _objd_get(id);
247
248 if (!obj)
249 return NULL;
250 return obj->u.s.name;
251}
252
f59ed768
MD
253void lttng_ust_objd_table_owner_cleanup(void *owner)
254{
255 int i;
256
257 for (i = 0; i < objd_table.allocated_len; i++) {
258 struct lttng_ust_obj *obj;
259
260 obj = _objd_get(i);
261 if (!obj)
262 continue;
263 if (!obj->u.s.owner)
264 continue; /* skip root handles */
1849ef7c
MD
265 if (!obj->u.s.owner_ref)
266 continue; /* only unref owner ref. */
f59ed768 267 if (obj->u.s.owner == owner)
1849ef7c 268 (void) lttng_ust_objd_unref(i, 1);
f59ed768
MD
269 }
270}
271
f4681817
MD
272/*
273 * This is LTTng's own personal way to create an ABI for sessiond.
274 * We send commands over a socket.
275 */
276
b61ce3b2
MD
277static const struct lttng_ust_objd_ops lttng_ops;
278static const struct lttng_ust_objd_ops lttng_session_ops;
279static const struct lttng_ust_objd_ops lttng_channel_ops;
e58095ef 280static const struct lttng_ust_objd_ops lttng_enabler_ops;
51489cad 281static const struct lttng_ust_objd_ops lttng_tracepoint_list_ops;
06d4f27e 282static const struct lttng_ust_objd_ops lttng_tracepoint_field_list_ops;
f4681817 283
46050b1a
MD
284int lttng_abi_create_root_handle(void)
285{
286 int root_handle;
287
f59ed768 288 /* root handles have NULL owners */
7047f3da 289 root_handle = objd_alloc(NULL, &lttng_ops, NULL, "root");
46050b1a
MD
290 return root_handle;
291}
292
74d81a6c
MD
293static
294int lttng_is_channel_ready(struct lttng_channel *lttng_chan)
295{
296 struct channel *chan;
297 unsigned int nr_streams, exp_streams;
298
299 chan = lttng_chan->chan;
300 nr_streams = channel_handle_get_nr_streams(lttng_chan->handle);
301 exp_streams = chan->nr_streams;
302 return nr_streams == exp_streams;
303}
304
818173b9 305static
f59ed768 306int lttng_abi_create_session(void *owner)
f4681817 307{
7dd08bec 308 struct lttng_session *session;
f4681817
MD
309 int session_objd, ret;
310
7dd08bec 311 session = lttng_session_create();
f4681817
MD
312 if (!session)
313 return -ENOMEM;
7047f3da 314 session_objd = objd_alloc(session, &lttng_session_ops, owner, "session");
f4681817
MD
315 if (session_objd < 0) {
316 ret = session_objd;
317 goto objd_error;
318 }
319 session->objd = session_objd;
32ce8569 320 session->owner = owner;
f4681817
MD
321 return session_objd;
322
323objd_error:
7dd08bec 324 lttng_session_destroy(session);
f4681817
MD
325 return ret;
326}
327
f4681817
MD
328static
329long lttng_abi_tracer_version(int objd,
330 struct lttng_ust_tracer_version *v)
331{
32ce8569
MD
332 v->major = LTTNG_UST_MAJOR_VERSION;
333 v->minor = LTTNG_UST_MINOR_VERSION;
334 v->patchlevel = LTTNG_UST_PATCHLEVEL_VERSION;
f4681817
MD
335 return 0;
336}
337
338static
339long lttng_abi_add_context(int objd,
340 struct lttng_ust_context *context_param,
8e696cfa 341 union ust_args *uargs,
7dd08bec 342 struct lttng_ctx **ctx, struct lttng_session *session)
f4681817 343{
8e696cfa 344 return lttng_attach_context(context_param, uargs, ctx, session);
f4681817
MD
345}
346
347/**
348 * lttng_cmd - lttng control through socket commands
349 *
350 * @objd: the object descriptor
351 * @cmd: the command
352 * @arg: command arg
ef9ff354 353 * @uargs: UST arguments (internal)
f59ed768 354 * @owner: objd owner
f4681817
MD
355 *
356 * This descriptor implements lttng commands:
357 * LTTNG_UST_SESSION
358 * Returns a LTTng trace session object descriptor
359 * LTTNG_UST_TRACER_VERSION
360 * Returns the LTTng kernel tracer version
361 * LTTNG_UST_TRACEPOINT_LIST
362 * Returns a file descriptor listing available tracepoints
06d4f27e
MD
363 * LTTNG_UST_TRACEPOINT_FIELD_LIST
364 * Returns a file descriptor listing available tracepoint fields
f4681817
MD
365 * LTTNG_UST_WAIT_QUIESCENT
366 * Returns after all previously running probes have completed
367 *
368 * The returned session will be deleted when its file descriptor is closed.
369 */
370static
ef9ff354 371long lttng_cmd(int objd, unsigned int cmd, unsigned long arg,
f59ed768 372 union ust_args *uargs, void *owner)
f4681817
MD
373{
374 switch (cmd) {
375 case LTTNG_UST_SESSION:
f59ed768 376 return lttng_abi_create_session(owner);
f4681817
MD
377 case LTTNG_UST_TRACER_VERSION:
378 return lttng_abi_tracer_version(objd,
379 (struct lttng_ust_tracer_version *) arg);
380 case LTTNG_UST_TRACEPOINT_LIST:
f59ed768 381 return lttng_abi_tracepoint_list(owner);
06d4f27e 382 case LTTNG_UST_TRACEPOINT_FIELD_LIST:
f59ed768 383 return lttng_abi_tracepoint_field_list(owner);
f4681817
MD
384 case LTTNG_UST_WAIT_QUIESCENT:
385 synchronize_trace();
386 return 0;
387 default:
388 return -EINVAL;
389 }
390}
391
b61ce3b2 392static const struct lttng_ust_objd_ops lttng_ops = {
f4681817
MD
393 .cmd = lttng_cmd,
394};
395
01a9d883 396static
74d81a6c
MD
397int lttng_abi_map_channel(int session_objd,
398 struct lttng_ust_channel *ust_chan,
399 union ust_args *uargs,
400 void *owner)
f4681817 401{
7dd08bec 402 struct lttng_session *session = objd_private(session_objd);
f4681817 403 const char *transport_name;
74d81a6c
MD
404 const struct lttng_transport *transport;
405 const char *chan_name;
f4681817 406 int chan_objd;
74d81a6c
MD
407 struct lttng_ust_shm_handle *channel_handle;
408 struct lttng_channel *lttng_chan;
409 struct channel *chan;
410 struct lttng_ust_lib_ring_buffer_config *config;
411 void *chan_data;
ff0f5728 412 int wakeup_fd;
74d81a6c
MD
413 uint64_t len;
414 int ret;
415 enum lttng_ust_chan_type type;
416
417 chan_data = uargs->channel.chan_data;
ff0f5728 418 wakeup_fd = uargs->channel.wakeup_fd;
74d81a6c
MD
419 len = ust_chan->len;
420 type = ust_chan->type;
421
422 switch (type) {
423 case LTTNG_UST_CHAN_PER_CPU:
74d81a6c
MD
424 break;
425 default:
ff0f5728
MD
426 ret = -EINVAL;
427 goto invalid;
74d81a6c
MD
428 }
429
430 if (session->been_active) {
431 ret = -EBUSY;
432 goto active; /* Refuse to add channel to active session */
433 }
f4681817 434
ff0f5728 435 channel_handle = channel_handle_create(chan_data, len, wakeup_fd);
74d81a6c
MD
436 if (!channel_handle) {
437 ret = -EINVAL;
438 goto handle_error;
439 }
440
441 chan = shmp(channel_handle, channel_handle->chan);
442 assert(chan);
03d2d293 443 chan->handle = channel_handle;
74d81a6c
MD
444 config = &chan->backend.config;
445 lttng_chan = channel_get_private(chan);
446 if (!lttng_chan) {
447 ret = -EINVAL;
448 goto alloc_error;
449 }
450
451 /* Lookup transport name */
452 switch (type) {
453 case LTTNG_UST_CHAN_PER_CPU:
454 if (config->output == RING_BUFFER_MMAP) {
34a91bdb
MD
455 if (config->mode == RING_BUFFER_OVERWRITE) {
456 if (config->wakeup == RING_BUFFER_WAKEUP_BY_WRITER) {
457 transport_name = "relay-overwrite-mmap";
458 } else {
459 transport_name = "relay-overwrite-rt-mmap";
460 }
461 } else {
462 if (config->wakeup == RING_BUFFER_WAKEUP_BY_WRITER) {
463 transport_name = "relay-discard-mmap";
464 } else {
465 transport_name = "relay-discard-rt-mmap";
466 }
467 }
f4681817 468 } else {
74d81a6c
MD
469 ret = -EINVAL;
470 goto notransport;
f4681817 471 }
74d81a6c 472 chan_name = "channel";
f4681817 473 break;
f4681817 474 default:
74d81a6c
MD
475 ret = -EINVAL;
476 goto notransport;
fe38d4af 477 }
74d81a6c
MD
478 transport = lttng_transport_find(transport_name);
479 if (!transport) {
480 DBG("LTTng transport %s not found\n",
481 transport_name);
482 ret = -EINVAL;
483 goto notransport;
484 }
485
486 chan_objd = objd_alloc(NULL, &lttng_channel_ops, owner, chan_name);
fe38d4af
MD
487 if (chan_objd < 0) {
488 ret = chan_objd;
489 goto objd_error;
f4681817 490 }
74d81a6c
MD
491
492 /* Initialize our lttng chan */
493 lttng_chan->chan = chan;
ac6b4ac6 494 lttng_chan->tstate = 1;
74d81a6c
MD
495 lttng_chan->enabled = 1;
496 lttng_chan->ctx = NULL;
497 lttng_chan->session = session;
74d81a6c
MD
498 lttng_chan->ops = &transport->ops;
499 memcpy(&lttng_chan->chan->backend.config,
500 transport->client_config,
501 sizeof(lttng_chan->chan->backend.config));
502 cds_list_add(&lttng_chan->node, &session->chan_head);
503 lttng_chan->header_type = 0;
504 lttng_chan->handle = channel_handle;
74d81a6c
MD
505 lttng_chan->type = type;
506
f4681817
MD
507 /*
508 * We tolerate no failure path after channel creation. It will stay
509 * invariant for the rest of the session.
510 */
74d81a6c
MD
511 objd_set_private(chan_objd, lttng_chan);
512 lttng_chan->objd = chan_objd;
f4681817
MD
513 /* The channel created holds a reference on the session */
514 objd_ref(session_objd);
f4681817
MD
515 return chan_objd;
516
ff0f5728 517 /* error path after channel was created */
f4681817 518objd_error:
74d81a6c 519notransport:
74d81a6c
MD
520alloc_error:
521 channel_destroy(chan, channel_handle, 0);
ff0f5728
MD
522 return ret;
523
524 /*
525 * error path before channel creation (owning chan_data and
526 * wakeup_fd).
527 */
74d81a6c
MD
528handle_error:
529active:
ff0f5728
MD
530invalid:
531 {
532 int close_ret;
533
6548fca4 534 lttng_ust_lock_fd_tracker();
ff0f5728 535 close_ret = close(wakeup_fd);
6548fca4 536 lttng_ust_unlock_fd_tracker();
ff0f5728
MD
537 if (close_ret) {
538 PERROR("close");
539 }
540 }
541 free(chan_data);
f4681817
MD
542 return ret;
543}
544
545/**
546 * lttng_session_cmd - lttng session object command
547 *
548 * @obj: the object
549 * @cmd: the command
550 * @arg: command arg
ef9ff354 551 * @uargs: UST arguments (internal)
f59ed768 552 * @owner: objd owner
f4681817
MD
553 *
554 * This descriptor implements lttng commands:
555 * LTTNG_UST_CHANNEL
556 * Returns a LTTng channel object descriptor
557 * LTTNG_UST_ENABLE
558 * Enables tracing for a session (weak enable)
559 * LTTNG_UST_DISABLE
560 * Disables tracing for a session (strong disable)
f4681817
MD
561 *
562 * The returned channel will be deleted when its file descriptor is closed.
563 */
564static
ef9ff354 565long lttng_session_cmd(int objd, unsigned int cmd, unsigned long arg,
f59ed768 566 union ust_args *uargs, void *owner)
f4681817 567{
7dd08bec 568 struct lttng_session *session = objd_private(objd);
f4681817
MD
569
570 switch (cmd) {
571 case LTTNG_UST_CHANNEL:
74d81a6c 572 return lttng_abi_map_channel(objd,
f4681817 573 (struct lttng_ust_channel *) arg,
74d81a6c 574 uargs, owner);
f4681817
MD
575 case LTTNG_UST_SESSION_START:
576 case LTTNG_UST_ENABLE:
7dd08bec 577 return lttng_session_enable(session);
f4681817
MD
578 case LTTNG_UST_SESSION_STOP:
579 case LTTNG_UST_DISABLE:
7dd08bec 580 return lttng_session_disable(session);
710b8ee3
MD
581 case LTTNG_UST_SESSION_STATEDUMP:
582 return lttng_session_statedump(session);
f4681817
MD
583 default:
584 return -EINVAL;
585 }
586}
587
588/*
589 * Called when the last file reference is dropped.
590 *
591 * Big fat note: channels and events are invariant for the whole session after
592 * their creation. So this session destruction also destroys all channel and
593 * event structures specific to this session (they are not destroyed when their
594 * individual file is released).
595 */
596static
1ea11eab 597int lttng_release_session(int objd)
f4681817 598{
7dd08bec 599 struct lttng_session *session = objd_private(objd);
f4681817 600
1ea11eab 601 if (session) {
7dd08bec 602 lttng_session_destroy(session);
1ea11eab
MD
603 return 0;
604 } else {
605 return -EINVAL;
606 }
f4681817
MD
607}
608
b61ce3b2 609static const struct lttng_ust_objd_ops lttng_session_ops = {
1ea11eab 610 .release = lttng_release_session,
f4681817
MD
611 .cmd = lttng_session_cmd,
612};
613
51489cad 614static
ef9ff354 615long lttng_tracepoint_list_cmd(int objd, unsigned int cmd, unsigned long arg,
f59ed768 616 union ust_args *uargs, void *owner)
51489cad 617{
c8fcf224 618 struct lttng_ust_tracepoint_list *list = objd_private(objd);
cbef6901
MD
619 struct lttng_ust_tracepoint_iter *tp =
620 (struct lttng_ust_tracepoint_iter *) arg;
c8fcf224 621 struct lttng_ust_tracepoint_iter *iter;
51489cad
MD
622
623 switch (cmd) {
624 case LTTNG_UST_TRACEPOINT_LIST_GET:
c8fcf224 625 {
c8fcf224
MD
626 iter = lttng_ust_tracepoint_list_get_iter_next(list);
627 if (!iter)
7bc53e94 628 return -LTTNG_UST_ERR_NOENT;
c8fcf224 629 memcpy(tp, iter, sizeof(*tp));
51489cad 630 return 0;
c8fcf224 631 }
51489cad
MD
632 default:
633 return -EINVAL;
634 }
635}
636
637static
f59ed768 638int lttng_abi_tracepoint_list(void *owner)
51489cad
MD
639{
640 int list_objd, ret;
c8fcf224 641 struct lttng_ust_tracepoint_list *list;
51489cad 642
7047f3da 643 list_objd = objd_alloc(NULL, &lttng_tracepoint_list_ops, owner, "tp_list");
51489cad
MD
644 if (list_objd < 0) {
645 ret = list_objd;
646 goto objd_error;
647 }
648 list = zmalloc(sizeof(*list));
649 if (!list) {
650 ret = -ENOMEM;
651 goto alloc_error;
652 }
653 objd_set_private(list_objd, list);
654
c8fcf224 655 /* populate list by walking on all registered probes. */
7dd08bec 656 ret = lttng_probes_get_event_list(list);
c8fcf224
MD
657 if (ret) {
658 goto list_error;
659 }
51489cad
MD
660 return list_objd;
661
c8fcf224
MD
662list_error:
663 free(list);
51489cad
MD
664alloc_error:
665 {
666 int err;
667
1849ef7c 668 err = lttng_ust_objd_unref(list_objd, 1);
51489cad
MD
669 assert(!err);
670 }
671objd_error:
672 return ret;
673}
674
675static
676int lttng_release_tracepoint_list(int objd)
677{
c8fcf224 678 struct lttng_ust_tracepoint_list *list = objd_private(objd);
51489cad
MD
679
680 if (list) {
7dd08bec 681 lttng_probes_prune_event_list(list);
51489cad
MD
682 free(list);
683 return 0;
684 } else {
685 return -EINVAL;
686 }
687}
688
689static const struct lttng_ust_objd_ops lttng_tracepoint_list_ops = {
690 .release = lttng_release_tracepoint_list,
691 .cmd = lttng_tracepoint_list_cmd,
692};
693
06d4f27e
MD
694static
695long lttng_tracepoint_field_list_cmd(int objd, unsigned int cmd,
f59ed768 696 unsigned long arg, union ust_args *uargs, void *owner)
06d4f27e
MD
697{
698 struct lttng_ust_field_list *list = objd_private(objd);
40003310 699 struct lttng_ust_field_iter *tp = &uargs->field_list.entry;
06d4f27e
MD
700 struct lttng_ust_field_iter *iter;
701
702 switch (cmd) {
703 case LTTNG_UST_TRACEPOINT_FIELD_LIST_GET:
704 {
06d4f27e
MD
705 iter = lttng_ust_field_list_get_iter_next(list);
706 if (!iter)
7bc53e94 707 return -LTTNG_UST_ERR_NOENT;
06d4f27e
MD
708 memcpy(tp, iter, sizeof(*tp));
709 return 0;
710 }
711 default:
712 return -EINVAL;
713 }
714}
715
716static
f59ed768 717int lttng_abi_tracepoint_field_list(void *owner)
06d4f27e
MD
718{
719 int list_objd, ret;
720 struct lttng_ust_field_list *list;
721
7047f3da
MD
722 list_objd = objd_alloc(NULL, &lttng_tracepoint_field_list_ops, owner,
723 "tp_field_list");
06d4f27e
MD
724 if (list_objd < 0) {
725 ret = list_objd;
726 goto objd_error;
727 }
728 list = zmalloc(sizeof(*list));
729 if (!list) {
730 ret = -ENOMEM;
731 goto alloc_error;
732 }
733 objd_set_private(list_objd, list);
734
735 /* populate list by walking on all registered probes. */
7dd08bec 736 ret = lttng_probes_get_field_list(list);
06d4f27e
MD
737 if (ret) {
738 goto list_error;
739 }
740 return list_objd;
741
742list_error:
743 free(list);
744alloc_error:
745 {
746 int err;
747
1849ef7c 748 err = lttng_ust_objd_unref(list_objd, 1);
06d4f27e
MD
749 assert(!err);
750 }
751objd_error:
752 return ret;
753}
754
755static
756int lttng_release_tracepoint_field_list(int objd)
757{
758 struct lttng_ust_field_list *list = objd_private(objd);
759
760 if (list) {
7dd08bec 761 lttng_probes_prune_field_list(list);
06d4f27e
MD
762 free(list);
763 return 0;
764 } else {
765 return -EINVAL;
766 }
767}
768
769static const struct lttng_ust_objd_ops lttng_tracepoint_field_list_ops = {
770 .release = lttng_release_tracepoint_field_list,
771 .cmd = lttng_tracepoint_field_list_cmd,
772};
773
f4681817 774static
74d81a6c 775int lttng_abi_map_stream(int channel_objd, struct lttng_ust_stream *info,
f59ed768 776 union ust_args *uargs, void *owner)
f4681817 777{
7dd08bec 778 struct lttng_channel *channel = objd_private(channel_objd);
74d81a6c 779 int ret;
f4681817 780
74d81a6c
MD
781 ret = channel_handle_add_stream(channel->handle,
782 uargs->stream.shm_fd, uargs->stream.wakeup_fd,
783 info->stream_nr, info->len);
784 if (ret)
785 goto error_add_stream;
786
787 return 0;
788
789error_add_stream:
f4681817
MD
790 return ret;
791}
f4681817
MD
792
793static
e58095ef 794int lttng_abi_create_enabler(int channel_objd,
f59ed768 795 struct lttng_ust_event *event_param,
e58095ef
MD
796 void *owner,
797 enum lttng_enabler_type type)
f4681817 798{
7dd08bec 799 struct lttng_channel *channel = objd_private(channel_objd);
e58095ef 800 struct lttng_enabler *enabler;
f4681817
MD
801 int event_objd, ret;
802
803 event_param->name[LTTNG_UST_SYM_NAME_LEN - 1] = '\0';
7047f3da 804 event_objd = objd_alloc(NULL, &lttng_enabler_ops, owner, "enabler");
f4681817
MD
805 if (event_objd < 0) {
806 ret = event_objd;
807 goto objd_error;
808 }
809 /*
810 * We tolerate no failure path after event creation. It will stay
811 * invariant for the rest of the session.
812 */
e58095ef
MD
813 enabler = lttng_enabler_create(type, event_param, channel);
814 if (!enabler) {
815 ret = -ENOMEM;
f4681817
MD
816 goto event_error;
817 }
e58095ef 818 objd_set_private(event_objd, enabler);
f4681817
MD
819 /* The event holds a reference on the channel */
820 objd_ref(channel_objd);
821 return event_objd;
822
823event_error:
1ea11eab
MD
824 {
825 int err;
826
1849ef7c 827 err = lttng_ust_objd_unref(event_objd, 1);
1ea11eab
MD
828 assert(!err);
829 }
f4681817
MD
830objd_error:
831 return ret;
832}
833
834/**
835 * lttng_channel_cmd - lttng control through object descriptors
836 *
837 * @objd: the object descriptor
838 * @cmd: the command
839 * @arg: command arg
ef9ff354 840 * @uargs: UST arguments (internal)
f59ed768 841 * @owner: objd owner
f4681817
MD
842 *
843 * This object descriptor implements lttng commands:
844 * LTTNG_UST_STREAM
845 * Returns an event stream object descriptor or failure.
846 * (typically, one event stream records events from one CPU)
847 * LTTNG_UST_EVENT
848 * Returns an event object descriptor or failure.
849 * LTTNG_UST_CONTEXT
850 * Prepend a context field to each event in the channel
851 * LTTNG_UST_ENABLE
852 * Enable recording for events in this channel (weak enable)
853 * LTTNG_UST_DISABLE
854 * Disable recording for events in this channel (strong disable)
855 *
856 * Channel and event file descriptors also hold a reference on the session.
857 */
858static
ef9ff354 859long lttng_channel_cmd(int objd, unsigned int cmd, unsigned long arg,
f59ed768 860 union ust_args *uargs, void *owner)
f4681817 861{
7dd08bec 862 struct lttng_channel *channel = objd_private(objd);
f4681817 863
74d81a6c
MD
864 if (cmd != LTTNG_UST_STREAM) {
865 /*
866 * Check if channel received all streams.
867 */
868 if (!lttng_is_channel_ready(channel))
869 return -EPERM;
870 }
871
f4681817
MD
872 switch (cmd) {
873 case LTTNG_UST_STREAM:
381c0f1e
MD
874 {
875 struct lttng_ust_stream *stream;
876
877 stream = (struct lttng_ust_stream *) arg;
878 /* stream used as output */
74d81a6c 879 return lttng_abi_map_stream(objd, stream, uargs, owner);
381c0f1e 880 }
f4681817 881 case LTTNG_UST_EVENT:
1f18504e
MD
882 {
883 struct lttng_ust_event *event_param =
884 (struct lttng_ust_event *) arg;
196ec2df
PP
885
886 if (strutils_is_star_glob_pattern(event_param->name)) {
887 /*
888 * If the event name is a star globbing pattern,
889 * we create the special star globbing enabler.
890 */
e58095ef 891 return lttng_abi_create_enabler(objd, event_param,
196ec2df 892 owner, LTTNG_ENABLER_STAR_GLOB);
1f18504e 893 } else {
e58095ef
MD
894 return lttng_abi_create_enabler(objd, event_param,
895 owner, LTTNG_ENABLER_EVENT);
1f18504e
MD
896 }
897 }
f4681817
MD
898 case LTTNG_UST_CONTEXT:
899 return lttng_abi_add_context(objd,
8e696cfa 900 (struct lttng_ust_context *) arg, uargs,
f4681817
MD
901 &channel->ctx, channel->session);
902 case LTTNG_UST_ENABLE:
7dd08bec 903 return lttng_channel_enable(channel);
f4681817 904 case LTTNG_UST_DISABLE:
7dd08bec 905 return lttng_channel_disable(channel);
43d330a4
MD
906 case LTTNG_UST_FLUSH_BUFFER:
907 return channel->ops->flush_buffer(channel->chan, channel->handle);
f4681817
MD
908 default:
909 return -EINVAL;
910 }
911}
912
f4681817
MD
913static
914int lttng_channel_release(int objd)
915{
7dd08bec 916 struct lttng_channel *channel = objd_private(objd);
f4681817
MD
917
918 if (channel)
1849ef7c 919 return lttng_ust_objd_unref(channel->session->objd, 0);
f4681817
MD
920 return 0;
921}
922
b61ce3b2 923static const struct lttng_ust_objd_ops lttng_channel_ops = {
f4681817 924 .release = lttng_channel_release,
f4681817
MD
925 .cmd = lttng_channel_cmd,
926};
927
f4681817 928/**
e58095ef 929 * lttng_enabler_cmd - lttng control through object descriptors
e6c12e3d
MD
930 *
931 * @objd: the object descriptor
932 * @cmd: the command
933 * @arg: command arg
ef9ff354 934 * @uargs: UST arguments (internal)
f59ed768 935 * @owner: objd owner
e6c12e3d
MD
936 *
937 * This object descriptor implements lttng commands:
938 * LTTNG_UST_CONTEXT
939 * Prepend a context field to each record of events of this
e58095ef 940 * enabler.
e6c12e3d 941 * LTTNG_UST_ENABLE
e58095ef 942 * Enable recording for this enabler
e6c12e3d 943 * LTTNG_UST_DISABLE
e58095ef 944 * Disable recording for this enabler
2d78951a 945 * LTTNG_UST_FILTER
e58095ef 946 * Attach a filter to an enabler.
0bfb5cbd
JI
947 * LTTNG_UST_EXCLUSION
948 * Attach exclusions to an enabler.
e6c12e3d
MD
949 */
950static
e58095ef 951long lttng_enabler_cmd(int objd, unsigned int cmd, unsigned long arg,
f59ed768 952 union ust_args *uargs, void *owner)
e6c12e3d 953{
e58095ef 954 struct lttng_enabler *enabler = objd_private(objd);
e6c12e3d
MD
955
956 switch (cmd) {
957 case LTTNG_UST_CONTEXT:
e58095ef
MD
958 return lttng_enabler_attach_context(enabler,
959 (struct lttng_ust_context *) arg);
e6c12e3d 960 case LTTNG_UST_ENABLE:
e58095ef 961 return lttng_enabler_enable(enabler);
e6c12e3d 962 case LTTNG_UST_DISABLE:
e58095ef 963 return lttng_enabler_disable(enabler);
2d78951a
MD
964 case LTTNG_UST_FILTER:
965 {
966 int ret;
967
e58095ef 968 ret = lttng_enabler_attach_bytecode(enabler,
f488575f 969 (struct lttng_ust_filter_bytecode_node *) arg);
2d78951a
MD
970 if (ret)
971 return ret;
2d78951a
MD
972 return 0;
973 }
0bfb5cbd
JI
974 case LTTNG_UST_EXCLUSION:
975 {
976 return lttng_enabler_attach_exclusion(enabler,
977 (struct lttng_ust_excluder_node *) arg);
978 }
e6c12e3d
MD
979 default:
980 return -EINVAL;
981 }
982}
983
984static
e58095ef 985int lttng_enabler_release(int objd)
e6c12e3d 986{
e58095ef 987 struct lttng_enabler *enabler = objd_private(objd);
e6c12e3d 988
e58095ef 989 if (enabler)
1849ef7c 990 return lttng_ust_objd_unref(enabler->chan->objd, 0);
e6c12e3d
MD
991 return 0;
992}
993
e58095ef
MD
994static const struct lttng_ust_objd_ops lttng_enabler_ops = {
995 .release = lttng_enabler_release,
996 .cmd = lttng_enabler_cmd,
e6c12e3d
MD
997};
998
b35d179d 999void lttng_ust_abi_exit(void)
f4681817 1000{
45e9e699 1001 lttng_ust_abi_close_in_progress = 1;
701a658f 1002 ust_lock_nocheck();
f4681817 1003 objd_table_destroy();
701a658f 1004 ust_unlock();
45e9e699 1005 lttng_ust_abi_close_in_progress = 0;
f4681817 1006}
This page took 0.092963 seconds and 5 git commands to generate.