4 * Copyright 2010-2011 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.
24 * Dual LGPL v2.1/GPL v2 license.
27 #include <ust/lttng-ust-abi.h>
28 #include <urcu/compiler.h>
29 #include <urcu/list.h>
30 #include <ust/lttng-events.h>
31 #include "usterr_signal_safe.h"
33 #include "ltt-tracer.h"
36 * Object descriptor table. Should be protected from concurrent access
43 long (*cmd
)(int objd
, unsigned int cmd
, unsigned long arg
);
44 int (*release
)(int objd
);
51 const struct objd_ops
*ops
;
54 int freelist_next
; /* offset freelist. end is -1. */
60 unsigned int len
, allocated_len
;
61 int freelist_head
; /* offset freelist head. end is -1 */
64 static struct objd_table objd_table
= {
69 int objd_alloc(void *private_data
, const struct objd_ops
*ops
)
73 if (objd_table
.freelist_head
!= -1) {
74 obj
= &objd_table
.array
[objd_table
.freelist_head
];
75 objd_table
.freelist_head
= obj
->u
.freelist_next
;
79 if (objd_table
.len
>= objd_table
.allocated_len
) {
80 unsigned int new_allocated_len
, old_allocated_len
;
81 struct obj
*new_table
, *old_table
;
83 old_allocated_len
= objd_table
.allocated_len
;
84 old_table
= objd_table
.array
;
85 if (!old_allocated_len
)
86 new_allocated_len
= 1;
88 new_allocated_len
= old_allocated_len
<< 1;
89 new_table
= zmalloc(sizeof(struct obj
) * new_allocated_len
);
92 memcpy(new_table
, old_table
,
93 sizeof(struct obj
) * old_allocated_len
);
95 objd_table
.array
= new_table
;
96 objd_table
.allocated_len
= new_allocated_len
;
98 obj
= &objd_table
.array
[objd_table
.len
];
101 obj
->u
.s
.private_data
= private_data
;
103 obj
->u
.s
.f_count
= 1;
104 return obj
- objd_table
.array
;
108 struct obj
*_objd_get(int id
)
110 if (id
>= objd_table
.len
)
112 return &objd_table
.array
[id
];
116 void *objd_private(int id
)
118 struct obj
*obj
= _objd_get(id
);
120 return obj
->u
.s
.private_data
;
124 void objd_set_private(int id
, void *private_data
)
126 struct obj
*obj
= _objd_get(id
);
128 obj
->u
.s
.private_data
= private_data
;
132 const struct objd_ops
*objd_ops(int id
)
134 struct obj
*obj
= _objd_get(id
);
140 void objd_free(int id
)
142 struct obj
*obj
= _objd_get(id
);
145 obj
->u
.freelist_next
= objd_table
.freelist_head
;
146 objd_table
.freelist_head
= obj
- objd_table
.array
;
150 void objd_ref(int id
)
152 struct obj
*obj
= _objd_get(id
);
157 void objd_unref(int id
)
159 struct obj
*obj
= _objd_get(id
);
161 if (!(--obj
->u
.s
.f_count
)) {
162 const struct objd_ops
*ops
= objd_ops(id
);
171 void objd_table_destroy(void)
173 free(objd_table
.array
);
177 * This is LTTng's own personal way to create an ABI for sessiond.
178 * We send commands over a socket.
181 static const struct objd_ops lttng_ops
;
182 static const struct objd_ops lttng_session_ops
;
183 static const struct objd_ops lttng_channel_ops
;
184 static const struct objd_ops lttng_metadata_ops
;
185 static const struct objd_ops lttng_event_ops
;
193 int lttng_abi_create_session(void)
195 struct ltt_session
*session
;
196 int session_objd
, ret
;
198 session
= ltt_session_create();
201 session_objd
= objd_alloc(session
, <tng_session_ops
);
202 if (session_objd
< 0) {
206 session
->objd
= session_objd
;
210 ltt_session_destroy(session
);
216 int lttng_abi_tracepoint_list(void)
220 /* TODO: Create list private data */
221 list_objd
= objd_alloc(NULL
, <tng_tracepoint_list_ops
);
235 long lttng_abi_tracer_version(int objd
,
236 struct lttng_ust_tracer_version
*v
)
238 v
->version
= LTTNG_UST_VERSION
;
239 v
->patchlevel
= LTTNG_UST_PATCHLEVEL
;
240 v
->sublevel
= LTTNG_UST_SUBLEVEL
;
245 long lttng_abi_add_context(int objd
,
246 struct lttng_ust_context
*context_param
,
247 struct lttng_ctx
**ctx
, struct ltt_session
*session
)
249 if (session
->been_active
)
252 switch (context_param
->ctx
) {
253 case LTTNG_UST_CONTEXT_VTID
:
254 return lttng_add_vtid_to_ctx(ctx
);
261 * lttng_cmd - lttng control through socket commands
263 * @objd: the object descriptor
267 * This descriptor implements lttng commands:
269 * Returns a LTTng trace session object descriptor
270 * LTTNG_UST_TRACER_VERSION
271 * Returns the LTTng kernel tracer version
272 * LTTNG_UST_TRACEPOINT_LIST
273 * Returns a file descriptor listing available tracepoints
274 * LTTNG_UST_WAIT_QUIESCENT
275 * Returns after all previously running probes have completed
277 * The returned session will be deleted when its file descriptor is closed.
280 long lttng_cmd(int objd
, unsigned int cmd
, unsigned long arg
)
283 case LTTNG_UST_SESSION
:
284 return lttng_abi_create_session();
285 case LTTNG_UST_TRACER_VERSION
:
286 return lttng_abi_tracer_version(objd
,
287 (struct lttng_ust_tracer_version
*) arg
);
288 case LTTNG_UST_TRACEPOINT_LIST
:
289 return -ENOSYS
; //TODO
290 //return lttng_abi_tracepoint_list();
291 case LTTNG_UST_WAIT_QUIESCENT
:
299 static const struct objd_ops lttng_ops
= {
304 * We tolerate no failure in this function (if one happens, we print a dmesg
305 * error, but cannot return any error, because the channel information is
309 void lttng_metadata_create_events(int channel_objd
)
311 struct ltt_channel
*channel
= objd_private(channel_objd
);
312 static struct lttng_ust_event metadata_params
= {
313 .instrumentation
= LTTNG_UST_TRACEPOINT
,
314 .name
= "lttng_metadata",
316 struct ltt_event
*event
;
320 * We tolerate no failure path after event creation. It will stay
321 * invariant for the rest of the session.
323 event
= ltt_event_create(channel
, &metadata_params
, NULL
);
332 return; /* not allowed to return error */
336 int lttng_abi_create_channel(int session_objd
,
337 struct lttng_ust_channel
*chan_param
,
338 enum channel_type channel_type
)
340 struct ltt_session
*session
= objd_private(session_objd
);
341 const struct objd_ops
*ops
;
342 const char *transport_name
;
343 struct ltt_channel
*chan
;
347 chan_objd
= objd_alloc(NULL
, <tng_channel_ops
);
352 switch (channel_type
) {
353 case PER_CPU_CHANNEL
:
354 if (chan_param
->output
== LTTNG_UST_MMAP
) {
355 transport_name
= chan_param
->overwrite
?
356 "relay-overwrite-mmap" : "relay-discard-mmap";
360 ops
= <tng_channel_ops
;
362 case METADATA_CHANNEL
:
363 if (chan_param
->output
== LTTNG_UST_MMAP
)
364 transport_name
= "relay-metadata-mmap";
367 ops
= <tng_metadata_ops
;
370 transport_name
= "<unknown>";
374 * We tolerate no failure path after channel creation. It will stay
375 * invariant for the rest of the session.
377 chan
= ltt_channel_create(session
, transport_name
, NULL
,
378 chan_param
->subbuf_size
,
379 chan_param
->num_subbuf
,
380 chan_param
->switch_timer_interval
,
381 chan_param
->read_timer_interval
);
386 objd_set_private(chan_objd
, chan
);
387 chan
->objd
= chan_objd
;
388 if (channel_type
== METADATA_CHANNEL
) {
389 session
->metadata
= chan
;
390 lttng_metadata_create_events(chan_objd
);
393 /* The channel created holds a reference on the session */
394 objd_ref(session_objd
);
399 objd_unref(chan_objd
);
405 * lttng_session_cmd - lttng session object command
411 * This descriptor implements lttng commands:
413 * Returns a LTTng channel object descriptor
415 * Enables tracing for a session (weak enable)
417 * Disables tracing for a session (strong disable)
419 * Returns a LTTng metadata object descriptor
421 * The returned channel will be deleted when its file descriptor is closed.
424 long lttng_session_cmd(int objd
, unsigned int cmd
, unsigned long arg
)
426 struct ltt_session
*session
= objd_private(objd
);
429 case LTTNG_UST_CHANNEL
:
430 return lttng_abi_create_channel(objd
,
431 (struct lttng_ust_channel
*) arg
,
433 case LTTNG_UST_SESSION_START
:
434 case LTTNG_UST_ENABLE
:
435 return ltt_session_enable(session
);
436 case LTTNG_UST_SESSION_STOP
:
437 case LTTNG_UST_DISABLE
:
438 return ltt_session_disable(session
);
439 case LTTNG_UST_METADATA
:
440 return lttng_abi_create_channel(objd
,
441 (struct lttng_ust_channel
*) arg
,
449 * Called when the last file reference is dropped.
451 * Big fat note: channels and events are invariant for the whole session after
452 * their creation. So this session destruction also destroys all channel and
453 * event structures specific to this session (they are not destroyed when their
454 * individual file is released).
457 int lttng_session_release(int objd
)
459 struct ltt_session
*session
= objd_private(objd
);
462 ltt_session_destroy(session
);
466 static const struct objd_ops lttng_session_ops
= {
467 .release
= lttng_session_release
,
468 .cmd
= lttng_session_cmd
,
473 int lttng_abi_open_stream(int channel_objd
)
475 struct ltt_channel
*channel
= objd_private(channel_objd
);
476 struct lib_ring_buffer
*buf
;
477 int stream_objd
, ret
;
479 buf
= channel
->ops
->buffer_read_open(channel
->chan
);
483 stream_objd
= objd_alloc(buf
, &lib_ring_buffer_objd_ops
);
484 if (stream_objd
< 0) {
489 * The stream holds a reference to the channel within the generic ring
490 * buffer library, so no need to hold a refcount on the channel and
491 * session files here.
496 channel
->ops
->buffer_read_close(buf
);
502 int lttng_abi_create_event(int channel_objd
,
503 struct lttng_ust_event
*event_param
)
505 struct ltt_channel
*channel
= objd_private(channel_objd
);
506 struct ltt_event
*event
;
509 event_param
->name
[LTTNG_UST_SYM_NAME_LEN
- 1] = '\0';
510 event_objd
= objd_alloc(NULL
, <tng_event_ops
);
511 if (event_objd
< 0) {
516 * We tolerate no failure path after event creation. It will stay
517 * invariant for the rest of the session.
519 event
= ltt_event_create(channel
, event_param
, NULL
);
524 objd_set_private(event_objd
, event
);
525 /* The event holds a reference on the channel */
526 objd_ref(channel_objd
);
530 objd_unref(event_objd
);
536 * lttng_channel_cmd - lttng control through object descriptors
538 * @objd: the object descriptor
542 * This object descriptor implements lttng commands:
544 * Returns an event stream object descriptor or failure.
545 * (typically, one event stream records events from one CPU)
547 * Returns an event object descriptor or failure.
549 * Prepend a context field to each event in the channel
551 * Enable recording for events in this channel (weak enable)
553 * Disable recording for events in this channel (strong disable)
555 * Channel and event file descriptors also hold a reference on the session.
558 long lttng_channel_cmd(int objd
, unsigned int cmd
, unsigned long arg
)
560 struct ltt_channel
*channel
= objd_private(objd
);
563 case LTTNG_UST_STREAM
:
564 return -ENOSYS
; //TODO
565 //return lttng_abi_open_stream(objd);
566 case LTTNG_UST_EVENT
:
567 return lttng_abi_create_event(objd
, (struct lttng_ust_event
*) arg
);
568 case LTTNG_UST_CONTEXT
:
569 return lttng_abi_add_context(objd
,
570 (struct lttng_ust_context
*) arg
,
571 &channel
->ctx
, channel
->session
);
572 case LTTNG_UST_ENABLE
:
573 return ltt_channel_enable(channel
);
574 case LTTNG_UST_DISABLE
:
575 return ltt_channel_disable(channel
);
582 * lttng_metadata_cmd - lttng control through object descriptors
584 * @objd: the object descriptor
588 * This object descriptor implements lttng commands:
590 * Returns an event stream file descriptor or failure.
592 * Channel and event file descriptors also hold a reference on the session.
595 long lttng_metadata_cmd(int objd
, unsigned int cmd
, unsigned long arg
)
598 case LTTNG_UST_STREAM
:
599 return -ENOSYS
; //TODO
600 //return lttng_abi_open_stream(objd);
608 * lttng_channel_poll - lttng stream addition/removal monitoring
613 unsigned int lttng_channel_poll(struct file
*file
, poll_table
*wait
)
615 struct ltt_channel
*channel
= file
->private_data
;
616 unsigned int mask
= 0;
618 if (file
->f_mode
& FMODE_READ
) {
619 poll_wait_set_exclusive(wait
);
620 poll_wait(file
, channel
->ops
->get_hp_wait_queue(channel
->chan
),
623 if (channel
->ops
->is_disabled(channel
->chan
))
625 if (channel
->ops
->is_finalized(channel
->chan
))
627 if (channel
->ops
->buffer_has_read_closed_stream(channel
->chan
))
628 return POLLIN
| POLLRDNORM
;
637 int lttng_channel_release(int objd
)
639 struct ltt_channel
*channel
= objd_private(objd
);
642 objd_unref(channel
->session
->objd
);
646 static const struct objd_ops lttng_channel_ops
= {
647 .release
= lttng_channel_release
,
648 //.poll = lttng_channel_poll,
649 .cmd
= lttng_channel_cmd
,
652 static const struct objd_ops lttng_metadata_ops
= {
653 .release
= lttng_channel_release
,
654 .cmd
= lttng_metadata_cmd
,
658 * lttng_event_cmd - lttng control through object descriptors
660 * @objd: the object descriptor
664 * This object descriptor implements lttng commands:
666 * Prepend a context field to each record of this event
668 * Enable recording for this event (weak enable)
670 * Disable recording for this event (strong disable)
673 long lttng_event_cmd(int objd
, unsigned int cmd
, unsigned long arg
)
675 struct ltt_event
*event
= objd_private(objd
);
678 case LTTNG_UST_CONTEXT
:
679 return lttng_abi_add_context(objd
,
680 (struct lttng_ust_context
*) arg
,
681 &event
->ctx
, event
->chan
->session
);
682 case LTTNG_UST_ENABLE
:
683 return ltt_event_enable(event
);
684 case LTTNG_UST_DISABLE
:
685 return ltt_event_disable(event
);
692 int lttng_event_release(int objd
)
694 struct ltt_event
*event
= objd_private(objd
);
697 objd_unref(event
->chan
->objd
);
701 /* TODO: filter control ioctl */
702 static const struct objd_ops lttng_event_ops
= {
703 .release
= lttng_event_release
,
704 .cmd
= lttng_event_cmd
,
707 void __attribute__((constructor
)) lttng_ust_abi_init(void)
710 /* TODO: initialize socket */
714 void __attribute__((destructor
)) lttng_ust_abi_exit(void)
716 /* TODO: teardown socket */
717 objd_table_destroy();