Move the ringbuffer and counter clients to 'src/common/'
[lttng-ust.git] / src / lib / lttng-ust / lttng-ust-abi.c
CommitLineData
f4681817 1/*
c0c0989a 2 * SPDX-License-Identifier: LGPL-2.1-only
f4681817 3 *
e92f3e28
MD
4 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
c0c0989a 6 * LTTng UST ABI
e92f3e28 7 *
f4681817
MD
8 * Mimic system calls for:
9 * - session creation, returns an object descriptor or failure.
10 * - channel creation, returns an object descriptor or failure.
11 * - Operates on a session object descriptor
12 * - Takes all channel options as parameters.
13 * - stream get, returns an object descriptor or failure.
14 * - Operates on a channel object descriptor.
15 * - stream notifier get, returns an object descriptor or failure.
16 * - Operates on a channel object descriptor.
17 * - event creation, returns an object descriptor or failure.
18 * - Operates on a channel object descriptor
19 * - Takes an event name as parameter
20 * - Takes an instrumentation source as parameter
21 * - e.g. tracepoints, dynamic_probes...
22 * - Takes instrumentation source specific arguments.
f4681817
MD
23 */
24
3fbec7dc 25#define _LGPL_SOURCE
d8d2416d 26#include <fcntl.h>
fb31eb73 27#include <stdint.h>
4e79769f 28#include <unistd.h>
fb31eb73 29
f4681817
MD
30#include <urcu/compiler.h>
31#include <urcu/list.h>
fb31eb73 32
fb31eb73
FD
33#include <lttng/tracepoint.h>
34#include <lttng/ust-abi.h>
35#include <lttng/ust-error.h>
4318ae1b 36#include <lttng/ust-events.h>
23c8854a 37#include <lttng/ust-version.h>
9d315d6d
MJ
38
39#include "common/ust-fd.h"
40#include "common/logging.h"
fb31eb73 41
e4db8f98
MJ
42#include "common/ringbuffer/frontend_types.h"
43#include "common/ringbuffer/frontend.h"
44#include "common/ringbuffer/shm.h"
cdff92e0 45#include "common/counter/counter.h"
8f51c684 46#include "common/tracepoint.h"
8cd08025 47#include "common/tracer.h"
b8aa6f43 48#include "common/strutils.h"
36c52fff 49#include "lib/lttng-ust/events.h"
8cd08025 50#include "lib/lttng-ust/lttng-tracer-core.h"
fc80554e 51#include "context-internal.h"
9d315d6d 52#include "common/macros.h"
4ab44fbe 53
7047f3da
MD
54#define OBJ_NAME_LEN 16
55
45e9e699
MD
56static int lttng_ust_abi_close_in_progress;
57
51489cad 58static
f59ed768 59int lttng_abi_tracepoint_list(void *owner);
06d4f27e 60static
f59ed768 61int lttng_abi_tracepoint_field_list(void *owner);
51489cad 62
f4681817
MD
63/*
64 * Object descriptor table. Should be protected from concurrent access
65 * by the caller.
66 */
67
fd17d7ce 68struct lttng_ust_abi_obj {
f4681817
MD
69 union {
70 struct {
71 void *private_data;
fd17d7ce 72 const struct lttng_ust_abi_objd_ops *ops;
f4681817 73 int f_count;
1849ef7c 74 int owner_ref; /* has ref from owner */
f59ed768 75 void *owner;
7047f3da 76 char name[OBJ_NAME_LEN];
f4681817
MD
77 } s;
78 int freelist_next; /* offset freelist. end is -1. */
79 } u;
80};
81
fd17d7ce
MD
82struct lttng_ust_abi_objd_table {
83 struct lttng_ust_abi_obj *array;
f4681817
MD
84 unsigned int len, allocated_len;
85 int freelist_head; /* offset freelist head. end is -1 */
86};
87
fd17d7ce 88static struct lttng_ust_abi_objd_table objd_table = {
f4681817
MD
89 .freelist_head = -1,
90};
91
92static
fd17d7ce 93int objd_alloc(void *private_data, const struct lttng_ust_abi_objd_ops *ops,
7047f3da 94 void *owner, const char *name)
f4681817 95{
fd17d7ce 96 struct lttng_ust_abi_obj *obj;
f4681817
MD
97
98 if (objd_table.freelist_head != -1) {
99 obj = &objd_table.array[objd_table.freelist_head];
100 objd_table.freelist_head = obj->u.freelist_next;
101 goto end;
102 }
103
104 if (objd_table.len >= objd_table.allocated_len) {
105 unsigned int new_allocated_len, old_allocated_len;
fd17d7ce 106 struct lttng_ust_abi_obj *new_table, *old_table;
f4681817
MD
107
108 old_allocated_len = objd_table.allocated_len;
109 old_table = objd_table.array;
110 if (!old_allocated_len)
111 new_allocated_len = 1;
112 else
113 new_allocated_len = old_allocated_len << 1;
fd17d7ce 114 new_table = zmalloc(sizeof(struct lttng_ust_abi_obj) * new_allocated_len);
f4681817
MD
115 if (!new_table)
116 return -ENOMEM;
117 memcpy(new_table, old_table,
fd17d7ce 118 sizeof(struct lttng_ust_abi_obj) * old_allocated_len);
f4681817
MD
119 free(old_table);
120 objd_table.array = new_table;
121 objd_table.allocated_len = new_allocated_len;
122 }
123 obj = &objd_table.array[objd_table.len];
124 objd_table.len++;
125end:
126 obj->u.s.private_data = private_data;
127 obj->u.s.ops = ops;
a4be8962
MD
128 obj->u.s.f_count = 2; /* count == 1 : object is allocated */
129 /* count == 2 : allocated + hold ref */
1849ef7c 130 obj->u.s.owner_ref = 1; /* One owner reference */
f59ed768 131 obj->u.s.owner = owner;
7047f3da
MD
132 strncpy(obj->u.s.name, name, OBJ_NAME_LEN);
133 obj->u.s.name[OBJ_NAME_LEN - 1] = '\0';
f4681817
MD
134 return obj - objd_table.array;
135}
136
137static
fd17d7ce 138struct lttng_ust_abi_obj *_objd_get(int id)
f4681817
MD
139{
140 if (id >= objd_table.len)
141 return NULL;
a4be8962
MD
142 if (!objd_table.array[id].u.s.f_count)
143 return NULL;
f4681817
MD
144 return &objd_table.array[id];
145}
146
147static
148void *objd_private(int id)
149{
fd17d7ce 150 struct lttng_ust_abi_obj *obj = _objd_get(id);
f4681817
MD
151 assert(obj);
152 return obj->u.s.private_data;
153}
154
155static
156void objd_set_private(int id, void *private_data)
157{
fd17d7ce 158 struct lttng_ust_abi_obj *obj = _objd_get(id);
f4681817
MD
159 assert(obj);
160 obj->u.s.private_data = private_data;
161}
162
fd17d7ce 163const struct lttng_ust_abi_objd_ops *lttng_ust_abi_objd_ops(int id)
f4681817 164{
fd17d7ce 165 struct lttng_ust_abi_obj *obj = _objd_get(id);
46050b1a 166
a4be8962
MD
167 if (!obj)
168 return NULL;
f4681817
MD
169 return obj->u.s.ops;
170}
171
172static
173void objd_free(int id)
174{
fd17d7ce 175 struct lttng_ust_abi_obj *obj = _objd_get(id);
f4681817
MD
176
177 assert(obj);
178 obj->u.freelist_next = objd_table.freelist_head;
179 objd_table.freelist_head = obj - objd_table.array;
a4be8962
MD
180 assert(obj->u.s.f_count == 1);
181 obj->u.s.f_count = 0; /* deallocated */
f4681817
MD
182}
183
184static
185void objd_ref(int id)
186{
fd17d7ce 187 struct lttng_ust_abi_obj *obj = _objd_get(id);
072886c4 188 assert(obj != NULL);
f4681817
MD
189 obj->u.s.f_count++;
190}
191
fd17d7ce 192int lttng_ust_abi_objd_unref(int id, int is_owner)
f4681817 193{
fd17d7ce 194 struct lttng_ust_abi_obj *obj = _objd_get(id);
f4681817 195
1ea11eab
MD
196 if (!obj)
197 return -EINVAL;
a4be8962
MD
198 if (obj->u.s.f_count == 1) {
199 ERR("Reference counting error\n");
200 return -EINVAL;
201 }
1849ef7c
MD
202 if (is_owner) {
203 if (!obj->u.s.owner_ref) {
204 ERR("Error decrementing owner reference");
205 return -EINVAL;
206 }
207 obj->u.s.owner_ref--;
208 }
a4be8962 209 if ((--obj->u.s.f_count) == 1) {
fd17d7ce 210 const struct lttng_ust_abi_objd_ops *ops = lttng_ust_abi_objd_ops(id);
196ec2df 211
f4681817
MD
212 if (ops->release)
213 ops->release(id);
214 objd_free(id);
215 }
1ea11eab 216 return 0;
f4681817
MD
217}
218
219static
220void objd_table_destroy(void)
221{
a4be8962
MD
222 int i;
223
1849ef7c 224 for (i = 0; i < objd_table.allocated_len; i++) {
fd17d7ce 225 struct lttng_ust_abi_obj *obj;
1849ef7c
MD
226
227 obj = _objd_get(i);
228 if (!obj)
229 continue;
230 if (!obj->u.s.owner_ref)
231 continue; /* only unref owner ref. */
fd17d7ce 232 (void) lttng_ust_abi_objd_unref(i, 1);
1849ef7c 233 }
f4681817 234 free(objd_table.array);
02fb3381
MD
235 objd_table.array = NULL;
236 objd_table.len = 0;
237 objd_table.allocated_len = 0;
17dfb34b 238 objd_table.freelist_head = -1;
f4681817
MD
239}
240
74d81a6c
MD
241const char *lttng_ust_obj_get_name(int id)
242{
fd17d7ce 243 struct lttng_ust_abi_obj *obj = _objd_get(id);
74d81a6c
MD
244
245 if (!obj)
246 return NULL;
247 return obj->u.s.name;
248}
249
fd17d7ce 250void lttng_ust_abi_objd_table_owner_cleanup(void *owner)
f59ed768
MD
251{
252 int i;
253
254 for (i = 0; i < objd_table.allocated_len; i++) {
fd17d7ce 255 struct lttng_ust_abi_obj *obj;
f59ed768
MD
256
257 obj = _objd_get(i);
258 if (!obj)
259 continue;
260 if (!obj->u.s.owner)
261 continue; /* skip root handles */
1849ef7c
MD
262 if (!obj->u.s.owner_ref)
263 continue; /* only unref owner ref. */
f59ed768 264 if (obj->u.s.owner == owner)
fd17d7ce 265 (void) lttng_ust_abi_objd_unref(i, 1);
f59ed768
MD
266 }
267}
268
f4681817
MD
269/*
270 * This is LTTng's own personal way to create an ABI for sessiond.
271 * We send commands over a socket.
272 */
273
fd17d7ce
MD
274static const struct lttng_ust_abi_objd_ops lttng_ops;
275static const struct lttng_ust_abi_objd_ops lttng_event_notifier_group_ops;
276static const struct lttng_ust_abi_objd_ops lttng_session_ops;
277static const struct lttng_ust_abi_objd_ops lttng_channel_ops;
278static const struct lttng_ust_abi_objd_ops lttng_event_enabler_ops;
279static const struct lttng_ust_abi_objd_ops lttng_event_notifier_enabler_ops;
280static const struct lttng_ust_abi_objd_ops lttng_tracepoint_list_ops;
281static const struct lttng_ust_abi_objd_ops lttng_tracepoint_field_list_ops;
f4681817 282
46050b1a
MD
283int lttng_abi_create_root_handle(void)
284{
285 int root_handle;
286
f59ed768 287 /* root handles have NULL owners */
7047f3da 288 root_handle = objd_alloc(NULL, &lttng_ops, NULL, "root");
46050b1a
MD
289 return root_handle;
290}
291
74d81a6c 292static
e7bc0ef6 293int lttng_is_channel_ready(struct lttng_ust_channel_buffer *lttng_chan)
74d81a6c 294{
b5457df5 295 struct lttng_ust_ring_buffer_channel *chan;
74d81a6c
MD
296 unsigned int nr_streams, exp_streams;
297
07539b34
MD
298 chan = lttng_chan->priv->rb_chan;
299 nr_streams = channel_handle_get_nr_streams(lttng_chan->priv->rb_chan->handle);
74d81a6c
MD
300 exp_streams = chan->nr_streams;
301 return nr_streams == exp_streams;
302}
303
818173b9 304static
f59ed768 305int lttng_abi_create_session(void *owner)
f4681817 306{
f69fe5fb 307 struct lttng_ust_session *session;
f4681817
MD
308 int session_objd, ret;
309
7dd08bec 310 session = lttng_session_create();
f4681817
MD
311 if (!session)
312 return -ENOMEM;
7047f3da 313 session_objd = objd_alloc(session, &lttng_session_ops, owner, "session");
f4681817
MD
314 if (session_objd < 0) {
315 ret = session_objd;
316 goto objd_error;
317 }
bdb12629
MD
318 session->priv->objd = session_objd;
319 session->priv->owner = owner;
f4681817
MD
320 return session_objd;
321
322objd_error:
7dd08bec 323 lttng_session_destroy(session);
f4681817
MD
324 return ret;
325}
326
f4681817 327static
2208d8b5 328long lttng_abi_tracer_version(int objd __attribute__((unused)),
fd17d7ce 329 struct lttng_ust_abi_tracer_version *v)
f4681817 330{
32ce8569
MD
331 v->major = LTTNG_UST_MAJOR_VERSION;
332 v->minor = LTTNG_UST_MINOR_VERSION;
333 v->patchlevel = LTTNG_UST_PATCHLEVEL_VERSION;
f4681817
MD
334 return 0;
335}
336
d8d2416d 337static
f52e5902 338int lttng_abi_event_notifier_send_fd(void *owner, int *event_notifier_notif_fd)
d8d2416d
FD
339{
340 struct lttng_event_notifier_group *event_notifier_group;
f52e5902 341 int event_notifier_group_objd, ret, fd_flag;
d8d2416d
FD
342
343 event_notifier_group = lttng_event_notifier_group_create();
344 if (!event_notifier_group)
345 return -ENOMEM;
346
347 /*
348 * Set this file descriptor as NON-BLOCKING.
349 */
f52e5902 350 fd_flag = fcntl(*event_notifier_notif_fd, F_GETFL);
d8d2416d
FD
351
352 fd_flag |= O_NONBLOCK;
353
f52e5902 354 ret = fcntl(*event_notifier_notif_fd, F_SETFL, fd_flag);
d8d2416d
FD
355 if (ret) {
356 ret = -errno;
357 goto fd_error;
358 }
359
360 event_notifier_group_objd = objd_alloc(event_notifier_group,
361 &lttng_event_notifier_group_ops, owner, "event_notifier_group");
362 if (event_notifier_group_objd < 0) {
363 ret = event_notifier_group_objd;
364 goto objd_error;
365 }
366
367 event_notifier_group->objd = event_notifier_group_objd;
368 event_notifier_group->owner = owner;
f52e5902
MD
369 event_notifier_group->notification_fd = *event_notifier_notif_fd;
370 /* Object descriptor takes ownership of notification fd. */
371 *event_notifier_notif_fd = -1;
d8d2416d
FD
372
373 return event_notifier_group_objd;
374
375objd_error:
376 lttng_event_notifier_group_destroy(event_notifier_group);
377fd_error:
d8d2416d
FD
378 return ret;
379}
380
f4681817 381static
2208d8b5 382long lttng_abi_add_context(int objd __attribute__((unused)),
fd17d7ce
MD
383 struct lttng_ust_abi_context *context_param,
384 union lttng_ust_abi_args *uargs,
f69fe5fb 385 struct lttng_ust_ctx **ctx, struct lttng_ust_session *session)
f4681817 386{
8e696cfa 387 return lttng_attach_context(context_param, uargs, ctx, session);
f4681817
MD
388}
389
390/**
391 * lttng_cmd - lttng control through socket commands
392 *
393 * @objd: the object descriptor
394 * @cmd: the command
395 * @arg: command arg
ef9ff354 396 * @uargs: UST arguments (internal)
f59ed768 397 * @owner: objd owner
f4681817
MD
398 *
399 * This descriptor implements lttng commands:
fd17d7ce 400 * LTTNG_UST_ABI_SESSION
f4681817 401 * Returns a LTTng trace session object descriptor
fd17d7ce 402 * LTTNG_UST_ABI_TRACER_VERSION
f4681817 403 * Returns the LTTng kernel tracer version
fd17d7ce 404 * LTTNG_UST_ABI_TRACEPOINT_LIST
f4681817 405 * Returns a file descriptor listing available tracepoints
fd17d7ce 406 * LTTNG_UST_ABI_TRACEPOINT_FIELD_LIST
06d4f27e 407 * Returns a file descriptor listing available tracepoint fields
fd17d7ce 408 * LTTNG_UST_ABI_WAIT_QUIESCENT
f4681817
MD
409 * Returns after all previously running probes have completed
410 *
411 * The returned session will be deleted when its file descriptor is closed.
412 */
413static
ef9ff354 414long lttng_cmd(int objd, unsigned int cmd, unsigned long arg,
fd17d7ce 415 union lttng_ust_abi_args *uargs, void *owner)
f4681817
MD
416{
417 switch (cmd) {
fd17d7ce 418 case LTTNG_UST_ABI_SESSION:
f59ed768 419 return lttng_abi_create_session(owner);
fd17d7ce 420 case LTTNG_UST_ABI_TRACER_VERSION:
f4681817 421 return lttng_abi_tracer_version(objd,
fd17d7ce
MD
422 (struct lttng_ust_abi_tracer_version *) arg);
423 case LTTNG_UST_ABI_TRACEPOINT_LIST:
f59ed768 424 return lttng_abi_tracepoint_list(owner);
fd17d7ce 425 case LTTNG_UST_ABI_TRACEPOINT_FIELD_LIST:
f59ed768 426 return lttng_abi_tracepoint_field_list(owner);
fd17d7ce 427 case LTTNG_UST_ABI_WAIT_QUIESCENT:
b653ddc1 428 lttng_ust_urcu_synchronize_rcu();
f4681817 429 return 0;
fd17d7ce 430 case LTTNG_UST_ABI_EVENT_NOTIFIER_GROUP_CREATE:
d8d2416d 431 return lttng_abi_event_notifier_send_fd(owner,
f52e5902 432 &uargs->event_notifier_handle.event_notifier_notif_fd);
f4681817
MD
433 default:
434 return -EINVAL;
435 }
436}
437
fd17d7ce 438static const struct lttng_ust_abi_objd_ops lttng_ops = {
f4681817
MD
439 .cmd = lttng_cmd,
440};
441
04a351cb 442static
74d81a6c 443int lttng_abi_map_channel(int session_objd,
fd17d7ce
MD
444 struct lttng_ust_abi_channel *ust_chan,
445 union lttng_ust_abi_args *uargs,
74d81a6c 446 void *owner)
f4681817 447{
f69fe5fb 448 struct lttng_ust_session *session = objd_private(session_objd);
f4681817 449 const char *transport_name;
a084756d 450 struct lttng_transport *transport;
74d81a6c 451 const char *chan_name;
f4681817 452 int chan_objd;
74d81a6c 453 struct lttng_ust_shm_handle *channel_handle;
f0fde1c3 454 struct lttng_ust_abi_channel_config *lttng_chan_config;
e7bc0ef6 455 struct lttng_ust_channel_buffer *lttng_chan_buf;
b5457df5
MD
456 struct lttng_ust_ring_buffer_channel *chan;
457 struct lttng_ust_ring_buffer_config *config;
74d81a6c 458 void *chan_data;
ff0f5728 459 int wakeup_fd;
74d81a6c
MD
460 uint64_t len;
461 int ret;
fd17d7ce 462 enum lttng_ust_abi_chan_type type;
74d81a6c
MD
463
464 chan_data = uargs->channel.chan_data;
ff0f5728 465 wakeup_fd = uargs->channel.wakeup_fd;
74d81a6c
MD
466 len = ust_chan->len;
467 type = ust_chan->type;
468
469 switch (type) {
fd17d7ce 470 case LTTNG_UST_ABI_CHAN_PER_CPU:
74d81a6c
MD
471 break;
472 default:
ff0f5728
MD
473 ret = -EINVAL;
474 goto invalid;
74d81a6c
MD
475 }
476
bdb12629 477 if (session->priv->been_active) {
74d81a6c
MD
478 ret = -EBUSY;
479 goto active; /* Refuse to add channel to active session */
480 }
f4681817 481
e7bc0ef6
MD
482 lttng_chan_buf = lttng_ust_alloc_channel_buffer();
483 if (!lttng_chan_buf) {
f0fde1c3 484 ret = -ENOMEM;
e7bc0ef6 485 goto lttng_chan_buf_error;
f0fde1c3
MD
486 }
487
ff0f5728 488 channel_handle = channel_handle_create(chan_data, len, wakeup_fd);
74d81a6c
MD
489 if (!channel_handle) {
490 ret = -EINVAL;
491 goto handle_error;
492 }
493
867942fd
MD
494 /* Ownership of chan_data and wakeup_fd taken by channel handle. */
495 uargs->channel.chan_data = NULL;
496 uargs->channel.wakeup_fd = -1;
497
74d81a6c
MD
498 chan = shmp(channel_handle, channel_handle->chan);
499 assert(chan);
03d2d293 500 chan->handle = channel_handle;
74d81a6c 501 config = &chan->backend.config;
f0fde1c3
MD
502 lttng_chan_config = channel_get_private_config(chan);
503 if (!lttng_chan_config) {
74d81a6c
MD
504 ret = -EINVAL;
505 goto alloc_error;
506 }
507
9daacd1a
MD
508 if (lttng_ust_session_uuid_validate(session, lttng_chan_config->uuid)) {
509 ret = -EINVAL;
510 goto uuid_error;
511 }
512
74d81a6c
MD
513 /* Lookup transport name */
514 switch (type) {
fd17d7ce 515 case LTTNG_UST_ABI_CHAN_PER_CPU:
74d81a6c 516 if (config->output == RING_BUFFER_MMAP) {
34a91bdb
MD
517 if (config->mode == RING_BUFFER_OVERWRITE) {
518 if (config->wakeup == RING_BUFFER_WAKEUP_BY_WRITER) {
519 transport_name = "relay-overwrite-mmap";
520 } else {
521 transport_name = "relay-overwrite-rt-mmap";
522 }
523 } else {
524 if (config->wakeup == RING_BUFFER_WAKEUP_BY_WRITER) {
525 transport_name = "relay-discard-mmap";
526 } else {
527 transport_name = "relay-discard-rt-mmap";
528 }
529 }
f4681817 530 } else {
74d81a6c
MD
531 ret = -EINVAL;
532 goto notransport;
f4681817 533 }
74d81a6c 534 chan_name = "channel";
f4681817 535 break;
f4681817 536 default:
74d81a6c
MD
537 ret = -EINVAL;
538 goto notransport;
fe38d4af 539 }
65c48d6a 540 transport = lttng_ust_transport_find(transport_name);
74d81a6c
MD
541 if (!transport) {
542 DBG("LTTng transport %s not found\n",
543 transport_name);
544 ret = -EINVAL;
545 goto notransport;
546 }
547
548 chan_objd = objd_alloc(NULL, &lttng_channel_ops, owner, chan_name);
fe38d4af
MD
549 if (chan_objd < 0) {
550 ret = chan_objd;
551 goto objd_error;
f4681817 552 }
74d81a6c
MD
553
554 /* Initialize our lttng chan */
e7bc0ef6
MD
555 lttng_chan_buf->parent->enabled = 1;
556 lttng_chan_buf->parent->session = session;
557
558 lttng_chan_buf->priv->parent.tstate = 1;
0950190a 559 lttng_chan_buf->priv->ctx = NULL;
07539b34 560 lttng_chan_buf->priv->rb_chan = chan;
e7bc0ef6 561
e7bc0ef6 562 lttng_chan_buf->ops = &transport->ops;
e7bc0ef6
MD
563
564 memcpy(&chan->backend.config,
74d81a6c 565 transport->client_config,
e7bc0ef6
MD
566 sizeof(chan->backend.config));
567 cds_list_add(&lttng_chan_buf->priv->node, &session->priv->chan_head);
568 lttng_chan_buf->priv->header_type = 0;
569 lttng_chan_buf->priv->type = type;
f0fde1c3 570 /* Copy fields from lttng ust chan config. */
e7bc0ef6
MD
571 lttng_chan_buf->priv->id = lttng_chan_config->id;
572 memcpy(lttng_chan_buf->priv->uuid, lttng_chan_config->uuid, LTTNG_UST_UUID_LEN);
573 channel_set_private(chan, lttng_chan_buf);
74d81a6c 574
f4681817
MD
575 /*
576 * We tolerate no failure path after channel creation. It will stay
577 * invariant for the rest of the session.
578 */
e7bc0ef6
MD
579 objd_set_private(chan_objd, lttng_chan_buf);
580 lttng_chan_buf->priv->parent.objd = chan_objd;
f4681817
MD
581 /* The channel created holds a reference on the session */
582 objd_ref(session_objd);
f4681817
MD
583 return chan_objd;
584
ff0f5728 585 /* error path after channel was created */
f4681817 586objd_error:
74d81a6c 587notransport:
9daacd1a 588uuid_error:
74d81a6c
MD
589alloc_error:
590 channel_destroy(chan, channel_handle, 0);
e7bc0ef6 591 lttng_ust_free_channel_common(lttng_chan_buf->parent);
ff0f5728
MD
592 return ret;
593
74d81a6c 594handle_error:
e7bc0ef6
MD
595 lttng_ust_free_channel_common(lttng_chan_buf->parent);
596lttng_chan_buf_error:
74d81a6c 597active:
ff0f5728 598invalid:
f4681817
MD
599 return ret;
600}
601
602/**
603 * lttng_session_cmd - lttng session object command
604 *
605 * @obj: the object
606 * @cmd: the command
607 * @arg: command arg
ef9ff354 608 * @uargs: UST arguments (internal)
f59ed768 609 * @owner: objd owner
f4681817
MD
610 *
611 * This descriptor implements lttng commands:
fd17d7ce 612 * LTTNG_UST_ABI_CHANNEL
f4681817 613 * Returns a LTTng channel object descriptor
fd17d7ce 614 * LTTNG_UST_ABI_ENABLE
f4681817 615 * Enables tracing for a session (weak enable)
fd17d7ce 616 * LTTNG_UST_ABI_DISABLE
f4681817 617 * Disables tracing for a session (strong disable)
f4681817
MD
618 *
619 * The returned channel will be deleted when its file descriptor is closed.
620 */
621static
ef9ff354 622long lttng_session_cmd(int objd, unsigned int cmd, unsigned long arg,
fd17d7ce 623 union lttng_ust_abi_args *uargs, void *owner)
f4681817 624{
f69fe5fb 625 struct lttng_ust_session *session = objd_private(objd);
f4681817
MD
626
627 switch (cmd) {
fd17d7ce 628 case LTTNG_UST_ABI_CHANNEL:
74d81a6c 629 return lttng_abi_map_channel(objd,
fd17d7ce 630 (struct lttng_ust_abi_channel *) arg,
74d81a6c 631 uargs, owner);
fd17d7ce
MD
632 case LTTNG_UST_ABI_SESSION_START:
633 case LTTNG_UST_ABI_ENABLE:
7dd08bec 634 return lttng_session_enable(session);
fd17d7ce
MD
635 case LTTNG_UST_ABI_SESSION_STOP:
636 case LTTNG_UST_ABI_DISABLE:
7dd08bec 637 return lttng_session_disable(session);
fd17d7ce 638 case LTTNG_UST_ABI_SESSION_STATEDUMP:
710b8ee3 639 return lttng_session_statedump(session);
fd17d7ce
MD
640 case LTTNG_UST_ABI_COUNTER:
641 case LTTNG_UST_ABI_COUNTER_GLOBAL:
642 case LTTNG_UST_ABI_COUNTER_CPU:
ebabbf58
MD
643 /* Not implemented yet. */
644 return -EINVAL;
f4681817
MD
645 default:
646 return -EINVAL;
647 }
648}
649
650/*
651 * Called when the last file reference is dropped.
652 *
653 * Big fat note: channels and events are invariant for the whole session after
654 * their creation. So this session destruction also destroys all channel and
655 * event structures specific to this session (they are not destroyed when their
656 * individual file is released).
657 */
658static
1ea11eab 659int lttng_release_session(int objd)
f4681817 660{
f69fe5fb 661 struct lttng_ust_session *session = objd_private(objd);
f4681817 662
1ea11eab 663 if (session) {
7dd08bec 664 lttng_session_destroy(session);
1ea11eab
MD
665 return 0;
666 } else {
667 return -EINVAL;
668 }
f4681817
MD
669}
670
fd17d7ce 671static const struct lttng_ust_abi_objd_ops lttng_session_ops = {
1ea11eab 672 .release = lttng_release_session,
f4681817
MD
673 .cmd = lttng_session_cmd,
674};
675
d8d2416d 676static int lttng_ust_event_notifier_enabler_create(int event_notifier_group_obj,
fd17d7ce 677 void *owner, struct lttng_ust_abi_event_notifier *event_notifier_param,
d8d2416d
FD
678 enum lttng_enabler_format_type type)
679{
680 struct lttng_event_notifier_group *event_notifier_group =
681 objd_private(event_notifier_group_obj);
682 struct lttng_event_notifier_enabler *event_notifier_enabler;
683 int event_notifier_objd, ret;
684
fd17d7ce 685 event_notifier_param->event.name[LTTNG_UST_ABI_SYM_NAME_LEN - 1] = '\0';
d8d2416d
FD
686 event_notifier_objd = objd_alloc(NULL, &lttng_event_notifier_enabler_ops, owner,
687 "event_notifier enabler");
688 if (event_notifier_objd < 0) {
689 ret = event_notifier_objd;
690 goto objd_error;
691 }
692
693 event_notifier_enabler = lttng_event_notifier_enabler_create(
694 event_notifier_group, type, event_notifier_param);
695 if (!event_notifier_enabler) {
696 ret = -ENOMEM;
697 goto event_notifier_error;
698 }
699
700 objd_set_private(event_notifier_objd, event_notifier_enabler);
701 /* The event_notifier holds a reference on the event_notifier group. */
702 objd_ref(event_notifier_enabler->group->objd);
703
704 return event_notifier_objd;
705
706event_notifier_error:
707 {
708 int err;
709
fd17d7ce 710 err = lttng_ust_abi_objd_unref(event_notifier_objd, 1);
d8d2416d
FD
711 assert(!err);
712 }
713objd_error:
714 return ret;
715}
716
717static
718long lttng_event_notifier_enabler_cmd(int objd, unsigned int cmd, unsigned long arg,
2208d8b5
MJ
719 union lttng_ust_abi_args *uargs __attribute__((unused)),
720 void *owner __attribute__((unused)))
d8d2416d
FD
721{
722 struct lttng_event_notifier_enabler *event_notifier_enabler = objd_private(objd);
723 switch (cmd) {
fd17d7ce 724 case LTTNG_UST_ABI_FILTER:
a56fd376
FD
725 return lttng_event_notifier_enabler_attach_filter_bytecode(
726 event_notifier_enabler,
ab89263e 727 (struct lttng_ust_bytecode_node **) arg);
fd17d7ce 728 case LTTNG_UST_ABI_EXCLUSION:
d8d2416d 729 return lttng_event_notifier_enabler_attach_exclusion(event_notifier_enabler,
e9fe6aad 730 (struct lttng_ust_excluder_node **) arg);
fd17d7ce 731 case LTTNG_UST_ABI_CAPTURE:
d37ecb3f
FD
732 return lttng_event_notifier_enabler_attach_capture_bytecode(
733 event_notifier_enabler,
49cde654 734 (struct lttng_ust_bytecode_node **) arg);
fd17d7ce 735 case LTTNG_UST_ABI_ENABLE:
d8d2416d 736 return lttng_event_notifier_enabler_enable(event_notifier_enabler);
fd17d7ce 737 case LTTNG_UST_ABI_DISABLE:
d8d2416d
FD
738 return lttng_event_notifier_enabler_disable(event_notifier_enabler);
739 default:
740 return -EINVAL;
741 }
742}
743
ebabbf58
MD
744/**
745 * lttng_event_notifier_group_error_counter_cmd - lttng event_notifier group error counter object command
746 *
747 * @obj: the object
748 * @cmd: the command
749 * @arg: command arg
750 * @uargs: UST arguments (internal)
751 * @owner: objd owner
752 *
753 * This descriptor implements lttng commands:
fd17d7ce 754 * LTTNG_UST_ABI_COUNTER_GLOBAL
ebabbf58 755 * Return negative error code on error, 0 on success.
fd17d7ce 756 * LTTNG_UST_ABI_COUNTER_CPU
ebabbf58
MD
757 * Return negative error code on error, 0 on success.
758 */
759static
760long lttng_event_notifier_group_error_counter_cmd(int objd, unsigned int cmd, unsigned long arg,
2208d8b5 761 union lttng_ust_abi_args *uargs, void *owner __attribute__((unused)))
ebabbf58 762{
ba5b3d2b 763 int ret;
ebabbf58
MD
764 struct lttng_counter *counter = objd_private(objd);
765
766 switch (cmd) {
fd17d7ce 767 case LTTNG_UST_ABI_COUNTER_GLOBAL:
ba5b3d2b
JR
768 ret = -EINVAL; /* Unimplemented. */
769 break;
fd17d7ce 770 case LTTNG_UST_ABI_COUNTER_CPU:
ebabbf58 771 {
fd17d7ce
MD
772 struct lttng_ust_abi_counter_cpu *counter_cpu =
773 (struct lttng_ust_abi_counter_cpu *)arg;
ba5b3d2b
JR
774
775 ret = lttng_counter_set_cpu_shm(counter->counter,
ebabbf58 776 counter_cpu->cpu_nr, uargs->counter_shm.shm_fd);
ba5b3d2b
JR
777 if (!ret) {
778 /* Take ownership of the shm_fd. */
779 uargs->counter_shm.shm_fd = -1;
780 }
781 break;
ebabbf58
MD
782 }
783 default:
ba5b3d2b
JR
784 ret = -EINVAL;
785 break;
ebabbf58 786 }
ba5b3d2b
JR
787
788 return ret;
ebabbf58
MD
789}
790
1d18d519
MJ
791int lttng_release_event_notifier_group_error_counter(int objd)
792 __attribute__((visibility("hidden")));
ebabbf58
MD
793int lttng_release_event_notifier_group_error_counter(int objd)
794{
795 struct lttng_counter *counter = objd_private(objd);
796
797 if (counter) {
fd17d7ce 798 return lttng_ust_abi_objd_unref(counter->event_notifier_group->objd, 0);
ebabbf58
MD
799 } else {
800 return -EINVAL;
801 }
802}
803
fd17d7ce 804static const struct lttng_ust_abi_objd_ops lttng_event_notifier_group_error_counter_ops = {
ebabbf58
MD
805 .release = lttng_release_event_notifier_group_error_counter,
806 .cmd = lttng_event_notifier_group_error_counter_cmd,
807};
808
809static
810int lttng_ust_event_notifier_group_create_error_counter(int event_notifier_group_objd, void *owner,
fd17d7ce 811 struct lttng_ust_abi_counter_conf *error_counter_conf)
ebabbf58
MD
812{
813 const char *counter_transport_name;
814 struct lttng_event_notifier_group *event_notifier_group =
815 objd_private(event_notifier_group_objd);
816 struct lttng_counter *counter;
817 int counter_objd, ret;
818 struct lttng_counter_dimension dimensions[1];
819 size_t counter_len;
820
821 if (event_notifier_group->error_counter)
822 return -EBUSY;
823
fd17d7ce 824 if (error_counter_conf->arithmetic != LTTNG_UST_ABI_COUNTER_ARITHMETIC_MODULAR)
ebabbf58
MD
825 return -EINVAL;
826
827 if (error_counter_conf->number_dimensions != 1)
828 return -EINVAL;
829
830 switch (error_counter_conf->bitness) {
fd17d7ce 831 case LTTNG_UST_ABI_COUNTER_BITNESS_64:
ebabbf58
MD
832 counter_transport_name = "counter-per-cpu-64-modular";
833 break;
fd17d7ce 834 case LTTNG_UST_ABI_COUNTER_BITNESS_32:
ebabbf58
MD
835 counter_transport_name = "counter-per-cpu-32-modular";
836 break;
837 default:
838 return -EINVAL;
839 }
840
841 counter_objd = objd_alloc(NULL, &lttng_event_notifier_group_error_counter_ops, owner,
842 "event_notifier group error counter");
843 if (counter_objd < 0) {
844 ret = counter_objd;
845 goto objd_error;
846 }
847
848 counter_len = error_counter_conf->dimensions[0].size;
849 dimensions[0].size = counter_len;
850 dimensions[0].underflow_index = 0;
851 dimensions[0].overflow_index = 0;
852 dimensions[0].has_underflow = 0;
853 dimensions[0].has_overflow = 0;
854
855 counter = lttng_ust_counter_create(counter_transport_name, 1, dimensions);
856 if (!counter) {
857 ret = -EINVAL;
858 goto create_error;
859 }
860
ebabbf58 861 event_notifier_group->error_counter_len = counter_len;
33f43caa
MD
862 /*
863 * store-release to publish error counter matches load-acquire
864 * in record_error. Ensures the counter is created and the
865 * error_counter_len is set before they are used.
866 * Currently a full memory barrier is used, which could be
867 * turned into acquire-release barriers.
868 */
869 cmm_smp_mb();
870 CMM_STORE_SHARED(event_notifier_group->error_counter, counter);
ebabbf58
MD
871
872 counter->objd = counter_objd;
873 counter->event_notifier_group = event_notifier_group; /* owner */
874
875 objd_set_private(counter_objd, counter);
876 /* The error counter holds a reference on the event_notifier group. */
877 objd_ref(event_notifier_group->objd);
878
879 return counter_objd;
880
881create_error:
882 {
883 int err;
884
fd17d7ce 885 err = lttng_ust_abi_objd_unref(counter_objd, 1);
ebabbf58
MD
886 assert(!err);
887 }
888objd_error:
889 return ret;
890}
891
d8d2416d
FD
892static
893long lttng_event_notifier_group_cmd(int objd, unsigned int cmd, unsigned long arg,
fd17d7ce 894 union lttng_ust_abi_args *uargs, void *owner)
d8d2416d
FD
895{
896 switch (cmd) {
fd17d7ce 897 case LTTNG_UST_ABI_EVENT_NOTIFIER_CREATE:
d8d2416d 898 {
fd17d7ce
MD
899 struct lttng_ust_abi_event_notifier *event_notifier_param =
900 (struct lttng_ust_abi_event_notifier *) arg;
d8d2416d
FD
901 if (strutils_is_star_glob_pattern(event_notifier_param->event.name)) {
902 /*
903 * If the event name is a star globbing pattern,
904 * we create the special star globbing enabler.
905 */
906 return lttng_ust_event_notifier_enabler_create(objd,
907 owner, event_notifier_param,
908 LTTNG_ENABLER_FORMAT_STAR_GLOB);
909 } else {
910 return lttng_ust_event_notifier_enabler_create(objd,
911 owner, event_notifier_param,
912 LTTNG_ENABLER_FORMAT_EVENT);
913 }
914 }
fd17d7ce 915 case LTTNG_UST_ABI_COUNTER:
ebabbf58 916 {
fd17d7ce
MD
917 struct lttng_ust_abi_counter_conf *counter_conf =
918 (struct lttng_ust_abi_counter_conf *) uargs->counter.counter_data;
ebabbf58
MD
919 return lttng_ust_event_notifier_group_create_error_counter(
920 objd, owner, counter_conf);
921 }
d8d2416d
FD
922 default:
923 return -EINVAL;
924 }
925}
926
927static
928int lttng_event_notifier_enabler_release(int objd)
929{
930 struct lttng_event_notifier_enabler *event_notifier_enabler = objd_private(objd);
931
932 if (event_notifier_enabler)
fd17d7ce 933 return lttng_ust_abi_objd_unref(event_notifier_enabler->group->objd, 0);
d8d2416d
FD
934 return 0;
935}
936
fd17d7ce 937static const struct lttng_ust_abi_objd_ops lttng_event_notifier_enabler_ops = {
d8d2416d
FD
938 .release = lttng_event_notifier_enabler_release,
939 .cmd = lttng_event_notifier_enabler_cmd,
940};
941
942static
943int lttng_release_event_notifier_group(int objd)
944{
945 struct lttng_event_notifier_group *event_notifier_group = objd_private(objd);
946
947 if (event_notifier_group) {
948 lttng_event_notifier_group_destroy(event_notifier_group);
949 return 0;
950 } else {
951 return -EINVAL;
952 }
953}
954
fd17d7ce 955static const struct lttng_ust_abi_objd_ops lttng_event_notifier_group_ops = {
d8d2416d
FD
956 .release = lttng_release_event_notifier_group,
957 .cmd = lttng_event_notifier_group_cmd,
958};
959
51489cad 960static
ef9ff354 961long lttng_tracepoint_list_cmd(int objd, unsigned int cmd, unsigned long arg,
2208d8b5
MJ
962 union lttng_ust_abi_args *uargs __attribute__((unused)),
963 void *owner __attribute__((unused)))
51489cad 964{
c8fcf224 965 struct lttng_ust_tracepoint_list *list = objd_private(objd);
fd17d7ce
MD
966 struct lttng_ust_abi_tracepoint_iter *tp =
967 (struct lttng_ust_abi_tracepoint_iter *) arg;
968 struct lttng_ust_abi_tracepoint_iter *iter;
51489cad
MD
969
970 switch (cmd) {
fd17d7ce 971 case LTTNG_UST_ABI_TRACEPOINT_LIST_GET:
c8fcf224 972 {
c8fcf224
MD
973 iter = lttng_ust_tracepoint_list_get_iter_next(list);
974 if (!iter)
7bc53e94 975 return -LTTNG_UST_ERR_NOENT;
c8fcf224 976 memcpy(tp, iter, sizeof(*tp));
51489cad 977 return 0;
c8fcf224 978 }
51489cad
MD
979 default:
980 return -EINVAL;
981 }
982}
983
984static
f59ed768 985int lttng_abi_tracepoint_list(void *owner)
51489cad
MD
986{
987 int list_objd, ret;
c8fcf224 988 struct lttng_ust_tracepoint_list *list;
51489cad 989
7047f3da 990 list_objd = objd_alloc(NULL, &lttng_tracepoint_list_ops, owner, "tp_list");
51489cad
MD
991 if (list_objd < 0) {
992 ret = list_objd;
993 goto objd_error;
994 }
995 list = zmalloc(sizeof(*list));
996 if (!list) {
997 ret = -ENOMEM;
998 goto alloc_error;
999 }
1000 objd_set_private(list_objd, list);
1001
c8fcf224 1002 /* populate list by walking on all registered probes. */
7dd08bec 1003 ret = lttng_probes_get_event_list(list);
c8fcf224
MD
1004 if (ret) {
1005 goto list_error;
1006 }
51489cad
MD
1007 return list_objd;
1008
c8fcf224
MD
1009list_error:
1010 free(list);
51489cad
MD
1011alloc_error:
1012 {
1013 int err;
1014
fd17d7ce 1015 err = lttng_ust_abi_objd_unref(list_objd, 1);
51489cad
MD
1016 assert(!err);
1017 }
1018objd_error:
1019 return ret;
1020}
1021
1022static
1023int lttng_release_tracepoint_list(int objd)
1024{
c8fcf224 1025 struct lttng_ust_tracepoint_list *list = objd_private(objd);
51489cad
MD
1026
1027 if (list) {
7dd08bec 1028 lttng_probes_prune_event_list(list);
51489cad
MD
1029 free(list);
1030 return 0;
1031 } else {
1032 return -EINVAL;
1033 }
1034}
1035
fd17d7ce 1036static const struct lttng_ust_abi_objd_ops lttng_tracepoint_list_ops = {
51489cad
MD
1037 .release = lttng_release_tracepoint_list,
1038 .cmd = lttng_tracepoint_list_cmd,
1039};
1040
06d4f27e
MD
1041static
1042long lttng_tracepoint_field_list_cmd(int objd, unsigned int cmd,
2208d8b5
MJ
1043 unsigned long arg __attribute__((unused)), union lttng_ust_abi_args *uargs,
1044 void *owner __attribute__((unused)))
06d4f27e
MD
1045{
1046 struct lttng_ust_field_list *list = objd_private(objd);
fd17d7ce
MD
1047 struct lttng_ust_abi_field_iter *tp = &uargs->field_list.entry;
1048 struct lttng_ust_abi_field_iter *iter;
06d4f27e
MD
1049
1050 switch (cmd) {
fd17d7ce 1051 case LTTNG_UST_ABI_TRACEPOINT_FIELD_LIST_GET:
06d4f27e 1052 {
06d4f27e
MD
1053 iter = lttng_ust_field_list_get_iter_next(list);
1054 if (!iter)
7bc53e94 1055 return -LTTNG_UST_ERR_NOENT;
06d4f27e
MD
1056 memcpy(tp, iter, sizeof(*tp));
1057 return 0;
1058 }
1059 default:
1060 return -EINVAL;
1061 }
1062}
1063
1064static
f59ed768 1065int lttng_abi_tracepoint_field_list(void *owner)
06d4f27e
MD
1066{
1067 int list_objd, ret;
1068 struct lttng_ust_field_list *list;
1069
7047f3da
MD
1070 list_objd = objd_alloc(NULL, &lttng_tracepoint_field_list_ops, owner,
1071 "tp_field_list");
06d4f27e
MD
1072 if (list_objd < 0) {
1073 ret = list_objd;
1074 goto objd_error;
1075 }
1076 list = zmalloc(sizeof(*list));
1077 if (!list) {
1078 ret = -ENOMEM;
1079 goto alloc_error;
1080 }
1081 objd_set_private(list_objd, list);
1082
1083 /* populate list by walking on all registered probes. */
7dd08bec 1084 ret = lttng_probes_get_field_list(list);
06d4f27e
MD
1085 if (ret) {
1086 goto list_error;
1087 }
1088 return list_objd;
1089
1090list_error:
1091 free(list);
1092alloc_error:
1093 {
1094 int err;
1095
fd17d7ce 1096 err = lttng_ust_abi_objd_unref(list_objd, 1);
06d4f27e
MD
1097 assert(!err);
1098 }
1099objd_error:
1100 return ret;
1101}
1102
1103static
1104int lttng_release_tracepoint_field_list(int objd)
1105{
1106 struct lttng_ust_field_list *list = objd_private(objd);
1107
1108 if (list) {
7dd08bec 1109 lttng_probes_prune_field_list(list);
06d4f27e
MD
1110 free(list);
1111 return 0;
1112 } else {
1113 return -EINVAL;
1114 }
1115}
1116
fd17d7ce 1117static const struct lttng_ust_abi_objd_ops lttng_tracepoint_field_list_ops = {
06d4f27e
MD
1118 .release = lttng_release_tracepoint_field_list,
1119 .cmd = lttng_tracepoint_field_list_cmd,
1120};
1121
f4681817 1122static
fd17d7ce 1123int lttng_abi_map_stream(int channel_objd, struct lttng_ust_abi_stream *info,
2208d8b5 1124 union lttng_ust_abi_args *uargs, void *owner __attribute__((unused)))
f4681817 1125{
e7bc0ef6 1126 struct lttng_ust_channel_buffer *lttng_chan_buf = objd_private(channel_objd);
74d81a6c 1127 int ret;
f4681817 1128
07539b34 1129 ret = channel_handle_add_stream(lttng_chan_buf->priv->rb_chan->handle,
74d81a6c
MD
1130 uargs->stream.shm_fd, uargs->stream.wakeup_fd,
1131 info->stream_nr, info->len);
1132 if (ret)
1133 goto error_add_stream;
118c051e
MD
1134 /* Take ownership of shm_fd and wakeup_fd. */
1135 uargs->stream.shm_fd = -1;
1136 uargs->stream.wakeup_fd = -1;
74d81a6c
MD
1137
1138 return 0;
1139
1140error_add_stream:
f4681817
MD
1141 return ret;
1142}
f4681817
MD
1143
1144static
d871c65b 1145int lttng_abi_create_event_enabler(int channel_objd,
fd17d7ce 1146 struct lttng_ust_abi_event *event_param,
e58095ef 1147 void *owner,
e450e339 1148 enum lttng_enabler_format_type format_type)
f4681817 1149{
e7bc0ef6 1150 struct lttng_ust_channel_buffer *channel = objd_private(channel_objd);
d871c65b 1151 struct lttng_event_enabler *enabler;
f4681817
MD
1152 int event_objd, ret;
1153
fd17d7ce 1154 event_param->name[LTTNG_UST_ABI_SYM_NAME_LEN - 1] = '\0';
d871c65b
FD
1155 event_objd = objd_alloc(NULL, &lttng_event_enabler_ops, owner,
1156 "event enabler");
f4681817
MD
1157 if (event_objd < 0) {
1158 ret = event_objd;
1159 goto objd_error;
1160 }
1161 /*
1162 * We tolerate no failure path after event creation. It will stay
1163 * invariant for the rest of the session.
1164 */
d871c65b 1165 enabler = lttng_event_enabler_create(format_type, event_param, channel);
e58095ef
MD
1166 if (!enabler) {
1167 ret = -ENOMEM;
f4681817
MD
1168 goto event_error;
1169 }
e58095ef 1170 objd_set_private(event_objd, enabler);
f4681817
MD
1171 /* The event holds a reference on the channel */
1172 objd_ref(channel_objd);
1173 return event_objd;
1174
1175event_error:
1ea11eab
MD
1176 {
1177 int err;
1178
fd17d7ce 1179 err = lttng_ust_abi_objd_unref(event_objd, 1);
1ea11eab
MD
1180 assert(!err);
1181 }
f4681817
MD
1182objd_error:
1183 return ret;
1184}
1185
1186/**
1187 * lttng_channel_cmd - lttng control through object descriptors
1188 *
1189 * @objd: the object descriptor
1190 * @cmd: the command
1191 * @arg: command arg
ef9ff354 1192 * @uargs: UST arguments (internal)
f59ed768 1193 * @owner: objd owner
f4681817
MD
1194 *
1195 * This object descriptor implements lttng commands:
fd17d7ce 1196 * LTTNG_UST_ABI_STREAM
f4681817
MD
1197 * Returns an event stream object descriptor or failure.
1198 * (typically, one event stream records events from one CPU)
fd17d7ce 1199 * LTTNG_UST_ABI_EVENT
f4681817 1200 * Returns an event object descriptor or failure.
fd17d7ce 1201 * LTTNG_UST_ABI_CONTEXT
f4681817 1202 * Prepend a context field to each event in the channel
fd17d7ce 1203 * LTTNG_UST_ABI_ENABLE
f4681817 1204 * Enable recording for events in this channel (weak enable)
fd17d7ce 1205 * LTTNG_UST_ABI_DISABLE
f4681817
MD
1206 * Disable recording for events in this channel (strong disable)
1207 *
1208 * Channel and event file descriptors also hold a reference on the session.
1209 */
1210static
ef9ff354 1211long lttng_channel_cmd(int objd, unsigned int cmd, unsigned long arg,
fd17d7ce 1212 union lttng_ust_abi_args *uargs, void *owner)
f4681817 1213{
e7bc0ef6 1214 struct lttng_ust_channel_buffer *lttng_chan_buf = objd_private(objd);
f4681817 1215
fd17d7ce 1216 if (cmd != LTTNG_UST_ABI_STREAM) {
74d81a6c
MD
1217 /*
1218 * Check if channel received all streams.
1219 */
e7bc0ef6 1220 if (!lttng_is_channel_ready(lttng_chan_buf))
74d81a6c
MD
1221 return -EPERM;
1222 }
1223
f4681817 1224 switch (cmd) {
fd17d7ce 1225 case LTTNG_UST_ABI_STREAM:
381c0f1e 1226 {
fd17d7ce 1227 struct lttng_ust_abi_stream *stream;
381c0f1e 1228
fd17d7ce 1229 stream = (struct lttng_ust_abi_stream *) arg;
381c0f1e 1230 /* stream used as output */
74d81a6c 1231 return lttng_abi_map_stream(objd, stream, uargs, owner);
381c0f1e 1232 }
fd17d7ce 1233 case LTTNG_UST_ABI_EVENT:
1f18504e 1234 {
fd17d7ce
MD
1235 struct lttng_ust_abi_event *event_param =
1236 (struct lttng_ust_abi_event *) arg;
196ec2df
PP
1237
1238 if (strutils_is_star_glob_pattern(event_param->name)) {
1239 /*
1240 * If the event name is a star globbing pattern,
1241 * we create the special star globbing enabler.
1242 */
d871c65b 1243 return lttng_abi_create_event_enabler(objd, event_param,
e450e339 1244 owner, LTTNG_ENABLER_FORMAT_STAR_GLOB);
1f18504e 1245 } else {
d871c65b 1246 return lttng_abi_create_event_enabler(objd, event_param,
e450e339 1247 owner, LTTNG_ENABLER_FORMAT_EVENT);
1f18504e
MD
1248 }
1249 }
fd17d7ce 1250 case LTTNG_UST_ABI_CONTEXT:
f4681817 1251 return lttng_abi_add_context(objd,
fd17d7ce 1252 (struct lttng_ust_abi_context *) arg, uargs,
0950190a 1253 &lttng_chan_buf->priv->ctx,
e7bc0ef6 1254 lttng_chan_buf->parent->session);
fd17d7ce 1255 case LTTNG_UST_ABI_ENABLE:
e7bc0ef6 1256 return lttng_channel_enable(lttng_chan_buf->parent);
fd17d7ce 1257 case LTTNG_UST_ABI_DISABLE:
e7bc0ef6 1258 return lttng_channel_disable(lttng_chan_buf->parent);
fd17d7ce 1259 case LTTNG_UST_ABI_FLUSH_BUFFER:
07539b34 1260 return lttng_chan_buf->ops->priv->flush_buffer(lttng_chan_buf);
f4681817
MD
1261 default:
1262 return -EINVAL;
1263 }
1264}
1265
f4681817
MD
1266static
1267int lttng_channel_release(int objd)
1268{
e7bc0ef6 1269 struct lttng_ust_channel_buffer *lttng_chan_buf = objd_private(objd);
f4681817 1270
e7bc0ef6
MD
1271 if (lttng_chan_buf)
1272 return lttng_ust_abi_objd_unref(lttng_chan_buf->parent->session->priv->objd, 0);
f4681817
MD
1273 return 0;
1274}
1275
fd17d7ce 1276static const struct lttng_ust_abi_objd_ops lttng_channel_ops = {
f4681817 1277 .release = lttng_channel_release,
f4681817
MD
1278 .cmd = lttng_channel_cmd,
1279};
1280
f4681817 1281/**
e58095ef 1282 * lttng_enabler_cmd - lttng control through object descriptors
e6c12e3d
MD
1283 *
1284 * @objd: the object descriptor
1285 * @cmd: the command
1286 * @arg: command arg
ef9ff354 1287 * @uargs: UST arguments (internal)
f59ed768 1288 * @owner: objd owner
e6c12e3d
MD
1289 *
1290 * This object descriptor implements lttng commands:
fd17d7ce 1291 * LTTNG_UST_ABI_CONTEXT
e6c12e3d 1292 * Prepend a context field to each record of events of this
e58095ef 1293 * enabler.
fd17d7ce 1294 * LTTNG_UST_ABI_ENABLE
e58095ef 1295 * Enable recording for this enabler
fd17d7ce 1296 * LTTNG_UST_ABI_DISABLE
e58095ef 1297 * Disable recording for this enabler
fd17d7ce 1298 * LTTNG_UST_ABI_FILTER
e58095ef 1299 * Attach a filter to an enabler.
fd17d7ce 1300 * LTTNG_UST_ABI_EXCLUSION
0bfb5cbd 1301 * Attach exclusions to an enabler.
e6c12e3d
MD
1302 */
1303static
d871c65b 1304long lttng_event_enabler_cmd(int objd, unsigned int cmd, unsigned long arg,
2208d8b5
MJ
1305 union lttng_ust_abi_args *uargs __attribute__((unused)),
1306 void *owner __attribute__((unused)))
e6c12e3d 1307{
d871c65b 1308 struct lttng_event_enabler *enabler = objd_private(objd);
e6c12e3d
MD
1309
1310 switch (cmd) {
fd17d7ce 1311 case LTTNG_UST_ABI_CONTEXT:
d871c65b 1312 return lttng_event_enabler_attach_context(enabler,
fd17d7ce
MD
1313 (struct lttng_ust_abi_context *) arg);
1314 case LTTNG_UST_ABI_ENABLE:
d871c65b 1315 return lttng_event_enabler_enable(enabler);
fd17d7ce 1316 case LTTNG_UST_ABI_DISABLE:
d871c65b 1317 return lttng_event_enabler_disable(enabler);
fd17d7ce 1318 case LTTNG_UST_ABI_FILTER:
2d78951a
MD
1319 {
1320 int ret;
1321
a56fd376 1322 ret = lttng_event_enabler_attach_filter_bytecode(enabler,
ab89263e 1323 (struct lttng_ust_bytecode_node **) arg);
2d78951a
MD
1324 if (ret)
1325 return ret;
2d78951a
MD
1326 return 0;
1327 }
fd17d7ce 1328 case LTTNG_UST_ABI_EXCLUSION:
0bfb5cbd 1329 {
d871c65b 1330 return lttng_event_enabler_attach_exclusion(enabler,
e9fe6aad 1331 (struct lttng_ust_excluder_node **) arg);
0bfb5cbd 1332 }
e6c12e3d
MD
1333 default:
1334 return -EINVAL;
1335 }
1336}
1337
1338static
d871c65b 1339int lttng_event_enabler_release(int objd)
e6c12e3d 1340{
d871c65b
FD
1341 struct lttng_event_enabler *event_enabler = objd_private(objd);
1342
1343 if (event_enabler)
e7bc0ef6 1344 return lttng_ust_abi_objd_unref(event_enabler->chan->priv->parent.objd, 0);
e6c12e3d 1345
e6c12e3d
MD
1346 return 0;
1347}
1348
fd17d7ce 1349static const struct lttng_ust_abi_objd_ops lttng_event_enabler_ops = {
d871c65b
FD
1350 .release = lttng_event_enabler_release,
1351 .cmd = lttng_event_enabler_cmd,
e6c12e3d
MD
1352};
1353
b35d179d 1354void lttng_ust_abi_exit(void)
f4681817 1355{
45e9e699 1356 lttng_ust_abi_close_in_progress = 1;
701a658f 1357 ust_lock_nocheck();
f4681817 1358 objd_table_destroy();
701a658f 1359 ust_unlock();
45e9e699 1360 lttng_ust_abi_close_in_progress = 0;
f4681817 1361}
This page took 0.151252 seconds and 4 git commands to generate.