blob: 3e714a847ceca9aa45336100597aed413dcb55ad [file] [log] [blame]
Petr Machatae99af272012-10-26 00:29:52 +02001/*
2 * This file is part of ltrace.
3 * Copyright (C) 2009 Juan Cespedes
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18 * 02110-1301 USA
19 */
20
Petr Machata366c2f42012-02-09 19:34:36 +010021#ifndef _LTRACE_H_
22#define _LTRACE_H_
23
Juan Cespedes61da3372009-07-03 11:55:44 +020024typedef enum Event_type Event_type;
25enum Event_type {
Juan Cespedes2a61d192009-07-04 11:29:27 +020026 EVENT_NONE=0,
27 EVENT_SIGNAL,
28 EVENT_EXIT,
29 EVENT_EXIT_SIGNAL,
30 EVENT_SYSCALL,
31 EVENT_SYSRET,
32 EVENT_ARCH_SYSCALL,
33 EVENT_ARCH_SYSRET,
34 EVENT_CLONE,
Petr Machatacbe29c62011-09-27 02:27:58 +020035 EVENT_VFORK,
Juan Cespedes2a61d192009-07-04 11:29:27 +020036 EVENT_EXEC,
37 EVENT_BREAKPOINT,
Juan Cespedes427b7812009-07-06 23:05:30 +020038 EVENT_LIBCALL,
39 EVENT_LIBRET,
Juan Cespedes2a61d192009-07-04 11:29:27 +020040 EVENT_NEW, /* in this case, proc is NULL */
41 EVENT_MAX
Juan Cespedes61da3372009-07-03 11:55:44 +020042};
43
Juan Cespedes61da3372009-07-03 11:55:44 +020044typedef struct Event Event;
45struct Event {
Petr Machata69a03e62011-07-09 11:29:12 +020046 struct Event * next;
Petr Machata929bd572012-12-17 03:20:34 +010047 struct process *proc;
Juan Cespedes61da3372009-07-03 11:55:44 +020048 Event_type type;
Juan Cespedes40dc6352009-06-25 19:54:10 +020049 union {
Juan Cespedes61da3372009-07-03 11:55:44 +020050 int ret_val; /* EVENT_EXIT */
51 int signum; /* EVENT_SIGNAL, EVENT_EXIT_SIGNAL */
52 int sysnum; /* EVENT_SYSCALL, EVENT_SYSRET */
53 void * brk_addr; /* EVENT_BREAKPOINT */
54 int newpid; /* EVENT_CLONE, EVENT_NEW */
Juan Cespedes40dc6352009-06-25 19:54:10 +020055 } e_un;
56};
57
Juan Cespedes61da3372009-07-03 11:55:44 +020058typedef void (*callback_func) (Event *);
59
Juan Cespedes3df476b2009-05-28 19:17:17 +020060extern void ltrace_init(int argc, char **argv);
Juan Cespedes61da3372009-07-03 11:55:44 +020061extern void ltrace_add_callback(callback_func f, Event_type type);
Juan Cespedes3df476b2009-05-28 19:17:17 +020062extern void ltrace_main(void);
Petr Machata366c2f42012-02-09 19:34:36 +010063
64#endif /* _LTRACE_H_ */