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