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 */
46 struct lttng_ust_event
{
47 char name
[LTTNG_UST_SYM_NAME_LEN
]; /* event name */
48 enum lttng_ust_instrumentation instrumentation
;
49 /* Per instrumentation type configuration */
54 enum lttng_ust_context_type
{
55 LTTNG_UST_CONTEXT_VTID
= 0,
58 struct lttng_ust_context
{
59 enum lttng_ust_context_type ctx
;
64 #define _UST_CMD(minor) (minor)
65 #define _UST_CMDR(minor, type) (minor)
66 #define _UST_CMDW(minor, type) (minor)
68 /* Handled by object descriptor */
69 #define LTTNG_UST_RELEASE _UST_CMD(0x1)
71 /* Handled by object cmd */
73 /* LTTng-UST commands */
74 #define LTTNG_UST_SESSION _UST_CMD(0x40)
75 #define LTTNG_UST_TRACER_VERSION \
76 _UST_CMDR(0x41, struct lttng_ust_tracer_version)
77 #define LTTNG_UST_TRACEPOINT_LIST _UST_CMD(0x42)
78 #define LTTNG_UST_WAIT_QUIESCENT _UST_CMD(0x43)
79 #define LTTNG_UST_REGISTER_DONE _UST_CMD(0x44)
81 /* Session FD commands */
82 #define LTTNG_UST_METADATA \
83 _UST_CMDW(0x50, struct lttng_ust_channel)
84 #define LTTNG_UST_CHANNEL \
85 _UST_CMDW(0x51, struct lttng_ust_channel)
86 #define LTTNG_UST_SESSION_START _UST_CMD(0x52)
87 #define LTTNG_UST_SESSION_STOP _UST_CMD(0x53)
89 /* Channel FD commands */
90 #define LTTNG_UST_STREAM _UST_CMD(0x60)
91 #define LTTNG_UST_EVENT \
92 _UST_CMDW(0x61, struct lttng_ust_event)
94 /* Event and Channel FD commands */
95 #define LTTNG_UST_CONTEXT \
96 _UST_CMDW(0x70, struct lttng_ust_context)
98 /* Event, Channel and Session commands */
99 #define LTTNG_UST_ENABLE _UST_CMD(0x80)
100 #define LTTNG_UST_DISABLE _UST_CMD(0x81)
102 #define LTTNG_UST_ROOT_HANDLE 0
107 long (*cmd
)(int objd
, unsigned int cmd
, unsigned long arg
);
108 int (*release
)(int objd
);
111 /* Create root handle. Always ID 0. */
112 int lttng_abi_create_root_handle(void);
114 const struct objd_ops
*objd_ops(int id
);
115 int objd_unref(int id
);
117 void lttng_ust_abi_exit(void);
118 void ltt_events_exit(void);
120 #endif /* _LTTNG_UST_ABI_H */