Petr Machata | e99af27 | 2012-10-26 00:29:52 +0200 | [diff] [blame] | 1 | /* |
| 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 Machata | 366c2f4 | 2012-02-09 19:34:36 +0100 | [diff] [blame] | 21 | #ifndef _LTRACE_H_ |
| 22 | #define _LTRACE_H_ |
| 23 | |
Juan Cespedes | 61da337 | 2009-07-03 11:55:44 +0200 | [diff] [blame] | 24 | typedef enum Event_type Event_type; |
| 25 | enum Event_type { |
Juan Cespedes | 2a61d19 | 2009-07-04 11:29:27 +0200 | [diff] [blame] | 26 | 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 Machata | cbe29c6 | 2011-09-27 02:27:58 +0200 | [diff] [blame] | 35 | EVENT_VFORK, |
Juan Cespedes | 2a61d19 | 2009-07-04 11:29:27 +0200 | [diff] [blame] | 36 | EVENT_EXEC, |
| 37 | EVENT_BREAKPOINT, |
Juan Cespedes | 427b781 | 2009-07-06 23:05:30 +0200 | [diff] [blame] | 38 | EVENT_LIBCALL, |
| 39 | EVENT_LIBRET, |
Juan Cespedes | 2a61d19 | 2009-07-04 11:29:27 +0200 | [diff] [blame] | 40 | EVENT_NEW, /* in this case, proc is NULL */ |
| 41 | EVENT_MAX |
Juan Cespedes | 61da337 | 2009-07-03 11:55:44 +0200 | [diff] [blame] | 42 | }; |
| 43 | |
Juan Cespedes | 61da337 | 2009-07-03 11:55:44 +0200 | [diff] [blame] | 44 | typedef struct Event Event; |
| 45 | struct Event { |
Petr Machata | 69a03e6 | 2011-07-09 11:29:12 +0200 | [diff] [blame] | 46 | struct Event * next; |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 47 | struct process *proc; |
Juan Cespedes | 61da337 | 2009-07-03 11:55:44 +0200 | [diff] [blame] | 48 | Event_type type; |
Juan Cespedes | 40dc635 | 2009-06-25 19:54:10 +0200 | [diff] [blame] | 49 | union { |
Juan Cespedes | 61da337 | 2009-07-03 11:55:44 +0200 | [diff] [blame] | 50 | 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 Cespedes | 40dc635 | 2009-06-25 19:54:10 +0200 | [diff] [blame] | 55 | } e_un; |
| 56 | }; |
| 57 | |
Juan Cespedes | 61da337 | 2009-07-03 11:55:44 +0200 | [diff] [blame] | 58 | typedef void (*callback_func) (Event *); |
| 59 | |
Juan Cespedes | 3df476b | 2009-05-28 19:17:17 +0200 | [diff] [blame] | 60 | extern void ltrace_init(int argc, char **argv); |
Juan Cespedes | 61da337 | 2009-07-03 11:55:44 +0200 | [diff] [blame] | 61 | extern void ltrace_add_callback(callback_func f, Event_type type); |
Juan Cespedes | 3df476b | 2009-05-28 19:17:17 +0200 | [diff] [blame] | 62 | extern void ltrace_main(void); |
Petr Machata | 366c2f4 | 2012-02-09 19:34:36 +0100 | [diff] [blame] | 63 | |
| 64 | #endif /* _LTRACE_H_ */ |