2 * libustconsumer header file
4 * Copyright 2005-2010 -
5 * Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
7 * Oumarou Dicko <oumarou.dicko@polymtl.ca>
8 * Michael Sills-Lavoie <michael.sills-lavoie@polymtl.ca>
9 * Alexis Halle <alexis.halle@polymtl.ca>
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 #ifndef _USTCONSUMER_H
27 #define _USTCONSUMER_H
32 #include <urcu/list.h>
34 #define USTCONSUMER_DEFAULT_TRACE_PATH "/tmp/usttrace"
46 /* The pipe file descriptor */
52 /* the buffer memory */
56 /* number of subbuffers in buffer */
58 /* size of each subbuffer */
60 /* subbuf size count order */
61 int subbuf_size_order
;
62 /* alloc size of all subbuf */
65 /* the buffer information struct */
75 struct ustconsumer_callbacks
;
78 * struct ustconsumer_instance - Contains the data associated with a trace instance.
79 * The lib user can read but MUST NOT change any attributes but callbacks.
80 * @callbacks: Contains the necessary callbacks for a tracing session.
82 struct ustconsumer_instance
{
83 struct ustconsumer_callbacks
*callbacks
;
86 struct cds_list_head connections
;
88 struct ustcomm_sock
*listen_sock
;
90 pthread_mutex_t mutex
;
96 * struct ustconsumer_callbacks - Contains the necessary callbacks for a tracing
97 * session. The user can set the unnecessary functions to NULL if he does not
100 struct ustconsumer_callbacks
{
102 * on_open_buffer - Is called after a buffer is attached to process memory
104 * @data: pointer to the callbacks structure that has been passed to the
106 * @buf: structure that contains the data associated with the buffer
108 * Returns 0 if the callback succeeds else not 0.
110 * It has to be thread safe, because it is called by many threads.
112 int (*on_open_buffer
)(struct ustconsumer_callbacks
*data
,
113 struct buffer_info
*buf
);
116 * on_close_buffer - Is called after a buffer is detached from process memory
118 * @data: pointer to the callbacks structure that has been passed to the
120 * @buf: structure that contains the data associated with the buffer
122 * Returns 0 if the callback succeeds else not 0.
124 * It has to be thread safe, because it is called by many threads.
126 int (*on_close_buffer
)(struct ustconsumer_callbacks
*data
,
127 struct buffer_info
*buf
);
130 * on_read_subbuffer - Is called after a subbuffer is a reserved.
132 * @data: pointer to the callbacks structure that has been passed to the
134 * @buf: structure that contains the data associated with the buffer
136 * Returns 0 if the callback succeeds else not 0.
138 * It has to be thread safe, because it is called by many threads.
140 int (*on_read_subbuffer
)(struct ustconsumer_callbacks
*data
,
141 struct buffer_info
*buf
);
144 * on_read_partial_subbuffer - Is called when an incomplete subbuffer
145 * is being salvaged from an app crash
147 * @data: pointer to the callbacks structure that has been passed to the
149 * @buf: structure that contains the data associated with the buffer
150 * @subbuf_index: index of the subbuffer to read in the buffer
151 * @valid_length: number of bytes considered safe to read
153 * Returns 0 if the callback succeeds else not 0.
155 * It has to be thread safe, because it is called by many threads.
157 int (*on_read_partial_subbuffer
)(struct ustconsumer_callbacks
*data
,
158 struct buffer_info
*buf
,
160 unsigned long valid_length
);
163 * on_put_error - Is called when a put error has occured and the last
164 * subbuffer read is no longer safe to keep
166 * @data: pointer to the callbacks structure that has been passed to the
168 * @buf: structure that contains the data associated with the buffer
170 * Returns 0 if the callback succeeds else not 0.
172 * It has to be thread safe, because it is called by many threads.
174 int (*on_put_error
)(struct ustconsumer_callbacks
*data
,
175 struct buffer_info
*buf
);
178 * on_new_thread - Is called when a new thread is created
180 * @data: pointer to the callbacks structure that has been passed to the
183 * Returns 0 if the callback succeeds else not 0.
185 * It has to be thread safe, because it is called by many threads.
187 int (*on_new_thread
)(struct ustconsumer_callbacks
*data
);
190 * on_close_thread - Is called just before a thread is destroyed
192 * @data: pointer to the callbacks structure that has been passed to the
195 * Returns 0 if the callback succeeds else not 0.
197 * It has to be thread safe, because it is called by many threads.
199 int (*on_close_thread
)(struct ustconsumer_callbacks
*data
);
202 * on_trace_end - Is called at the very end of the tracing session. At
203 * this time, everything has been closed and the threads have
206 * @instance: pointer to the instance structure that has been passed to
209 * Returns 0 if the callback succeeds else not 0.
211 * After this callback is called, no other callback will be called
212 * again and the tracing instance will be deleted automatically by
213 * libustconsumer. After this call, the user must not use the libustconsumer instance.
215 int (*on_trace_end
)(struct ustconsumer_instance
*instance
);
218 * The library's data.
224 * ustconsumer_new_instance - Is called to create a new tracing session.
226 * @callbacks: Pointer to a callbacks structure that contain the user
227 * callbacks and data.
228 * @sock_path: Path to the socket used for communication with the traced app
230 * Returns the instance if the function succeeds else NULL.
232 struct ustconsumer_instance
*
233 ustconsumer_new_instance(
234 struct ustconsumer_callbacks
*callbacks
, char *sock_path
);
237 * ustconsumer_delete_instance - Is called to free a ustconsumer_instance struct
239 * @instance: The tracing session instance that needs to be freed.
241 * This function should only be called if the instance has not been started,
242 * as it will automatically be called at the end of ustconsumer_start_instance.
244 void ustconsumer_delete_instance(struct ustconsumer_instance
*instance
);
247 * ustconsumer_init_instance - Is called to initiliaze a new tracing session
249 * @instance: The tracing session instance that needs to be started.
251 * Returns 0 if the function succeeds.
253 * This function must be called between ustconsumer_new_instance and
254 * ustconsumer_start_instance. It sets up the communication between the library
255 * and the tracing application.
257 int ustconsumer_init_instance(struct ustconsumer_instance
*instance
);
260 * ustconsumer_start_instance - Is called to start a new tracing session.
262 * @instance: The tracing session instance that needs to be started.
264 * Returns 0 if the function succeeds.
266 * This is a blocking function. The caller will be blocked on it until the
267 * tracing session is stopped by the user using ustconsumer_stop_instance or until
268 * the traced application terminates
270 int ustconsumer_start_instance(struct ustconsumer_instance
*instance
);
273 * ustconsumer_stop_instance - Is called to stop a tracing session.
275 * @instance: The tracing session instance that needs to be stoped.
276 * @send_msg: If true, a message will be sent to the listening thread through
277 * the daemon socket to force it to return from the poll syscall
278 * and realize that it must close. This is not necessary if the
279 * instance is being stopped as part of an interrupt handler, as
280 * the interrupt itself will cause poll to return.
282 * Returns 0 if the function succeeds.
284 * This function returns immediately, it only tells libustconsumer to stop the
285 * instance. The on_trace_end callback will be called when the tracing session
286 * will really be stopped. The instance is deleted automatically by libustconsumer
287 * after on_trace_end is called.
289 int ustconsumer_stop_instance(struct ustconsumer_instance
*instance
, int send_msg
);
291 #endif /* _USTCONSUMER_H */