1 #ifndef _LTTNG_UST_ABI_H
2 #define _LTTNG_UST_ABI_H
7 * Copyright 2010-2011 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11 * Dual LGPL v2.1/GPL v2 license.
16 #define LTTNG_UST_SYM_NAME_LEN 128
18 #define LTTNG_UST_COMM_VERSION_MAJOR 0
19 #define LTTNG_UST_COMM_VERSION_MINOR 1
21 enum lttng_ust_instrumentation
{
22 LTTNG_UST_TRACEPOINT
= 0,
24 LTTNG_UST_FUNCTION
= 2,
27 enum lttng_ust_output
{
31 struct lttng_ust_tracer_version
{
37 struct lttng_ust_channel
{
38 int overwrite
; /* 1: overwrite, 0: discard */
39 uint64_t subbuf_size
; /* in bytes */
41 unsigned int switch_timer_interval
; /* usecs */
42 unsigned int read_timer_interval
; /* usecs */
43 enum lttng_ust_output output
; /* output mode */
44 /* The following fields are used internally within UST. */
47 uint64_t memory_map_size
;
51 * This structure is only used internally within UST. It is not per-se
52 * part of the communication between sessiond and UST.
54 struct lttng_ust_stream
{
57 uint64_t memory_map_size
;
60 struct lttng_ust_event
{
61 char name
[LTTNG_UST_SYM_NAME_LEN
]; /* event name */
62 enum lttng_ust_instrumentation instrumentation
;
63 /* Per instrumentation type configuration */
68 enum lttng_ust_context_type
{
69 LTTNG_UST_CONTEXT_VTID
= 0,
70 LTTNG_UST_CONTEXT_VPID
= 1,
71 LTTNG_UST_CONTEXT_PTHREAD_ID
= 2,
72 LTTNG_UST_CONTEXT_PROCNAME
= 3,
75 struct lttng_ust_context
{
76 enum lttng_ust_context_type ctx
;
82 * Tracer channel attributes.
84 struct lttng_ust_channel_attr
{
85 int overwrite
; /* 1: overwrite, 0: discard */
86 uint64_t subbuf_size
; /* bytes */
87 uint64_t num_subbuf
; /* power of 2 */
88 unsigned int switch_timer_interval
; /* usec */
89 unsigned int read_timer_interval
; /* usec */
90 enum lttng_ust_output output
; /* splice, mmap */
93 struct lttng_ust_object_data
{
97 uint64_t memory_map_size
;
100 #define _UST_CMD(minor) (minor)
101 #define _UST_CMDR(minor, type) (minor)
102 #define _UST_CMDW(minor, type) (minor)
104 /* Handled by object descriptor */
105 #define LTTNG_UST_RELEASE _UST_CMD(0x1)
107 /* Handled by object cmd */
109 /* LTTng-UST commands */
110 #define LTTNG_UST_SESSION _UST_CMD(0x40)
111 #define LTTNG_UST_TRACER_VERSION \
112 _UST_CMDR(0x41, struct lttng_ust_tracer_version)
113 #define LTTNG_UST_TRACEPOINT_LIST _UST_CMD(0x42)
114 #define LTTNG_UST_WAIT_QUIESCENT _UST_CMD(0x43)
115 #define LTTNG_UST_REGISTER_DONE _UST_CMD(0x44)
117 /* Session FD commands */
118 #define LTTNG_UST_METADATA \
119 _UST_CMDW(0x50, struct lttng_ust_channel)
120 #define LTTNG_UST_CHANNEL \
121 _UST_CMDW(0x51, struct lttng_ust_channel)
122 #define LTTNG_UST_SESSION_START _UST_CMD(0x52)
123 #define LTTNG_UST_SESSION_STOP _UST_CMD(0x53)
125 /* Channel FD commands */
126 #define LTTNG_UST_STREAM _UST_CMD(0x60)
127 #define LTTNG_UST_EVENT \
128 _UST_CMDW(0x61, struct lttng_ust_event)
130 /* Event and Channel FD commands */
131 #define LTTNG_UST_CONTEXT \
132 _UST_CMDW(0x70, struct lttng_ust_context)
133 #define LTTNG_UST_FLUSH_BUFFER \
136 /* Event, Channel and Session commands */
137 #define LTTNG_UST_ENABLE _UST_CMD(0x80)
138 #define LTTNG_UST_DISABLE _UST_CMD(0x81)
140 #define LTTNG_UST_ROOT_HANDLE 0
142 struct lttng_ust_obj
;
144 struct lttng_ust_objd_ops
{
145 long (*cmd
)(int objd
, unsigned int cmd
, unsigned long arg
);
146 int (*release
)(int objd
);
149 /* Create root handle. Always ID 0. */
150 int lttng_abi_create_root_handle(void);
152 const struct lttng_ust_objd_ops
*objd_ops(int id
);
153 int lttng_ust_objd_unref(int id
);
155 void lttng_ust_abi_exit(void);
156 void lttng_ust_events_exit(void);
158 #endif /* _LTTNG_UST_ABI_H */