6 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.
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.
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
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.
40 #include <lttng/ust-abi.h>
41 #include <lttng/ust-error.h>
42 #include <urcu/compiler.h>
43 #include <urcu/list.h>
44 #include <lttng/ust-events.h>
45 #include <lttng/ust-version.h>
46 #include <lttng/tracepoint.h>
47 #include "tracepoint-internal.h"
48 #include <usterr-signal-safe.h>
50 #include "lttng-tracer.h"
51 #include "../libringbuffer/shm.h"
52 #include "../libringbuffer/frontend_types.h"
54 #define OBJ_NAME_LEN 16
56 static int lttng_ust_abi_close_in_progress
;
59 int lttng_abi_tracepoint_list(void *owner
);
61 int lttng_abi_tracepoint_field_list(void *owner
);
64 * Object descriptor table. Should be protected from concurrent access
68 struct lttng_ust_obj
{
72 const struct lttng_ust_objd_ops
*ops
;
74 int owner_ref
; /* has ref from owner */
76 char name
[OBJ_NAME_LEN
];
78 int freelist_next
; /* offset freelist. end is -1. */
82 struct lttng_ust_objd_table
{
83 struct lttng_ust_obj
*array
;
84 unsigned int len
, allocated_len
;
85 int freelist_head
; /* offset freelist head. end is -1 */
88 static struct lttng_ust_objd_table objd_table
= {
93 int objd_alloc(void *private_data
, const struct lttng_ust_objd_ops
*ops
,
94 void *owner
, const char *name
)
96 struct lttng_ust_obj
*obj
;
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
;
104 if (objd_table
.len
>= objd_table
.allocated_len
) {
105 unsigned int new_allocated_len
, old_allocated_len
;
106 struct lttng_ust_obj
*new_table
, *old_table
;
108 old_allocated_len
= objd_table
.allocated_len
;
109 old_table
= objd_table
.array
;
110 if (!old_allocated_len
)
111 new_allocated_len
= 1;
113 new_allocated_len
= old_allocated_len
<< 1;
114 new_table
= zmalloc(sizeof(struct lttng_ust_obj
) * new_allocated_len
);
117 memcpy(new_table
, old_table
,
118 sizeof(struct lttng_ust_obj
) * old_allocated_len
);
120 objd_table
.array
= new_table
;
121 objd_table
.allocated_len
= new_allocated_len
;
123 obj
= &objd_table
.array
[objd_table
.len
];
126 obj
->u
.s
.private_data
= private_data
;
128 obj
->u
.s
.f_count
= 2; /* count == 1 : object is allocated */
129 /* count == 2 : allocated + hold ref */
130 obj
->u
.s
.owner_ref
= 1; /* One owner reference */
131 obj
->u
.s
.owner
= owner
;
132 strncpy(obj
->u
.s
.name
, name
, OBJ_NAME_LEN
);
133 obj
->u
.s
.name
[OBJ_NAME_LEN
- 1] = '\0';
134 return obj
- objd_table
.array
;
138 struct lttng_ust_obj
*_objd_get(int id
)
140 if (id
>= objd_table
.len
)
142 if (!objd_table
.array
[id
].u
.s
.f_count
)
144 return &objd_table
.array
[id
];
148 void *objd_private(int id
)
150 struct lttng_ust_obj
*obj
= _objd_get(id
);
152 return obj
->u
.s
.private_data
;
156 void objd_set_private(int id
, void *private_data
)
158 struct lttng_ust_obj
*obj
= _objd_get(id
);
160 obj
->u
.s
.private_data
= private_data
;
163 const struct lttng_ust_objd_ops
*objd_ops(int id
)
165 struct lttng_ust_obj
*obj
= _objd_get(id
);
173 void objd_free(int id
)
175 struct lttng_ust_obj
*obj
= _objd_get(id
);
178 obj
->u
.freelist_next
= objd_table
.freelist_head
;
179 objd_table
.freelist_head
= obj
- objd_table
.array
;
180 assert(obj
->u
.s
.f_count
== 1);
181 obj
->u
.s
.f_count
= 0; /* deallocated */
185 void objd_ref(int id
)
187 struct lttng_ust_obj
*obj
= _objd_get(id
);
191 int lttng_ust_objd_unref(int id
, int is_owner
)
193 struct lttng_ust_obj
*obj
= _objd_get(id
);
197 if (obj
->u
.s
.f_count
== 1) {
198 ERR("Reference counting error\n");
202 if (!obj
->u
.s
.owner_ref
) {
203 ERR("Error decrementing owner reference");
206 obj
->u
.s
.owner_ref
--;
208 if ((--obj
->u
.s
.f_count
) == 1) {
209 const struct lttng_ust_objd_ops
*ops
= objd_ops(id
);
219 void objd_table_destroy(void)
223 for (i
= 0; i
< objd_table
.allocated_len
; i
++) {
224 struct lttng_ust_obj
*obj
;
229 if (!obj
->u
.s
.owner_ref
)
230 continue; /* only unref owner ref. */
231 (void) lttng_ust_objd_unref(i
, 1);
233 free(objd_table
.array
);
234 objd_table
.array
= NULL
;
236 objd_table
.allocated_len
= 0;
237 objd_table
.freelist_head
= -1;
240 const char *lttng_ust_obj_get_name(int id
)
242 struct lttng_ust_obj
*obj
= _objd_get(id
);
246 return obj
->u
.s
.name
;
249 void lttng_ust_objd_table_owner_cleanup(void *owner
)
253 for (i
= 0; i
< objd_table
.allocated_len
; i
++) {
254 struct lttng_ust_obj
*obj
;
260 continue; /* skip root handles */
261 if (!obj
->u
.s
.owner_ref
)
262 continue; /* only unref owner ref. */
263 if (obj
->u
.s
.owner
== owner
)
264 (void) lttng_ust_objd_unref(i
, 1);
269 * This is LTTng's own personal way to create an ABI for sessiond.
270 * We send commands over a socket.
273 static const struct lttng_ust_objd_ops lttng_ops
;
274 static const struct lttng_ust_objd_ops lttng_session_ops
;
275 static const struct lttng_ust_objd_ops lttng_channel_ops
;
276 static const struct lttng_ust_objd_ops lttng_enabler_ops
;
277 static const struct lttng_ust_objd_ops lttng_tracepoint_list_ops
;
278 static const struct lttng_ust_objd_ops lttng_tracepoint_field_list_ops
;
280 int lttng_abi_create_root_handle(void)
284 /* root handles have NULL owners */
285 root_handle
= objd_alloc(NULL
, <tng_ops
, NULL
, "root");
290 int lttng_is_channel_ready(struct lttng_channel
*lttng_chan
)
292 struct channel
*chan
;
293 unsigned int nr_streams
, exp_streams
;
295 chan
= lttng_chan
->chan
;
296 nr_streams
= channel_handle_get_nr_streams(lttng_chan
->handle
);
297 exp_streams
= chan
->nr_streams
;
298 return nr_streams
== exp_streams
;
302 int lttng_abi_create_session(void *owner
)
304 struct lttng_session
*session
;
305 int session_objd
, ret
;
307 session
= lttng_session_create();
310 session_objd
= objd_alloc(session
, <tng_session_ops
, owner
, "session");
311 if (session_objd
< 0) {
315 session
->objd
= session_objd
;
316 session
->owner
= owner
;
320 lttng_session_destroy(session
);
325 long lttng_abi_tracer_version(int objd
,
326 struct lttng_ust_tracer_version
*v
)
328 v
->major
= LTTNG_UST_MAJOR_VERSION
;
329 v
->minor
= LTTNG_UST_MINOR_VERSION
;
330 v
->patchlevel
= LTTNG_UST_PATCHLEVEL_VERSION
;
335 long lttng_abi_add_context(int objd
,
336 struct lttng_ust_context
*context_param
,
337 struct lttng_ctx
**ctx
, struct lttng_session
*session
)
339 return lttng_attach_context(context_param
, ctx
, session
);
343 * lttng_cmd - lttng control through socket commands
345 * @objd: the object descriptor
348 * @uargs: UST arguments (internal)
351 * This descriptor implements lttng commands:
353 * Returns a LTTng trace session object descriptor
354 * LTTNG_UST_TRACER_VERSION
355 * Returns the LTTng kernel tracer version
356 * LTTNG_UST_TRACEPOINT_LIST
357 * Returns a file descriptor listing available tracepoints
358 * LTTNG_UST_TRACEPOINT_FIELD_LIST
359 * Returns a file descriptor listing available tracepoint fields
360 * LTTNG_UST_WAIT_QUIESCENT
361 * Returns after all previously running probes have completed
363 * The returned session will be deleted when its file descriptor is closed.
366 long lttng_cmd(int objd
, unsigned int cmd
, unsigned long arg
,
367 union ust_args
*uargs
, void *owner
)
370 case LTTNG_UST_SESSION
:
371 return lttng_abi_create_session(owner
);
372 case LTTNG_UST_TRACER_VERSION
:
373 return lttng_abi_tracer_version(objd
,
374 (struct lttng_ust_tracer_version
*) arg
);
375 case LTTNG_UST_TRACEPOINT_LIST
:
376 return lttng_abi_tracepoint_list(owner
);
377 case LTTNG_UST_TRACEPOINT_FIELD_LIST
:
378 return lttng_abi_tracepoint_field_list(owner
);
379 case LTTNG_UST_WAIT_QUIESCENT
:
387 static const struct lttng_ust_objd_ops lttng_ops
= {
391 int lttng_abi_map_channel(int session_objd
,
392 struct lttng_ust_channel
*ust_chan
,
393 union ust_args
*uargs
,
396 struct lttng_session
*session
= objd_private(session_objd
);
397 const char *transport_name
;
398 const struct lttng_transport
*transport
;
399 const char *chan_name
;
401 struct lttng_ust_shm_handle
*channel_handle
;
402 struct lttng_channel
*lttng_chan
;
403 struct channel
*chan
;
404 struct lttng_ust_lib_ring_buffer_config
*config
;
409 enum lttng_ust_chan_type type
;
411 chan_data
= uargs
->channel
.chan_data
;
412 wakeup_fd
= uargs
->channel
.wakeup_fd
;
414 type
= ust_chan
->type
;
417 case LTTNG_UST_CHAN_PER_CPU
:
424 if (session
->been_active
) {
426 goto active
; /* Refuse to add channel to active session */
429 channel_handle
= channel_handle_create(chan_data
, len
, wakeup_fd
);
430 if (!channel_handle
) {
435 chan
= shmp(channel_handle
, channel_handle
->chan
);
437 chan
->handle
= channel_handle
;
438 config
= &chan
->backend
.config
;
439 lttng_chan
= channel_get_private(chan
);
445 /* Lookup transport name */
447 case LTTNG_UST_CHAN_PER_CPU
:
448 if (config
->output
== RING_BUFFER_MMAP
) {
449 if (config
->mode
== RING_BUFFER_OVERWRITE
) {
450 if (config
->wakeup
== RING_BUFFER_WAKEUP_BY_WRITER
) {
451 transport_name
= "relay-overwrite-mmap";
453 transport_name
= "relay-overwrite-rt-mmap";
456 if (config
->wakeup
== RING_BUFFER_WAKEUP_BY_WRITER
) {
457 transport_name
= "relay-discard-mmap";
459 transport_name
= "relay-discard-rt-mmap";
466 chan_name
= "channel";
469 transport_name
= "<unknown>";
470 chan_name
= "<unknown>";
474 transport
= lttng_transport_find(transport_name
);
476 DBG("LTTng transport %s not found\n",
482 chan_objd
= objd_alloc(NULL
, <tng_channel_ops
, owner
, chan_name
);
488 /* Initialize our lttng chan */
489 lttng_chan
->chan
= chan
;
490 lttng_chan
->tstate
= 1;
491 lttng_chan
->enabled
= 1;
492 lttng_chan
->ctx
= NULL
;
493 lttng_chan
->session
= session
;
494 lttng_chan
->ops
= &transport
->ops
;
495 memcpy(<tng_chan
->chan
->backend
.config
,
496 transport
->client_config
,
497 sizeof(lttng_chan
->chan
->backend
.config
));
498 cds_list_add(<tng_chan
->node
, &session
->chan_head
);
499 lttng_chan
->header_type
= 0;
500 lttng_chan
->handle
= channel_handle
;
501 lttng_chan
->type
= type
;
504 * We tolerate no failure path after channel creation. It will stay
505 * invariant for the rest of the session.
507 objd_set_private(chan_objd
, lttng_chan
);
508 lttng_chan
->objd
= chan_objd
;
509 /* The channel created holds a reference on the session */
510 objd_ref(session_objd
);
513 /* error path after channel was created */
518 channel_destroy(chan
, channel_handle
, 0);
522 * error path before channel creation (owning chan_data and
531 close_ret
= close(wakeup_fd
);
541 * lttng_session_cmd - lttng session object command
546 * @uargs: UST arguments (internal)
549 * This descriptor implements lttng commands:
551 * Returns a LTTng channel object descriptor
553 * Enables tracing for a session (weak enable)
555 * Disables tracing for a session (strong disable)
557 * The returned channel will be deleted when its file descriptor is closed.
560 long lttng_session_cmd(int objd
, unsigned int cmd
, unsigned long arg
,
561 union ust_args
*uargs
, void *owner
)
563 struct lttng_session
*session
= objd_private(objd
);
566 case LTTNG_UST_CHANNEL
:
567 return lttng_abi_map_channel(objd
,
568 (struct lttng_ust_channel
*) arg
,
570 case LTTNG_UST_SESSION_START
:
571 case LTTNG_UST_ENABLE
:
572 return lttng_session_enable(session
);
573 case LTTNG_UST_SESSION_STOP
:
574 case LTTNG_UST_DISABLE
:
575 return lttng_session_disable(session
);
582 * Called when the last file reference is dropped.
584 * Big fat note: channels and events are invariant for the whole session after
585 * their creation. So this session destruction also destroys all channel and
586 * event structures specific to this session (they are not destroyed when their
587 * individual file is released).
590 int lttng_release_session(int objd
)
592 struct lttng_session
*session
= objd_private(objd
);
595 lttng_session_destroy(session
);
602 static const struct lttng_ust_objd_ops lttng_session_ops
= {
603 .release
= lttng_release_session
,
604 .cmd
= lttng_session_cmd
,
608 long lttng_tracepoint_list_cmd(int objd
, unsigned int cmd
, unsigned long arg
,
609 union ust_args
*uargs
, void *owner
)
611 struct lttng_ust_tracepoint_list
*list
= objd_private(objd
);
612 struct lttng_ust_tracepoint_iter
*tp
=
613 (struct lttng_ust_tracepoint_iter
*) arg
;
614 struct lttng_ust_tracepoint_iter
*iter
;
617 case LTTNG_UST_TRACEPOINT_LIST_GET
:
619 iter
= lttng_ust_tracepoint_list_get_iter_next(list
);
621 return -LTTNG_UST_ERR_NOENT
;
622 memcpy(tp
, iter
, sizeof(*tp
));
631 int lttng_abi_tracepoint_list(void *owner
)
634 struct lttng_ust_tracepoint_list
*list
;
636 list_objd
= objd_alloc(NULL
, <tng_tracepoint_list_ops
, owner
, "tp_list");
641 list
= zmalloc(sizeof(*list
));
646 objd_set_private(list_objd
, list
);
648 /* populate list by walking on all registered probes. */
649 ret
= lttng_probes_get_event_list(list
);
661 err
= lttng_ust_objd_unref(list_objd
, 1);
669 int lttng_release_tracepoint_list(int objd
)
671 struct lttng_ust_tracepoint_list
*list
= objd_private(objd
);
674 lttng_probes_prune_event_list(list
);
682 static const struct lttng_ust_objd_ops lttng_tracepoint_list_ops
= {
683 .release
= lttng_release_tracepoint_list
,
684 .cmd
= lttng_tracepoint_list_cmd
,
688 long lttng_tracepoint_field_list_cmd(int objd
, unsigned int cmd
,
689 unsigned long arg
, union ust_args
*uargs
, void *owner
)
691 struct lttng_ust_field_list
*list
= objd_private(objd
);
692 struct lttng_ust_field_iter
*tp
= &uargs
->field_list
.entry
;
693 struct lttng_ust_field_iter
*iter
;
696 case LTTNG_UST_TRACEPOINT_FIELD_LIST_GET
:
698 iter
= lttng_ust_field_list_get_iter_next(list
);
700 return -LTTNG_UST_ERR_NOENT
;
701 memcpy(tp
, iter
, sizeof(*tp
));
710 int lttng_abi_tracepoint_field_list(void *owner
)
713 struct lttng_ust_field_list
*list
;
715 list_objd
= objd_alloc(NULL
, <tng_tracepoint_field_list_ops
, owner
,
721 list
= zmalloc(sizeof(*list
));
726 objd_set_private(list_objd
, list
);
728 /* populate list by walking on all registered probes. */
729 ret
= lttng_probes_get_field_list(list
);
741 err
= lttng_ust_objd_unref(list_objd
, 1);
749 int lttng_release_tracepoint_field_list(int objd
)
751 struct lttng_ust_field_list
*list
= objd_private(objd
);
754 lttng_probes_prune_field_list(list
);
762 static const struct lttng_ust_objd_ops lttng_tracepoint_field_list_ops
= {
763 .release
= lttng_release_tracepoint_field_list
,
764 .cmd
= lttng_tracepoint_field_list_cmd
,
768 int lttng_abi_map_stream(int channel_objd
, struct lttng_ust_stream
*info
,
769 union ust_args
*uargs
, void *owner
)
771 struct lttng_channel
*channel
= objd_private(channel_objd
);
774 ret
= channel_handle_add_stream(channel
->handle
,
775 uargs
->stream
.shm_fd
, uargs
->stream
.wakeup_fd
,
776 info
->stream_nr
, info
->len
);
778 goto error_add_stream
;
787 int lttng_abi_create_enabler(int channel_objd
,
788 struct lttng_ust_event
*event_param
,
790 enum lttng_enabler_type type
)
792 struct lttng_channel
*channel
= objd_private(channel_objd
);
793 struct lttng_enabler
*enabler
;
796 event_param
->name
[LTTNG_UST_SYM_NAME_LEN
- 1] = '\0';
797 event_objd
= objd_alloc(NULL
, <tng_enabler_ops
, owner
, "enabler");
798 if (event_objd
< 0) {
803 * We tolerate no failure path after event creation. It will stay
804 * invariant for the rest of the session.
806 enabler
= lttng_enabler_create(type
, event_param
, channel
);
811 objd_set_private(event_objd
, enabler
);
812 /* The event holds a reference on the channel */
813 objd_ref(channel_objd
);
820 err
= lttng_ust_objd_unref(event_objd
, 1);
828 * lttng_channel_cmd - lttng control through object descriptors
830 * @objd: the object descriptor
833 * @uargs: UST arguments (internal)
836 * This object descriptor implements lttng commands:
838 * Returns an event stream object descriptor or failure.
839 * (typically, one event stream records events from one CPU)
841 * Returns an event object descriptor or failure.
843 * Prepend a context field to each event in the channel
845 * Enable recording for events in this channel (weak enable)
847 * Disable recording for events in this channel (strong disable)
849 * Channel and event file descriptors also hold a reference on the session.
852 long lttng_channel_cmd(int objd
, unsigned int cmd
, unsigned long arg
,
853 union ust_args
*uargs
, void *owner
)
855 struct lttng_channel
*channel
= objd_private(objd
);
857 if (cmd
!= LTTNG_UST_STREAM
) {
859 * Check if channel received all streams.
861 if (!lttng_is_channel_ready(channel
))
866 case LTTNG_UST_STREAM
:
868 struct lttng_ust_stream
*stream
;
870 stream
= (struct lttng_ust_stream
*) arg
;
871 /* stream used as output */
872 return lttng_abi_map_stream(objd
, stream
, uargs
, owner
);
874 case LTTNG_UST_EVENT
:
876 struct lttng_ust_event
*event_param
=
877 (struct lttng_ust_event
*) arg
;
878 if (event_param
->name
[strlen(event_param
->name
) - 1] == '*') {
879 /* If ends with wildcard, create wildcard. */
880 return lttng_abi_create_enabler(objd
, event_param
,
881 owner
, LTTNG_ENABLER_WILDCARD
);
883 return lttng_abi_create_enabler(objd
, event_param
,
884 owner
, LTTNG_ENABLER_EVENT
);
887 case LTTNG_UST_CONTEXT
:
888 return lttng_abi_add_context(objd
,
889 (struct lttng_ust_context
*) arg
,
890 &channel
->ctx
, channel
->session
);
891 case LTTNG_UST_ENABLE
:
892 return lttng_channel_enable(channel
);
893 case LTTNG_UST_DISABLE
:
894 return lttng_channel_disable(channel
);
895 case LTTNG_UST_FLUSH_BUFFER
:
896 return channel
->ops
->flush_buffer(channel
->chan
, channel
->handle
);
903 int lttng_channel_release(int objd
)
905 struct lttng_channel
*channel
= objd_private(objd
);
908 return lttng_ust_objd_unref(channel
->session
->objd
, 0);
912 static const struct lttng_ust_objd_ops lttng_channel_ops
= {
913 .release
= lttng_channel_release
,
914 .cmd
= lttng_channel_cmd
,
918 * lttng_enabler_cmd - lttng control through object descriptors
920 * @objd: the object descriptor
923 * @uargs: UST arguments (internal)
926 * This object descriptor implements lttng commands:
928 * Prepend a context field to each record of events of this
931 * Enable recording for this enabler
933 * Disable recording for this enabler
935 * Attach a filter to an enabler.
938 long lttng_enabler_cmd(int objd
, unsigned int cmd
, unsigned long arg
,
939 union ust_args
*uargs
, void *owner
)
941 struct lttng_enabler
*enabler
= objd_private(objd
);
944 case LTTNG_UST_CONTEXT
:
945 return lttng_enabler_attach_context(enabler
,
946 (struct lttng_ust_context
*) arg
);
947 case LTTNG_UST_ENABLE
:
948 return lttng_enabler_enable(enabler
);
949 case LTTNG_UST_DISABLE
:
950 return lttng_enabler_disable(enabler
);
951 case LTTNG_UST_FILTER
:
955 ret
= lttng_enabler_attach_bytecode(enabler
,
956 (struct lttng_ust_filter_bytecode_node
*) arg
);
967 int lttng_enabler_release(int objd
)
969 struct lttng_enabler
*enabler
= objd_private(objd
);
972 return lttng_ust_objd_unref(enabler
->chan
->objd
, 0);
976 static const struct lttng_ust_objd_ops lttng_enabler_ops
= {
977 .release
= lttng_enabler_release
,
978 .cmd
= lttng_enabler_cmd
,
981 void lttng_ust_abi_exit(void)
983 lttng_ust_abi_close_in_progress
= 1;
984 objd_table_destroy();
985 lttng_ust_abi_close_in_progress
= 0;