Cygwin: Pass file paths instead of file descriptors over UNIX sockets
[lttng-ust.git] / include / lttng / ust-abi.h
CommitLineData
9f3fdbc6
MD
1#ifndef _LTTNG_UST_ABI_H
2#define _LTTNG_UST_ABI_H
3
4/*
4318ae1b 5 * lttng/ust-abi.h
9f3fdbc6 6 *
9f3fdbc6
MD
7 * LTTng-UST ABI header
8 *
e92f3e28
MD
9 * Copyright 2010-2012 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
a60d70e6 17 *
e92f3e28
MD
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
9f3fdbc6
MD
20 */
21
0a42beb6
MD
22#include <stdint.h>
23
f56cd1d5 24#define LTTNG_UST_SYM_NAME_LEN 256
9f3fdbc6 25
1332bb04
MD
26#define LTTNG_UST_COMM_VERSION_MAJOR 2
27#define LTTNG_UST_COMM_VERSION_MINOR 0
b35d179d 28
9f3fdbc6 29enum lttng_ust_instrumentation {
df854e41
MD
30 LTTNG_UST_TRACEPOINT = 0,
31 LTTNG_UST_PROBE = 1,
32 LTTNG_UST_FUNCTION = 2,
6b0e60f1
MD
33};
34
35enum lttng_ust_loglevel_type {
882a56d7
MD
36 LTTNG_UST_LOGLEVEL_ALL = 0,
37 LTTNG_UST_LOGLEVEL_RANGE = 1,
38 LTTNG_UST_LOGLEVEL_SINGLE = 2,
9f3fdbc6
MD
39};
40
9f3fdbc6 41enum lttng_ust_output {
b35d179d 42 LTTNG_UST_MMAP = 0,
9f3fdbc6
MD
43};
44
b35d179d 45struct lttng_ust_tracer_version {
b728d87e
MD
46 uint32_t major;
47 uint32_t minor;
b35d179d 48 uint32_t patchlevel;
b35d179d 49};
9f3fdbc6 50
1332bb04 51#define LTTNG_UST_CHANNEL_PADDING LTTNG_UST_SYM_NAME_LEN + 32
9f3fdbc6
MD
52struct lttng_ust_channel {
53 int overwrite; /* 1: overwrite, 0: discard */
54 uint64_t subbuf_size; /* in bytes */
55 uint64_t num_subbuf;
56 unsigned int switch_timer_interval; /* usecs */
57 unsigned int read_timer_interval; /* usecs */
b35d179d 58 enum lttng_ust_output output; /* output mode */
1332bb04 59 char padding[LTTNG_UST_CHANNEL_PADDING];
9f3fdbc6
MD
60};
61
1332bb04
MD
62#define LTTNG_UST_STREAM_PADDING1 16
63#define LTTNG_UST_STREAM_PADDING2 LTTNG_UST_SYM_NAME_LEN + 32
381c0f1e 64struct lttng_ust_stream {
1332bb04
MD
65 char padding[LTTNG_UST_STREAM_PADDING1];
66
67 union {
68 char padding[LTTNG_UST_STREAM_PADDING2];
69 } u;
381c0f1e
MD
70};
71
1332bb04
MD
72#define LTTNG_UST_EVENT_PADDING1 16
73#define LTTNG_UST_EVENT_PADDING2 LTTNG_UST_SYM_NAME_LEN + 32
9f3fdbc6 74struct lttng_ust_event {
9f3fdbc6 75 enum lttng_ust_instrumentation instrumentation;
6b0e60f1
MD
76 char name[LTTNG_UST_SYM_NAME_LEN]; /* event name */
77
78 enum lttng_ust_loglevel_type loglevel_type;
882a56d7 79 int loglevel; /* value, -1: all */
1332bb04 80 char padding[LTTNG_UST_EVENT_PADDING1];
6b0e60f1 81
9f3fdbc6
MD
82 /* Per instrumentation type configuration */
83 union {
1332bb04 84 char padding[LTTNG_UST_EVENT_PADDING2];
9f3fdbc6
MD
85 } u;
86};
87
9f3fdbc6 88enum lttng_ust_context_type {
3b402b40 89 LTTNG_UST_CONTEXT_VTID = 0,
c1ef86f0
MD
90 LTTNG_UST_CONTEXT_VPID = 1,
91 LTTNG_UST_CONTEXT_PTHREAD_ID = 2,
4847e9bb 92 LTTNG_UST_CONTEXT_PROCNAME = 3,
9f3fdbc6
MD
93};
94
1332bb04
MD
95#define LTTNG_UST_CONTEXT_PADDING1 16
96#define LTTNG_UST_CONTEXT_PADDING2 LTTNG_UST_SYM_NAME_LEN + 32
9f3fdbc6
MD
97struct lttng_ust_context {
98 enum lttng_ust_context_type ctx;
1332bb04
MD
99 char padding[LTTNG_UST_CONTEXT_PADDING1];
100
9f3fdbc6 101 union {
1332bb04 102 char padding[LTTNG_UST_CONTEXT_PADDING2];
9f3fdbc6
MD
103 } u;
104};
105
92462b01
MD
106/*
107 * Tracer channel attributes.
108 */
1332bb04 109#define LTTNG_UST_CHANNEL_ATTR_PADDING LTTNG_UST_SYM_NAME_LEN + 32
92462b01
MD
110struct lttng_ust_channel_attr {
111 int overwrite; /* 1: overwrite, 0: discard */
112 uint64_t subbuf_size; /* bytes */
113 uint64_t num_subbuf; /* power of 2 */
114 unsigned int switch_timer_interval; /* usec */
115 unsigned int read_timer_interval; /* usec */
116 enum lttng_ust_output output; /* splice, mmap */
1332bb04 117 char padding[LTTNG_UST_CHANNEL_ATTR_PADDING];
92462b01
MD
118};
119
1332bb04 120#define LTTNG_UST_TRACEPOINT_ITER_PADDING 16
cbef6901
MD
121struct lttng_ust_tracepoint_iter {
122 char name[LTTNG_UST_SYM_NAME_LEN]; /* provider:name */
882a56d7 123 int loglevel;
1332bb04 124 char padding[LTTNG_UST_TRACEPOINT_ITER_PADDING];
cbef6901
MD
125};
126
1332bb04 127#define LTTNG_UST_OBJECT_DATA_PADDING LTTNG_UST_SYM_NAME_LEN + 32
92462b01
MD
128struct lttng_ust_object_data {
129 int handle;
130 int shm_fd;
bf5ff35e 131 char *shm_path;
92462b01 132 int wait_fd;
bf5ff35e 133 char *wait_pipe_path;
92462b01 134 uint64_t memory_map_size;
1332bb04 135 char padding[LTTNG_UST_OBJECT_DATA_PADDING];
92462b01
MD
136};
137
d9a9a33b
MD
138enum lttng_ust_calibrate_type {
139 LTTNG_UST_CALIBRATE_TRACEPOINT,
140};
141
1332bb04
MD
142#define LTTNG_UST_CALIBRATE_PADDING1 16
143#define LTTNG_UST_CALIBRATE_PADDING2 LTTNG_UST_SYM_NAME_LEN + 32
d9a9a33b
MD
144struct lttng_ust_calibrate {
145 enum lttng_ust_calibrate_type type; /* type (input) */
1332bb04
MD
146 char padding[LTTNG_UST_CALIBRATE_PADDING1];
147
148 union {
149 char padding[LTTNG_UST_CALIBRATE_PADDING2];
150 } u;
d9a9a33b
MD
151};
152
9f3fdbc6
MD
153#define _UST_CMD(minor) (minor)
154#define _UST_CMDR(minor, type) (minor)
155#define _UST_CMDW(minor, type) (minor)
156
46050b1a
MD
157/* Handled by object descriptor */
158#define LTTNG_UST_RELEASE _UST_CMD(0x1)
159
160/* Handled by object cmd */
161
9f3fdbc6
MD
162/* LTTng-UST commands */
163#define LTTNG_UST_SESSION _UST_CMD(0x40)
164#define LTTNG_UST_TRACER_VERSION \
165 _UST_CMDR(0x41, struct lttng_ust_tracer_version)
166#define LTTNG_UST_TRACEPOINT_LIST _UST_CMD(0x42)
167#define LTTNG_UST_WAIT_QUIESCENT _UST_CMD(0x43)
11ff9c7d 168#define LTTNG_UST_REGISTER_DONE _UST_CMD(0x44)
9f3fdbc6 169
46050b1a 170/* Session FD commands */
9f3fdbc6
MD
171#define LTTNG_UST_METADATA \
172 _UST_CMDW(0x50, struct lttng_ust_channel)
173#define LTTNG_UST_CHANNEL \
174 _UST_CMDW(0x51, struct lttng_ust_channel)
175#define LTTNG_UST_SESSION_START _UST_CMD(0x52)
176#define LTTNG_UST_SESSION_STOP _UST_CMD(0x53)
177
46050b1a 178/* Channel FD commands */
9f3fdbc6
MD
179#define LTTNG_UST_STREAM _UST_CMD(0x60)
180#define LTTNG_UST_EVENT \
181 _UST_CMDW(0x61, struct lttng_ust_event)
182
46050b1a 183/* Event and Channel FD commands */
9f3fdbc6
MD
184#define LTTNG_UST_CONTEXT \
185 _UST_CMDW(0x70, struct lttng_ust_context)
43d330a4 186#define LTTNG_UST_FLUSH_BUFFER \
43861eab 187 _UST_CMD(0x71)
9f3fdbc6 188
46050b1a 189/* Event, Channel and Session commands */
9f3fdbc6
MD
190#define LTTNG_UST_ENABLE _UST_CMD(0x80)
191#define LTTNG_UST_DISABLE _UST_CMD(0x81)
192
51489cad
MD
193/* Tracepoint list commands */
194#define LTTNG_UST_TRACEPOINT_LIST_GET _UST_CMD(0x90)
195
46050b1a
MD
196#define LTTNG_UST_ROOT_HANDLE 0
197
b61ce3b2 198struct lttng_ust_obj;
46050b1a 199
ef9ff354
MD
200union ust_args {
201 struct {
202 int *shm_fd;
bf5ff35e 203 char *shm_path;
ef9ff354 204 int *wait_fd;
bf5ff35e 205 char *wait_pipe_path;
ef9ff354
MD
206 uint64_t *memory_map_size;
207 } channel;
208 struct {
209 int *shm_fd;
bf5ff35e 210 char *shm_path;
ef9ff354 211 int *wait_fd;
bf5ff35e 212 char *wait_pipe_path;
ef9ff354
MD
213 uint64_t *memory_map_size;
214 } stream;
215};
216
b61ce3b2 217struct lttng_ust_objd_ops {
ef9ff354
MD
218 long (*cmd)(int objd, unsigned int cmd, unsigned long arg,
219 union ust_args *args);
46050b1a
MD
220 int (*release)(int objd);
221};
222
223/* Create root handle. Always ID 0. */
224int lttng_abi_create_root_handle(void);
225
b61ce3b2 226const struct lttng_ust_objd_ops *objd_ops(int id);
d4419b81 227int lttng_ust_objd_unref(int id);
46050b1a
MD
228
229void lttng_ust_abi_exit(void);
003fedf4 230void lttng_ust_events_exit(void);
b35d179d 231
9f3fdbc6 232#endif /* _LTTNG_UST_ABI_H */
This page took 0.03768 seconds and 4 git commands to generate.