summaryrefslogtreecommitdiff
path: root/plugins/libcsem/exit.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-04-25 09:21:32 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-04-25 09:21:32 (GMT)
commit62ea3df536faae7e1706bbbc2c19cf43c4dae213 (patch)
tree953ad2ef97bcb5cc8e9a431ee81602fb86bd60cb /plugins/libcsem/exit.h
parent5042737fef27c821535883dadfb0ad9ac81ad294 (diff)
Included a new plugin to mark calls to exit() functions as return points.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@517 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'plugins/libcsem/exit.h')
-rw-r--r--plugins/libcsem/exit.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/plugins/libcsem/exit.h b/plugins/libcsem/exit.h
new file mode 100644
index 0000000..f580036
--- /dev/null
+++ b/plugins/libcsem/exit.h
@@ -0,0 +1,37 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * exit.h - prototypes pour la définition des sorties comme points de non retour
+ *
+ * Copyright (C) 2015 Cyrille Bagard
+ *
+ * This file is part of Chrysalide.
+ *
+ * OpenIDA is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * OpenIDA is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Foobar. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _PLUGINS_LIBCSEM_EXIT_H
+#define _PLUGINS_LIBCSEM_EXIT_H
+
+
+#include <analysis/binary.h>
+
+
+
+/* Modifie toutes les instructions appelant exit(). */
+void mark_exit_calls_as_return_instructions(const GLoadedBinary *);
+
+
+
+#endif /* _PLUGINS_LIBCSEM_EXIT_H */