2010-06-28 14:36:40 +02:00
|
|
|
//---------------------------------------------------------------------
|
2011-10-14 16:24:38 +02:00
|
|
|
// IDAPython - Python plugin for Interactive Disassembler
|
2010-06-28 14:36:40 +02:00
|
|
|
//
|
2010-07-19 15:00:33 +02:00
|
|
|
// Copyright (c) The IDAPython Team <idapython@googlegroups.com>
|
2010-06-28 14:36:40 +02:00
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// For detailed copyright information see the file COPYING in
|
|
|
|
// the root of the distribution archive.
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
// python.cpp - Main plugin code
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
#include <Python.h>
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// This define fixes the redefinition of ssize_t
|
|
|
|
#ifdef HAVE_SSIZE_T
|
|
|
|
#define _SSIZE_T_DEFINED 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#ifdef __LINUX__
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#endif
|
2010-08-10 13:36:40 +02:00
|
|
|
#ifdef __MAC__
|
|
|
|
#include <mach-o/dyld.h>
|
|
|
|
#endif
|
2010-06-28 14:36:40 +02:00
|
|
|
#include <ida.hpp>
|
|
|
|
#include <idp.hpp>
|
|
|
|
#include <ieee.h>
|
|
|
|
#include <bytes.hpp>
|
|
|
|
#include <diskio.hpp>
|
|
|
|
#include <expr.hpp>
|
|
|
|
#include <loader.hpp>
|
|
|
|
#include <kernwin.hpp>
|
|
|
|
#include <netnode.hpp>
|
|
|
|
#include "pywraps.hpp"
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Defines and constants
|
|
|
|
|
|
|
|
// Python-style version tuple comes from the makefile
|
|
|
|
// Only the serial and status is set here
|
2011-10-14 16:24:38 +02:00
|
|
|
#define VER_SERIAL 0
|
2010-06-28 14:36:40 +02:00
|
|
|
#define VER_STATUS "final"
|
|
|
|
#define IDAPYTHON_RUNSTATEMENT 0
|
|
|
|
#define IDAPYTHON_ENABLE_EXTLANG 3
|
|
|
|
#define IDAPYTHON_DISABLE_EXTLANG 4
|
|
|
|
#define PYTHON_DIR_NAME "python"
|
|
|
|
#define S_IDAPYTHON "IDAPython"
|
2011-04-18 18:07:00 +02:00
|
|
|
#define S_INIT_PY "init.py"
|
2010-06-28 14:36:40 +02:00
|
|
|
static const char S_IDC_ARGS_VARNAME[] = "ARGV";
|
|
|
|
static const char S_MAIN[] = "__main__";
|
|
|
|
static const char S_IDC_RUNPYTHON_STATEMENT[] = "RunPythonStatement";
|
|
|
|
static const char S_IDAPYTHON_DATA_NODE[] = "IDAPython_Data";
|
|
|
|
|
2010-08-10 13:44:59 +02:00
|
|
|
#ifdef PLUGINFIX
|
|
|
|
#define PLUGIN_FLAGS PLUGIN_FIX
|
|
|
|
#else
|
|
|
|
#define PLUGIN_FLAGS 0
|
|
|
|
#endif
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Types
|
|
|
|
|
|
|
|
//
|
|
|
|
enum script_run_when
|
|
|
|
{
|
|
|
|
run_on_db_open = 0, // run script after opening database (default)
|
|
|
|
run_on_ui_ready = 1, // run script when UI is ready
|
|
|
|
run_on_init = 2, // run script immediately on plugin load (shortly after IDA starts)
|
|
|
|
};
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Global variables
|
|
|
|
static bool g_initialized = false;
|
|
|
|
static int g_run_when = -1;
|
|
|
|
static char g_run_script[QMAXPATH];
|
|
|
|
static char g_idapython_dir[QMAXPATH];
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Prototypes and forward declarations
|
|
|
|
|
|
|
|
// Alias to SWIG_Init
|
|
|
|
extern "C" void init_idaapi(void);
|
|
|
|
|
|
|
|
// Plugin run() callback
|
|
|
|
void idaapi run(int arg);
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// This is a simple tracing code for debugging purposes.
|
|
|
|
// It might evolve into a tracing facility for user scripts.
|
|
|
|
|
|
|
|
//#define ENABLE_PYTHON_PROFILING
|
|
|
|
#ifdef ENABLE_PYTHON_PROFILING
|
|
|
|
#include "compile.h"
|
|
|
|
#include "frameobject.h"
|
|
|
|
|
|
|
|
int tracefunc(PyObject *obj, _frame *frame, int what, PyObject *arg)
|
|
|
|
{
|
|
|
|
PyObject *str;
|
|
|
|
|
|
|
|
/* Catch line change events. */
|
|
|
|
/* Print the filename and line number */
|
|
|
|
if ( what == PyTrace_LINE )
|
|
|
|
{
|
|
|
|
str = PyObject_Str(frame->f_code->co_filename);
|
|
|
|
if ( str )
|
|
|
|
{
|
|
|
|
msg("PROFILING: %s:%d\n", PyString_AsString(str), frame->f_lineno);
|
|
|
|
Py_DECREF(str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Helper routines to make Python script execution breakable from IDA
|
|
|
|
static int ninsns = 0; // number of times trace function was called
|
|
|
|
static bool box_displayed; // has the wait box been displayed?
|
|
|
|
static time_t start_time; // the start time of the execution
|
|
|
|
static int script_timeout = 2;
|
|
|
|
static bool g_ui_ready = false;
|
2011-04-18 18:07:00 +02:00
|
|
|
static bool g_alert_auto_scripts = true;
|
|
|
|
static bool g_remove_cwd_sys_path = false;
|
|
|
|
|
2011-05-09 12:29:08 +02:00
|
|
|
static void end_execution();
|
|
|
|
static void begin_execution();
|
2010-06-28 14:36:40 +02:00
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// This callback is called on various interpreter events
|
|
|
|
static int break_check(PyObject *obj, _frame *frame, int what, PyObject *arg)
|
|
|
|
{
|
|
|
|
if ( wasBreak() )
|
|
|
|
{
|
2011-04-18 18:07:00 +02:00
|
|
|
// User pressed Cancel in the waitbox; send KeyboardInterrupt exception
|
2010-06-28 14:36:40 +02:00
|
|
|
PyErr_SetInterrupt();
|
|
|
|
}
|
|
|
|
else if ( !box_displayed && ++ninsns > 10 )
|
|
|
|
{
|
2011-04-18 18:07:00 +02:00
|
|
|
// We check the timer once every 10 calls
|
2010-06-28 14:36:40 +02:00
|
|
|
ninsns = 0;
|
2011-05-19 17:06:31 +02:00
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
// Timeout disabled or elapsed?
|
|
|
|
if ( script_timeout != 0 && (time(NULL) - start_time > script_timeout) )
|
2010-06-28 14:36:40 +02:00
|
|
|
{
|
|
|
|
box_displayed = true;
|
|
|
|
show_wait_box("Running Python script");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef ENABLE_PYTHON_PROFILING
|
|
|
|
return tracefunc(obj, frame, what, arg);
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
2011-05-09 12:29:08 +02:00
|
|
|
static void reset_execution_time()
|
|
|
|
{
|
|
|
|
start_time = time(NULL);
|
|
|
|
ninsns = 0;
|
|
|
|
}
|
2011-05-19 17:06:31 +02:00
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
2010-06-28 14:36:40 +02:00
|
|
|
// Prepare for Python execution
|
2011-05-09 12:29:08 +02:00
|
|
|
static void begin_execution()
|
2010-06-28 14:36:40 +02:00
|
|
|
{
|
|
|
|
if ( !g_ui_ready || script_timeout == 0 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
end_execution();
|
2011-05-09 12:29:08 +02:00
|
|
|
reset_execution_time();
|
2010-06-28 14:36:40 +02:00
|
|
|
PyEval_SetTrace(break_check, NULL);
|
|
|
|
}
|
|
|
|
|
2011-05-19 17:06:31 +02:00
|
|
|
//---------------------------------------------------------------------------
|
2011-05-09 12:29:08 +02:00
|
|
|
static void hide_script_waitbox()
|
2010-06-28 14:36:40 +02:00
|
|
|
{
|
|
|
|
if ( box_displayed )
|
|
|
|
{
|
|
|
|
hide_wait_box();
|
|
|
|
box_displayed = false;
|
|
|
|
}
|
2011-05-09 12:29:08 +02:00
|
|
|
}
|
2010-06-28 14:36:40 +02:00
|
|
|
|
2011-05-19 17:06:31 +02:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Called after Python execution finishes
|
2011-05-09 12:29:08 +02:00
|
|
|
static void end_execution()
|
|
|
|
{
|
|
|
|
hide_script_waitbox();
|
2010-06-28 14:36:40 +02:00
|
|
|
#ifdef ENABLE_PYTHON_PROFILING
|
|
|
|
PyEval_SetTrace(tracefunc, NULL);
|
|
|
|
#else
|
|
|
|
PyEval_SetTrace(NULL, NULL);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
2011-05-09 12:29:08 +02:00
|
|
|
void disable_script_timeout()
|
2010-06-28 14:36:40 +02:00
|
|
|
{
|
2011-05-19 17:06:31 +02:00
|
|
|
// Clear timeout
|
2011-05-09 12:29:08 +02:00
|
|
|
script_timeout = 0;
|
2011-07-27 10:51:29 +02:00
|
|
|
|
2011-05-19 17:06:31 +02:00
|
|
|
// Uninstall the trace function and hide the waitbox (if it was shown)
|
|
|
|
end_execution();
|
2011-05-09 12:29:08 +02:00
|
|
|
}
|
2010-06-28 14:36:40 +02:00
|
|
|
|
2011-05-19 17:06:31 +02:00
|
|
|
//-------------------------------------------------------------------------
|
2011-05-09 12:29:08 +02:00
|
|
|
int set_script_timeout(int timeout)
|
|
|
|
{
|
2011-05-19 17:06:31 +02:00
|
|
|
// Update the timeout
|
2010-06-28 14:36:40 +02:00
|
|
|
qswap(timeout, script_timeout);
|
2011-07-27 10:51:29 +02:00
|
|
|
|
2011-05-19 17:06:31 +02:00
|
|
|
// Reset the execution time and hide the waitbox (so it is shown again after timeout elapses)
|
2011-05-09 12:29:08 +02:00
|
|
|
reset_execution_time();
|
|
|
|
hide_script_waitbox();
|
2011-05-19 17:06:31 +02:00
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
return timeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Return a formatted error or just print it to the console
|
2011-10-14 16:24:38 +02:00
|
|
|
static void handle_python_error(
|
|
|
|
char *errbuf,
|
|
|
|
size_t errbufsize,
|
|
|
|
bool clear_error = true)
|
2010-06-28 14:36:40 +02:00
|
|
|
{
|
|
|
|
if ( errbufsize > 0 )
|
|
|
|
errbuf[0] = '\0';
|
|
|
|
|
2011-10-14 16:24:38 +02:00
|
|
|
// No exception?
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( !PyErr_Occurred() )
|
|
|
|
return;
|
|
|
|
|
2011-10-14 16:24:38 +02:00
|
|
|
qstring s;
|
|
|
|
if ( PyW_GetError(&s, clear_error) )
|
|
|
|
qstrncpy(errbuf, s.c_str(), errbufsize);
|
2010-06-28 14:36:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Helper function to get globals for the __main__ module
|
|
|
|
// Note: The references are borrowed. No need to free them.
|
2010-11-10 14:58:08 +01:00
|
|
|
static PyObject *GetMainGlobals()
|
2010-06-28 14:36:40 +02:00
|
|
|
{
|
|
|
|
PyObject *module = PyImport_AddModule(S_MAIN);
|
2011-04-18 18:07:00 +02:00
|
|
|
return module == NULL ? NULL : PyModule_GetDict(module);
|
2010-06-28 14:36:40 +02:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:58:08 +01:00
|
|
|
//------------------------------------------------------------------------
|
2011-04-18 18:07:00 +02:00
|
|
|
static void PythonEvalOrExec(
|
2011-07-27 10:51:29 +02:00
|
|
|
const char *str,
|
2011-04-18 18:07:00 +02:00
|
|
|
const char *filename = "<string>")
|
2010-11-10 14:58:08 +01:00
|
|
|
{
|
|
|
|
// Compile as an expression
|
|
|
|
PyCompilerFlags cf = {0};
|
|
|
|
PyObject *py_code = Py_CompileStringFlags(str, filename, Py_eval_input, &cf);
|
|
|
|
if ( py_code == NULL || PyErr_Occurred() )
|
|
|
|
{
|
|
|
|
// Not an expression?
|
|
|
|
PyErr_Clear();
|
|
|
|
|
|
|
|
// Run as a string
|
|
|
|
PyRun_SimpleString(str);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *py_globals = GetMainGlobals();
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_ENSURE;
|
2010-11-10 14:58:08 +01:00
|
|
|
PyObject *py_result = PyEval_EvalCode(
|
2011-04-18 18:07:00 +02:00
|
|
|
(PyCodeObject *) py_code,
|
2010-11-10 14:58:08 +01:00
|
|
|
py_globals,
|
|
|
|
py_globals);
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_RELEASE;
|
2010-11-10 14:58:08 +01:00
|
|
|
Py_DECREF(py_code);
|
|
|
|
|
|
|
|
if ( py_result == NULL || PyErr_Occurred() )
|
|
|
|
{
|
|
|
|
PyErr_Print();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
qstring result_str;
|
|
|
|
if ( py_result != Py_None && PyW_ObjectToString(py_result, &result_str) )
|
|
|
|
msg("%s\n", result_str.c_str());
|
|
|
|
|
|
|
|
Py_DECREF(py_result);
|
|
|
|
}
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
//------------------------------------------------------------------------
|
2011-10-14 16:24:38 +02:00
|
|
|
// Executes a simple string
|
|
|
|
static bool idaapi IDAPython_extlang_run_statements(
|
|
|
|
const char *str,
|
|
|
|
char *errbuf,
|
|
|
|
size_t errbufsize)
|
2010-06-28 14:36:40 +02:00
|
|
|
{
|
|
|
|
PyObject *globals = GetMainGlobals();
|
2011-10-14 16:24:38 +02:00
|
|
|
bool ok;
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( globals == NULL )
|
|
|
|
{
|
2011-10-14 16:24:38 +02:00
|
|
|
ok = false;
|
2010-06-28 14:36:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-14 16:24:38 +02:00
|
|
|
errbuf[0] = '\0';
|
2010-06-28 14:36:40 +02:00
|
|
|
PyErr_Clear();
|
|
|
|
begin_execution();
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_ENSURE;
|
|
|
|
PyObject *result = PyRun_String(
|
2011-10-14 16:24:38 +02:00
|
|
|
str,
|
2011-04-18 18:07:00 +02:00
|
|
|
Py_file_input,
|
|
|
|
globals,
|
|
|
|
globals);
|
2011-07-27 10:51:29 +02:00
|
|
|
PYW_GIL_RELEASE;
|
2010-06-28 14:36:40 +02:00
|
|
|
Py_XDECREF(result);
|
|
|
|
end_execution();
|
|
|
|
|
2011-10-14 16:24:38 +02:00
|
|
|
ok = result != NULL && !PyErr_Occurred();
|
|
|
|
|
|
|
|
if ( !ok )
|
|
|
|
handle_python_error(errbuf, errbufsize);
|
2010-06-28 14:36:40 +02:00
|
|
|
}
|
2011-10-14 16:24:38 +02:00
|
|
|
if ( !ok && errbuf[0] == '\0' )
|
|
|
|
qstrncpy(errbuf, "internal error", errbufsize);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Simple Python statement runner function for IDC
|
|
|
|
static const char idc_runpythonstatement_args[] = { VT_STR2, 0 };
|
|
|
|
static error_t idaapi idc_runpythonstatement(
|
|
|
|
idc_value_t *argv,
|
|
|
|
idc_value_t *res)
|
|
|
|
{
|
|
|
|
char errbuf[MAXSTR];
|
|
|
|
bool ok = IDAPython_extlang_run_statements(argv[0].c_str(), errbuf, sizeof(errbuf));
|
|
|
|
|
|
|
|
if ( ok )
|
|
|
|
res->set_long(0);
|
|
|
|
else
|
|
|
|
res->set_string(errbuf);
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
return eOk;
|
|
|
|
}
|
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
const char *idaapi set_python_options(
|
|
|
|
const char *keyword,
|
|
|
|
int value_type,
|
|
|
|
const void *value)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
2011-10-14 16:24:38 +02:00
|
|
|
if ( value_type == IDPOPT_NUM )
|
2011-04-18 18:07:00 +02:00
|
|
|
{
|
|
|
|
if ( qstrcmp(keyword, "SCRIPT_TIMEOUT") == 0 )
|
|
|
|
{
|
|
|
|
script_timeout = int(*(uval_t *)value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if ( qstrcmp(keyword, "ALERT_AUTO_SCRIPTS") == 0 )
|
|
|
|
{
|
|
|
|
g_alert_auto_scripts = *(uval_t *)value != 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if ( qstrcmp(keyword, "REMOVE_CWD_SYS_PATH") == 0 )
|
|
|
|
{
|
|
|
|
g_remove_cwd_sys_path = *(uval_t *)value != 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return IDPOPT_BADKEY;
|
|
|
|
} while (false);
|
|
|
|
return IDPOPT_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Check for the presence of a file in IDADIR/python and complain on error
|
|
|
|
bool CheckScriptFiles()
|
|
|
|
{
|
|
|
|
static const char *const script_files[] =
|
|
|
|
{
|
|
|
|
S_IDC_MODNAME ".py",
|
2011-04-18 18:07:00 +02:00
|
|
|
S_INIT_PY,
|
2010-06-28 14:36:40 +02:00
|
|
|
"idaapi.py",
|
|
|
|
"idautils.py"
|
|
|
|
};
|
|
|
|
for ( size_t i=0; i<qnumber(script_files); i++ )
|
|
|
|
{
|
|
|
|
char filepath[QMAXPATH];
|
|
|
|
qmakepath(filepath, sizeof(filepath), g_idapython_dir, script_files[i], NULL);
|
|
|
|
if ( !qfileexist(filepath) )
|
|
|
|
{
|
|
|
|
warning("IDAPython: Missing required file: '%s'", script_files[i]);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// This function will execute a script in the main module context
|
|
|
|
// It does not use 'import', thus the executed script will not yield a new module name
|
|
|
|
// Caller of this function should call handle_python_error() to clear the exception and print the error
|
|
|
|
static int PyRunFile(const char *FileName)
|
|
|
|
{
|
|
|
|
PyObject *PyFileObject = PyFile_FromString((char*)FileName, "r");
|
|
|
|
PyObject *globals = GetMainGlobals();
|
|
|
|
if ( globals == NULL || PyFileObject == NULL )
|
|
|
|
{
|
|
|
|
Py_XDECREF(PyFileObject);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
PyErr_Clear();
|
2011-04-18 18:07:00 +02:00
|
|
|
|
|
|
|
PYW_GIL_ENSURE;
|
|
|
|
PyObject *result = PyRun_File(
|
2011-07-27 10:51:29 +02:00
|
|
|
PyFile_AsFile(PyFileObject),
|
|
|
|
FileName,
|
|
|
|
Py_file_input,
|
|
|
|
globals,
|
2011-04-18 18:07:00 +02:00
|
|
|
globals);
|
|
|
|
PYW_GIL_RELEASE;
|
2011-07-27 10:51:29 +02:00
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
Py_XDECREF(PyFileObject);
|
|
|
|
Py_XDECREF(result);
|
2011-04-18 18:07:00 +02:00
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
return result != NULL && !PyErr_Occurred();
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Execute Python statement(s) from an editor window
|
|
|
|
void IDAPython_RunStatement(void)
|
|
|
|
{
|
|
|
|
char statement[16 * MAXSTR];
|
|
|
|
netnode history;
|
|
|
|
|
|
|
|
// Get the existing or create a new netnode in the database
|
|
|
|
history.create(S_IDAPYTHON_DATA_NODE);
|
|
|
|
|
|
|
|
// Fetch the previous statement
|
|
|
|
size_t statement_size = sizeof(statement);
|
|
|
|
|
|
|
|
if ( history.getblob(statement, &statement_size, 0, 'A') == NULL )
|
|
|
|
statement[0] = '\0';
|
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
if ( asktext(sizeof(statement), statement, statement, "ACCEPT TABS\nEnter Python expressions") != NULL )
|
2010-06-28 14:36:40 +02:00
|
|
|
{
|
|
|
|
begin_execution();
|
|
|
|
PyRun_SimpleString(statement);
|
|
|
|
end_execution();
|
|
|
|
|
|
|
|
// Store the statement to the database
|
|
|
|
history.setblob(statement, strlen(statement) + 1, 0, 'A');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// This function will call the Python function 'idaapi.IDAPython_ExecFile'
|
|
|
|
// It does not use 'import', thus the executed script will not yield a new module name
|
|
|
|
// It returns the exception and traceback information.
|
|
|
|
// We use the Python function to execute the script because it knows how to deal with
|
|
|
|
// module reloading.
|
|
|
|
static bool IDAPython_ExecFile(const char *FileName, char *errbuf, size_t errbufsz)
|
|
|
|
{
|
|
|
|
PyObject *py_execscript = get_idaapi_attr(S_IDAAPI_EXECSCRIPT);
|
|
|
|
if ( py_execscript == NULL )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
char script[MAXSTR];
|
|
|
|
qstrncpy(script, FileName, sizeof(script));
|
2011-10-14 16:24:38 +02:00
|
|
|
strrpl(script, '\\', '/');
|
2010-06-28 14:36:40 +02:00
|
|
|
|
|
|
|
PyObject *py_script = PyString_FromString(script);
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_ENSURE;
|
|
|
|
PyObject *py_ret = PyObject_CallFunctionObjArgs(
|
|
|
|
py_execscript,
|
|
|
|
py_script,
|
|
|
|
GetMainGlobals(),
|
|
|
|
NULL);
|
|
|
|
PYW_GIL_RELEASE;
|
2010-06-28 14:36:40 +02:00
|
|
|
Py_DECREF(py_script);
|
|
|
|
Py_DECREF(py_execscript);
|
|
|
|
|
|
|
|
// Failure at this point means the script was interrupted
|
|
|
|
qstring err;
|
2010-07-13 18:43:53 +02:00
|
|
|
if ( PyW_GetError(&err) || py_ret == NULL )
|
2010-06-28 14:36:40 +02:00
|
|
|
{
|
|
|
|
PyErr_Clear();
|
|
|
|
if ( err.empty() )
|
|
|
|
qstrncpy(errbuf, "Script interrupted", errbufsz);
|
|
|
|
else
|
|
|
|
qstrncpy(errbuf, err.c_str(), errbufsz);
|
|
|
|
Py_XDECREF(py_ret);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ok;
|
|
|
|
if ( py_ret == Py_None )
|
|
|
|
ok = true;
|
|
|
|
else if ( PyString_Check(py_ret) )
|
|
|
|
{
|
|
|
|
qstrncpy(errbuf, PyString_AsString(py_ret), errbufsz);
|
|
|
|
ok = false;
|
|
|
|
}
|
|
|
|
// Cannot be otherwise!
|
|
|
|
else
|
2011-04-18 18:07:00 +02:00
|
|
|
INTERR(30154);
|
2010-06-28 14:36:40 +02:00
|
|
|
|
|
|
|
Py_XDECREF(py_ret);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Execute the Python script from the plugin
|
|
|
|
static bool RunScript(const char *script)
|
|
|
|
{
|
|
|
|
begin_execution();
|
2011-04-18 18:07:00 +02:00
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
char errbuf[MAXSTR];
|
|
|
|
bool ok = IDAPython_ExecFile(script, errbuf, sizeof(errbuf));
|
|
|
|
if ( !ok )
|
|
|
|
warning("IDAPython: error executing '%s':\n%s", script, errbuf);
|
2011-04-18 18:07:00 +02:00
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
end_execution();
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
bool idaapi IDAPython_Menu_Callback(void *ud)
|
|
|
|
{
|
|
|
|
// note: on 64-bit systems the pointer will be truncated to 32-bits!
|
|
|
|
run((ssize_t)ud);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// This function parses a name into two different components (if it applies).
|
|
|
|
// Example:
|
|
|
|
// parse_py_modname("modname.attrname", mod_buf, attr_buf)
|
|
|
|
// It splits the full name into two parts.
|
|
|
|
static bool parse_py_modname(
|
|
|
|
const char *full_name,
|
|
|
|
char *modname,
|
|
|
|
char *attrname,
|
|
|
|
size_t sz,
|
|
|
|
const char *defmod = S_IDAAPI_MODNAME)
|
|
|
|
{
|
|
|
|
const char *p = strchr(full_name, '.');
|
|
|
|
if ( p == NULL )
|
|
|
|
{
|
|
|
|
qstrncpy(modname, defmod, sz);
|
|
|
|
qstrncpy(attrname, full_name, sz);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qstrncpy(modname, full_name, p - full_name + 1);
|
|
|
|
qstrncpy(attrname, p + 1, sz);
|
|
|
|
}
|
|
|
|
return p != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Convert return value from Python to IDC or report about an error.
|
|
|
|
// This function also decrements the reference "result" (python variable)
|
|
|
|
static bool return_python_result(
|
|
|
|
idc_value_t *idc_result,
|
|
|
|
PyObject *py_result,
|
|
|
|
char *errbuf,
|
|
|
|
size_t errbufsize)
|
|
|
|
{
|
|
|
|
if ( errbufsize > 0 )
|
|
|
|
errbuf[0] = '\0';
|
|
|
|
|
|
|
|
if ( py_result == NULL )
|
|
|
|
{
|
|
|
|
handle_python_error(errbuf, errbufsize);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cvt = CIP_OK;
|
|
|
|
if ( idc_result != NULL )
|
|
|
|
{
|
|
|
|
idc_result->clear();
|
|
|
|
cvt = pyvar_to_idcvar(py_result, idc_result);
|
|
|
|
if ( cvt < CIP_OK )
|
|
|
|
qsnprintf(errbuf, errbufsize, "ERROR: bad return value");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( cvt != CIP_OK_NODECREF )
|
|
|
|
Py_XDECREF(py_result);
|
|
|
|
|
|
|
|
return cvt >= CIP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Compile callback for Python external language evaluator
|
|
|
|
bool idaapi IDAPython_extlang_compile(
|
|
|
|
const char *name,
|
|
|
|
ea_t /*current_ea*/,
|
|
|
|
const char *expr,
|
|
|
|
char *errbuf,
|
|
|
|
size_t errbufsize)
|
|
|
|
{
|
|
|
|
PyObject *globals = GetMainGlobals();
|
|
|
|
|
|
|
|
PyCodeObject *code = (PyCodeObject *)Py_CompileString(expr, "<string>", Py_eval_input);
|
|
|
|
if ( code == NULL )
|
|
|
|
{
|
|
|
|
handle_python_error(errbuf, errbufsize);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
// Set the desired function name
|
2010-06-28 14:36:40 +02:00
|
|
|
Py_XDECREF(code->co_name);
|
|
|
|
code->co_name = PyString_FromString(name);
|
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
// Create a function out of code
|
2010-06-28 14:36:40 +02:00
|
|
|
PyObject *func = PyFunction_New((PyObject *)code, globals);
|
|
|
|
|
|
|
|
if ( func == NULL )
|
|
|
|
{
|
|
|
|
ERR:
|
|
|
|
handle_python_error(errbuf, errbufsize);
|
|
|
|
Py_XDECREF(code);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int err = PyDict_SetItemString(globals, name, func);
|
|
|
|
Py_XDECREF(func);
|
|
|
|
if ( err )
|
|
|
|
goto ERR;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Run callback for Python external language evaluator
|
|
|
|
bool idaapi IDAPython_extlang_run(
|
|
|
|
const char *name,
|
|
|
|
int nargs,
|
|
|
|
const idc_value_t args[],
|
|
|
|
idc_value_t *result,
|
|
|
|
char *errbuf,
|
|
|
|
size_t errbufsize)
|
|
|
|
{
|
|
|
|
// Try to extract module name (if any) from the funcname
|
|
|
|
char modname[MAXSTR] = {0};
|
|
|
|
char funcname[MAXSTR] = {0};
|
|
|
|
bool imported_module = parse_py_modname(name, modname, funcname, MAXSTR);
|
|
|
|
|
|
|
|
ppyobject_vec_t pargs;
|
|
|
|
boolvec_t decref;
|
|
|
|
bool ok = true;
|
|
|
|
PyObject *module = NULL;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// Convert arguments to python
|
2011-10-14 16:24:38 +02:00
|
|
|
ok = pyw_convert_idc_args(args, nargs, pargs, &decref, errbuf, errbufsize);
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( !ok )
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ( imported_module )
|
|
|
|
{
|
2011-07-27 10:51:29 +02:00
|
|
|
PYW_GIL_ENSURE;
|
2010-06-28 14:36:40 +02:00
|
|
|
module = PyImport_ImportModule(modname);
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_RELEASE;
|
2010-06-28 14:36:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
module = PyImport_AddModule(S_MAIN);
|
2011-04-18 18:07:00 +02:00
|
|
|
QASSERT(30156, module != NULL);
|
2010-06-28 14:36:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *globals = PyModule_GetDict(module);
|
2011-04-18 18:07:00 +02:00
|
|
|
QASSERT(30157, globals != NULL);
|
2010-06-28 14:36:40 +02:00
|
|
|
|
|
|
|
PyObject *func = PyDict_GetItemString(globals, funcname);
|
|
|
|
if ( func == NULL )
|
|
|
|
{
|
|
|
|
qsnprintf(errbuf, errbufsize, "undefined function %s", name);
|
|
|
|
ok = false;
|
|
|
|
break;
|
|
|
|
}
|
2010-11-10 14:58:08 +01:00
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
PyCodeObject *code = (PyCodeObject *) PyFunction_GetCode(func);
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_ENSURE;
|
2010-06-28 14:36:40 +02:00
|
|
|
PyObject *pres = PyEval_EvalCodeEx(
|
|
|
|
code,
|
2011-04-18 18:07:00 +02:00
|
|
|
globals, NULL,
|
2010-11-10 14:58:08 +01:00
|
|
|
&pargs[0], nargs,
|
2010-06-28 14:36:40 +02:00
|
|
|
NULL, 0, NULL, 0, NULL);
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_RELEASE;
|
2010-06-28 14:36:40 +02:00
|
|
|
ok = return_python_result(result, pres, errbuf, errbufsize);
|
|
|
|
} while ( false );
|
|
|
|
|
2011-10-14 16:24:38 +02:00
|
|
|
pyw_free_idc_args(pargs, &decref);
|
2010-06-28 14:36:40 +02:00
|
|
|
|
|
|
|
if ( imported_module )
|
|
|
|
Py_XDECREF(module);
|
2011-04-18 18:07:00 +02:00
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Compile callback for Python external language evaluator
|
|
|
|
bool idaapi IDAPython_extlang_compile_file(
|
|
|
|
const char *filename,
|
|
|
|
char *errbuf,
|
|
|
|
size_t errbufsize)
|
|
|
|
{
|
|
|
|
begin_execution();
|
|
|
|
bool ok = IDAPython_ExecFile(filename, errbuf, errbufsize);
|
|
|
|
end_execution();
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Create an object instance
|
|
|
|
bool idaapi IDAPython_extlang_create_object(
|
|
|
|
const char *name, // in: object class name
|
|
|
|
int nargs, // in: number of input arguments
|
|
|
|
const idc_value_t args[], // in: input arguments
|
|
|
|
idc_value_t *result, // out: created object or exception
|
|
|
|
char *errbuf, // out: error message if evaluation fails
|
|
|
|
size_t errbufsize) // in: size of the error buffer
|
|
|
|
{
|
|
|
|
PyObject *py_mod(NULL), *py_cls(NULL);
|
|
|
|
ppyobject_vec_t pargs;
|
|
|
|
|
|
|
|
bool ok = false;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// Parse the object name (to get the module and class name)
|
|
|
|
char modname[MAXSTR] = {0};
|
|
|
|
char clsname[MAXSTR] = {0};
|
|
|
|
parse_py_modname(name, modname, clsname, MAXSTR);
|
|
|
|
|
|
|
|
// Get a reference to the module
|
2010-07-13 18:43:53 +02:00
|
|
|
py_mod = PyW_TryImportModule(modname);
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( py_mod == NULL )
|
|
|
|
{
|
|
|
|
qsnprintf(errbuf, errbufsize, "Could not import module '%s'!", modname);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the class reference
|
2010-07-13 18:43:53 +02:00
|
|
|
py_cls = PyW_TryGetAttrString(py_mod, clsname);
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( py_cls == NULL )
|
|
|
|
{
|
|
|
|
qsnprintf(errbuf, errbufsize, "Could not find class type '%s'!", clsname);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error during conversion?
|
2011-10-14 16:24:38 +02:00
|
|
|
ok = pyw_convert_idc_args(args, nargs, pargs, NULL, errbuf, errbufsize);
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( !ok )
|
|
|
|
break;
|
|
|
|
ok = false;
|
|
|
|
|
|
|
|
// Call the constructor
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_ENSURE;
|
2010-06-28 14:36:40 +02:00
|
|
|
PyObject *py_res = PyObject_CallObject(py_cls, pargs.empty() ? NULL : pargs[0]);
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_RELEASE;
|
2010-06-28 14:36:40 +02:00
|
|
|
ok = return_python_result(result, py_res, errbuf, errbufsize);
|
|
|
|
} while ( false );
|
|
|
|
|
|
|
|
Py_XDECREF(py_mod);
|
|
|
|
Py_XDECREF(py_cls);
|
|
|
|
|
|
|
|
// Free the arguments tuple
|
2011-10-14 16:24:38 +02:00
|
|
|
pyw_free_idc_args(pargs);
|
2010-06-28 14:36:40 +02:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Returns the attribute value of a given object from the global scope
|
|
|
|
bool idaapi IDAPython_extlang_get_attr(
|
|
|
|
const idc_value_t *obj, // in: object (may be NULL)
|
|
|
|
const char *attr, // in: attribute name
|
|
|
|
idc_value_t *result)
|
|
|
|
{
|
|
|
|
PyObject *py_mod(NULL), *py_obj(NULL);
|
|
|
|
bool is_opaque_obj = false;
|
|
|
|
int cvt = CIP_FAILED;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// Get a reference to the module
|
2010-07-13 18:43:53 +02:00
|
|
|
py_mod = PyW_TryImportModule(S_MAIN);
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( py_mod == NULL )
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Object specified:
|
|
|
|
// - (1) string contain attribute name in the main module
|
|
|
|
// - (2) opaque object (we use it as is)
|
|
|
|
if ( obj != NULL )
|
|
|
|
{
|
|
|
|
// (1) Get attribute from main module
|
|
|
|
if ( obj->vtype == VT_STR2 )
|
2010-07-13 18:43:53 +02:00
|
|
|
py_obj = PyW_TryGetAttrString(py_mod, obj->c_str());
|
2010-06-28 14:36:40 +02:00
|
|
|
// (2) see if opaque object
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Convert object (expecting opaque object)
|
|
|
|
cvt = idcvar_to_pyvar(*obj, &py_obj);
|
|
|
|
// Only opaque objects are accepted
|
|
|
|
if ( cvt != CIP_OK_NODECREF )
|
|
|
|
{
|
|
|
|
Py_XDECREF(py_obj);
|
|
|
|
py_obj = NULL;
|
|
|
|
cvt = CIP_FAILED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
is_opaque_obj = true;
|
|
|
|
}
|
|
|
|
// Get the attribute reference
|
|
|
|
if ( py_obj == NULL )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// No object specified:
|
|
|
|
else
|
|
|
|
{
|
2011-10-14 16:24:38 +02:00
|
|
|
// ...then work with main module
|
2010-06-28 14:36:40 +02:00
|
|
|
py_obj = py_mod;
|
|
|
|
}
|
2011-10-14 16:24:38 +02:00
|
|
|
// Special case: if attribute not passed then retrieve the class
|
|
|
|
// name associated associated with the passed object
|
|
|
|
if ( attr == NULL || attr[0] == '\0' )
|
|
|
|
{
|
|
|
|
cvt = CIP_FAILED;
|
|
|
|
// Get the class
|
|
|
|
PyObject *cls = PyObject_GetAttrString(py_obj, "__class__");
|
|
|
|
if ( cls == NULL )
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Get its name
|
|
|
|
PyObject *name = PyObject_GetAttrString(cls, "__name__");
|
|
|
|
Py_DECREF(cls);
|
|
|
|
if ( name == NULL )
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Convert name object to string object
|
|
|
|
PyObject *string = PyObject_Str(name);
|
|
|
|
Py_DECREF(name);
|
|
|
|
if ( string == NULL )
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Convert name python string to a C string
|
|
|
|
const char *clsname = PyString_AsString(name);
|
|
|
|
if ( clsname == NULL )
|
|
|
|
break;
|
|
|
|
|
|
|
|
result->set_string(clsname);
|
|
|
|
cvt = CIP_OK;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-07-13 18:43:53 +02:00
|
|
|
PyObject *py_attr = PyW_TryGetAttrString(py_obj, attr);
|
2010-06-28 14:36:40 +02:00
|
|
|
// No attribute?
|
|
|
|
if ( py_attr == NULL )
|
|
|
|
{
|
|
|
|
cvt = CIP_FAILED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Don't store result
|
|
|
|
if ( result == NULL )
|
|
|
|
{
|
|
|
|
cvt = CIP_OK;
|
|
|
|
// Decrement attribute (because of GetAttrString)
|
|
|
|
Py_DECREF(py_attr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cvt = pyvar_to_idcvar(py_attr, result);
|
|
|
|
// Conversion succeeded and opaque object was passed:
|
|
|
|
// Since the object will be passed to IDC, it is likely that IDC value will be
|
|
|
|
// destroyed and also destroying the opaque object with it. That is an undesired effect.
|
|
|
|
// We increment the reference of the object so that even if the IDC value dies
|
|
|
|
// the opaque object remains. So by not decrement reference after GetAttrString() call
|
|
|
|
// we are indirectly increasing the reference. If it was not opaque then we decrement the reference.
|
|
|
|
if ( cvt >= CIP_OK && cvt != CIP_OK_NODECREF )
|
|
|
|
{
|
|
|
|
// Decrement the reference (that was incremented by GetAttrString())
|
|
|
|
Py_DECREF(py_attr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while ( false );
|
|
|
|
|
|
|
|
// Free main module reference
|
|
|
|
Py_XDECREF(py_mod);
|
|
|
|
|
|
|
|
// Wasn't working with main module?
|
|
|
|
if ( obj != NULL && !is_opaque_obj )
|
|
|
|
Py_XDECREF(py_obj);
|
|
|
|
|
|
|
|
return cvt >= CIP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Returns the attribute value of a given object from the global scope
|
|
|
|
bool idaapi IDAPython_extlang_set_attr(
|
|
|
|
idc_value_t *obj, // in: object name (may be NULL)
|
|
|
|
const char *attr, // in: attribute name
|
|
|
|
idc_value_t *value)
|
|
|
|
{
|
|
|
|
PyObject *py_mod(NULL), *py_obj(NULL);
|
|
|
|
bool ok = false, is_opaque_obj = false;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// Get a reference to the module
|
2010-07-13 18:43:53 +02:00
|
|
|
py_mod = PyW_TryImportModule(S_MAIN);
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( py_mod == NULL )
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ( obj != NULL )
|
|
|
|
{
|
|
|
|
// Get the attribute reference (from just a name)
|
|
|
|
if ( obj->vtype == VT_STR2 )
|
2010-07-13 18:43:53 +02:00
|
|
|
py_obj = PyW_TryGetAttrString(py_mod, obj->c_str());
|
2010-06-28 14:36:40 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
int cvt = idcvar_to_pyvar(*obj, &py_obj);
|
|
|
|
// Only opaque objects are accepted
|
|
|
|
if ( cvt != CIP_OK_NODECREF )
|
|
|
|
{
|
|
|
|
Py_XDECREF(py_obj);
|
|
|
|
py_obj = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
is_opaque_obj = true;
|
|
|
|
}
|
|
|
|
// No object to set_attr on?
|
|
|
|
if ( py_obj == NULL )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// set_attr on the main module
|
|
|
|
py_obj = py_mod;
|
|
|
|
}
|
|
|
|
// Convert the value
|
|
|
|
PyObject *py_var(NULL);
|
|
|
|
int cvt = idcvar_to_pyvar(*value, &py_var);
|
|
|
|
if ( cvt >= CIP_OK )
|
|
|
|
{
|
|
|
|
ok = PyObject_SetAttrString(py_obj, attr, py_var) != -1;
|
|
|
|
if ( cvt != CIP_OK_NODECREF )
|
|
|
|
Py_XDECREF(py_var);
|
|
|
|
}
|
|
|
|
} while ( false );
|
|
|
|
|
|
|
|
Py_XDECREF(py_mod);
|
|
|
|
|
|
|
|
if ( obj != NULL && !is_opaque_obj )
|
|
|
|
Py_XDECREF(py_obj);
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Calculator callback for Python external language evaluator
|
|
|
|
bool idaapi IDAPython_extlang_calcexpr(
|
|
|
|
ea_t /*current_ea*/,
|
|
|
|
const char *expr,
|
|
|
|
idc_value_t *rv,
|
|
|
|
char *errbuf,
|
|
|
|
size_t errbufsize)
|
|
|
|
{
|
|
|
|
PyObject *globals = GetMainGlobals();
|
|
|
|
if ( globals == NULL )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
begin_execution();
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_ENSURE;
|
2010-06-28 14:36:40 +02:00
|
|
|
PyObject *result = PyRun_String(expr, Py_eval_input, globals, globals);
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_RELEASE;
|
2010-06-28 14:36:40 +02:00
|
|
|
end_execution();
|
|
|
|
|
|
|
|
return return_python_result(rv, result, errbuf, errbufsize);
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
bool idaapi IDAPython_extlang_call_method(
|
|
|
|
const idc_value_t *idc_obj,
|
|
|
|
const char *method_name,
|
|
|
|
int nargs,
|
|
|
|
const idc_value_t args[],
|
|
|
|
idc_value_t *result,
|
|
|
|
char *errbuf,
|
|
|
|
size_t errbufsize)
|
|
|
|
{
|
|
|
|
// Check for unsupported usage of call_method.
|
|
|
|
// Mainly a method call requires an object and a method.
|
|
|
|
if ( (idc_obj == NULL && method_name == NULL) || (idc_obj != NULL && method_name == NULL) )
|
|
|
|
{
|
|
|
|
qstrncpy(errbuf, "call_method does not support this operation", errbufsize);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Behave like run()
|
|
|
|
else if ( idc_obj == NULL && method_name != NULL )
|
|
|
|
return IDAPython_extlang_run(method_name, nargs, args, result, errbuf, errbufsize);
|
|
|
|
|
|
|
|
PyObject *py_obj(NULL), *py_method(NULL);
|
|
|
|
// Holds conversion status of input object
|
|
|
|
int obj_cvt;
|
|
|
|
ppyobject_vec_t pargs;
|
|
|
|
bool ok = false;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// Convert input object
|
|
|
|
obj_cvt = idcvar_to_pyvar(*idc_obj, &py_obj);
|
|
|
|
if ( obj_cvt < CIP_OK )
|
|
|
|
{
|
|
|
|
qstrncpy(errbuf, "Failed to convert input object to Python value", errbufsize);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-07-13 18:43:53 +02:00
|
|
|
py_method = PyW_TryGetAttrString(py_obj, method_name);
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( py_method == NULL || !PyCallable_Check(py_method) )
|
|
|
|
{
|
|
|
|
qsnprintf(errbuf, errbufsize, "The input object does not have a callable method called '%s'", method_name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert arguments to python objects
|
2011-10-14 16:24:38 +02:00
|
|
|
ok = pyw_convert_idc_args(args, nargs, pargs, NULL, errbuf, errbufsize);
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( !ok )
|
|
|
|
break;
|
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_ENSURE;
|
2010-06-28 14:36:40 +02:00
|
|
|
PyObject *py_res = PyObject_CallObject(py_method, pargs.empty() ? NULL : pargs[0]);
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_RELEASE;
|
2010-06-28 14:36:40 +02:00
|
|
|
ok = return_python_result(result, py_res, errbuf, errbufsize);
|
|
|
|
} while ( false );
|
|
|
|
|
|
|
|
// Free converted args
|
2011-10-14 16:24:38 +02:00
|
|
|
pyw_free_idc_args(pargs);
|
2010-06-28 14:36:40 +02:00
|
|
|
|
|
|
|
// Release reference of object if needed
|
|
|
|
if ( obj_cvt != CIP_OK_NODECREF )
|
|
|
|
Py_XDECREF(py_obj);
|
|
|
|
|
|
|
|
Py_XDECREF(py_method);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
extlang_t extlang_python =
|
|
|
|
{
|
|
|
|
sizeof(extlang_t),
|
|
|
|
0,
|
|
|
|
"Python",
|
|
|
|
IDAPython_extlang_compile,
|
|
|
|
IDAPython_extlang_run,
|
|
|
|
IDAPython_extlang_calcexpr,
|
|
|
|
IDAPython_extlang_compile_file,
|
|
|
|
"py",
|
|
|
|
IDAPython_extlang_create_object,
|
|
|
|
IDAPython_extlang_get_attr,
|
|
|
|
IDAPython_extlang_set_attr,
|
2011-10-14 16:24:38 +02:00
|
|
|
IDAPython_extlang_call_method,
|
|
|
|
IDAPython_extlang_run_statements,
|
2010-06-28 14:36:40 +02:00
|
|
|
};
|
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
//-------------------------------------------------------------------------
|
2010-06-28 14:36:40 +02:00
|
|
|
void enable_extlang_python(bool enable)
|
|
|
|
{
|
|
|
|
if ( enable )
|
|
|
|
select_extlang(&extlang_python);
|
|
|
|
else
|
|
|
|
select_extlang(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Execute a line in the Python CLI
|
|
|
|
bool idaapi IDAPython_cli_execute_line(const char *line)
|
|
|
|
{
|
2011-04-18 18:07:00 +02:00
|
|
|
// Do not process empty lines
|
2010-11-10 14:58:08 +01:00
|
|
|
if ( line[0] == '\0' )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
const char *last_line = strrchr(line, '\n');
|
|
|
|
if ( last_line == NULL )
|
|
|
|
last_line = line;
|
2010-06-28 14:36:40 +02:00
|
|
|
else
|
2010-11-10 14:58:08 +01:00
|
|
|
last_line += 1;
|
2010-06-28 14:36:40 +02:00
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
// Skip empty lines
|
2010-11-10 14:58:08 +01:00
|
|
|
if ( last_line[0] != '\0' )
|
2010-06-28 14:36:40 +02:00
|
|
|
{
|
2011-04-18 18:07:00 +02:00
|
|
|
// Line ends with ":" or begins with a space character?
|
|
|
|
bool more = last_line[qstrlen(last_line)-1] == ':' || qisspace(last_line[0]);
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( more )
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-04-21 16:23:46 +02:00
|
|
|
//
|
|
|
|
// Pseudo commands
|
|
|
|
//
|
|
|
|
qstring s;
|
2011-07-27 10:51:29 +02:00
|
|
|
do
|
2011-04-21 16:23:46 +02:00
|
|
|
{
|
|
|
|
// Help command?
|
|
|
|
if ( line[0] == '?' )
|
|
|
|
s.sprnt("help(%s)", line+1);
|
|
|
|
// Shell command?
|
|
|
|
else if ( line[0] == '!' )
|
|
|
|
s.sprnt("idaapi.IDAPython_ExecSystem(r'%s')", line+1);
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
// Patch the command line pointer
|
|
|
|
line = s.c_str();
|
|
|
|
} while (false);
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
begin_execution();
|
2010-11-10 14:58:08 +01:00
|
|
|
PythonEvalOrExec(line);
|
2010-06-28 14:36:40 +02:00
|
|
|
end_execution();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-07-19 15:00:33 +02:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
bool idaapi IDAPYthon_cli_complete_line(
|
|
|
|
qstring *completion,
|
|
|
|
const char *prefix,
|
|
|
|
int n,
|
|
|
|
const char *line,
|
|
|
|
int x)
|
|
|
|
{
|
|
|
|
PyObject *py_complete = get_idaapi_attr(S_IDAAPI_COMPLETION);
|
|
|
|
if ( py_complete == NULL )
|
|
|
|
return false;
|
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_ENSURE;
|
2010-07-19 15:00:33 +02:00
|
|
|
PyObject *py_ret = PyObject_CallFunction(py_complete, "sisi", prefix, n, line, x);
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_RELEASE;
|
2010-08-10 13:36:40 +02:00
|
|
|
|
2010-07-19 15:00:33 +02:00
|
|
|
Py_DECREF(py_complete);
|
2010-08-10 13:36:40 +02:00
|
|
|
|
2010-07-19 15:00:33 +02:00
|
|
|
// Swallow the error
|
|
|
|
PyW_GetError(completion);
|
|
|
|
|
|
|
|
bool ok = py_ret != NULL && PyString_Check(py_ret) != 0;
|
2010-08-10 13:36:40 +02:00
|
|
|
|
2010-07-19 15:00:33 +02:00
|
|
|
if ( ok )
|
|
|
|
*completion = PyString_AS_STRING(py_ret);
|
|
|
|
|
|
|
|
Py_XDECREF(py_ret);
|
2010-08-10 13:36:40 +02:00
|
|
|
|
2010-07-19 15:00:33 +02:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
static const cli_t cli_python =
|
|
|
|
{
|
|
|
|
sizeof(cli_t),
|
|
|
|
0,
|
|
|
|
"Python",
|
|
|
|
"Python - IDAPython plugin",
|
|
|
|
"Enter any Python expression",
|
|
|
|
IDAPython_cli_execute_line,
|
2010-07-19 15:00:33 +02:00
|
|
|
IDAPYthon_cli_complete_line,
|
2010-06-28 14:36:40 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Control the Python CLI status
|
|
|
|
void enable_python_cli(bool enable)
|
|
|
|
{
|
|
|
|
if ( enable )
|
|
|
|
install_command_interpreter(&cli_python);
|
|
|
|
else
|
|
|
|
remove_command_interpreter(&cli_python);
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Prints the IDAPython copyright banner
|
|
|
|
void py_print_banner()
|
|
|
|
{
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_ENSURE;
|
2010-06-28 14:36:40 +02:00
|
|
|
PyRun_SimpleString("print_banner()");
|
2011-04-18 18:07:00 +02:00
|
|
|
PYW_GIL_RELEASE;
|
2010-06-28 14:36:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Parse plugin options
|
|
|
|
void parse_plugin_options()
|
|
|
|
{
|
|
|
|
// Get options from IDA
|
|
|
|
const char *options = get_plugin_options(S_IDAPYTHON);
|
|
|
|
|
|
|
|
// No options?
|
|
|
|
if ( options == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
// User specified 'when' parameter?
|
|
|
|
const char *p = strchr(options, ';');
|
|
|
|
if ( p == NULL )
|
|
|
|
{
|
|
|
|
g_run_when = run_on_db_open;
|
|
|
|
p = options;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_run_when = atoi(options);
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
qstrncpy(g_run_script, p, sizeof(g_run_script));
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Converts the global IDC variable "ARGV" into a Python variable.
|
|
|
|
// The arguments will then be accessible via 'idc' module / 'ARGV' variable.
|
|
|
|
void convert_idc_args()
|
|
|
|
{
|
|
|
|
PyObject *py_args = PyList_New(0);
|
|
|
|
|
|
|
|
idc_value_t *idc_args = find_idc_gvar(S_IDC_ARGS_VARNAME);
|
|
|
|
if ( idc_args != NULL )
|
|
|
|
{
|
|
|
|
idc_value_t attr;
|
|
|
|
char attr_name[20] = {"0"};
|
|
|
|
for ( int i=1; VarGetAttr(idc_args, attr_name, &attr) == eOk; i++ )
|
|
|
|
{
|
|
|
|
PyList_Insert(py_args, i, PyString_FromString(attr.c_str()));
|
|
|
|
qsnprintf(attr_name, sizeof(attr_name), "%d", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get reference to the IDC module (it is imported by init.py)
|
2010-07-13 18:43:53 +02:00
|
|
|
PyObject *py_mod = PyW_TryImportModule(S_IDC_MODNAME);
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( py_mod != NULL )
|
|
|
|
PyObject_SetAttrString(py_mod, S_IDC_ARGS_VARNAME, py_args);
|
|
|
|
|
|
|
|
Py_DECREF(py_args);
|
|
|
|
Py_XDECREF(py_mod);
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// We install the menu later because the text version crashes if
|
|
|
|
// add_menu_item is called too early
|
|
|
|
static int idaapi menu_installer_cb(void *, int code, va_list)
|
|
|
|
{
|
|
|
|
switch ( code )
|
|
|
|
{
|
|
|
|
case ui_ready_to_run:
|
|
|
|
g_ui_ready = true;
|
|
|
|
py_print_banner();
|
|
|
|
|
|
|
|
if ( g_run_when == run_on_ui_ready )
|
|
|
|
RunScript(g_run_script);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ui_database_inited:
|
|
|
|
{
|
|
|
|
convert_idc_args();
|
|
|
|
if ( g_run_when == run_on_db_open )
|
|
|
|
RunScript(g_run_script);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-26 15:39:09 +02:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// remove current directory (empty entry) from the sys.path
|
|
|
|
static void sanitize_path()
|
|
|
|
{
|
|
|
|
char buf[QMAXPATH];
|
|
|
|
qstrncpy(buf, Py_GetPath(), sizeof(buf));
|
|
|
|
char *ctx;
|
|
|
|
qstring newpath;
|
|
|
|
for ( char *d0 = qstrtok(buf, DELIMITER, &ctx);
|
|
|
|
d0 != NULL;
|
|
|
|
d0 = qstrtok(NULL, DELIMITER, &ctx) )
|
|
|
|
{
|
|
|
|
if ( d0[0] == '\0' )
|
|
|
|
// skip empty entry
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( !newpath.empty() )
|
|
|
|
newpath.append(DELIMITER);
|
|
|
|
newpath.append(d0);
|
|
|
|
}
|
|
|
|
PySys_SetPath(newpath.begin());
|
|
|
|
}
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Initialize the Python environment
|
|
|
|
bool IDAPython_Init(void)
|
|
|
|
{
|
|
|
|
// Already initialized?
|
|
|
|
if ( g_initialized )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Form the absolute path to IDA\python folder
|
|
|
|
qstrncpy(g_idapython_dir, idadir(PYTHON_DIR_NAME), sizeof(g_idapython_dir));
|
|
|
|
|
|
|
|
// Check for the presence of essential files
|
|
|
|
if ( !CheckScriptFiles() )
|
|
|
|
return false;
|
|
|
|
|
2012-03-26 15:39:09 +02:00
|
|
|
char tmp[QMAXPATH];
|
2010-06-28 14:36:40 +02:00
|
|
|
#ifdef __LINUX__
|
|
|
|
// Export symbols from libpython to resolve imported module deps
|
2010-09-11 11:34:14 +02:00
|
|
|
qsnprintf(tmp, sizeof(tmp), "libpython%d.%d.so.1",
|
2010-06-28 14:36:40 +02:00
|
|
|
PY_MAJOR_VERSION,
|
|
|
|
PY_MINOR_VERSION);
|
|
|
|
if ( !dlopen(tmp, RTLD_NOLOAD | RTLD_GLOBAL | RTLD_LAZY) )
|
|
|
|
{
|
|
|
|
warning("IDAPython: %s", dlerror());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-08-10 13:36:40 +02:00
|
|
|
#ifdef __MAC__
|
|
|
|
// We should set python home to the module's path, otherwise it can pick up stray modules from $PATH
|
|
|
|
NSModule pythonModule = NSModuleForSymbol(NSLookupAndBindSymbol("_Py_Initialize"));
|
|
|
|
// Use dylib functions to find out where the framework was loaded from
|
|
|
|
const char *buf = (char *)NSLibraryNameForModule(pythonModule);
|
|
|
|
if ( buf != NULL )
|
|
|
|
{
|
|
|
|
// The path will be something like:
|
|
|
|
// /System/Library/Frameworks/Python.framework/Versions/2.5/Python
|
|
|
|
// We need to strip the last part
|
|
|
|
// use static buffer because Py_SetPythonHome() just stores a pointer
|
|
|
|
static char pyhomepath[MAXSTR];
|
|
|
|
qstrncpy(pyhomepath, buf, MAXSTR);
|
|
|
|
char * lastslash = strrchr(pyhomepath, '/');
|
|
|
|
if ( lastslash != NULL )
|
|
|
|
{
|
|
|
|
*lastslash = 0;
|
|
|
|
Py_SetPythonHome(pyhomepath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
// Read configuration value
|
|
|
|
read_user_config_file("python.cfg", set_python_options, NULL);
|
2011-07-27 10:51:29 +02:00
|
|
|
if ( g_alert_auto_scripts )
|
2011-04-18 18:07:00 +02:00
|
|
|
{
|
2012-03-26 15:39:09 +02:00
|
|
|
if ( pywraps_check_autoscripts(tmp, sizeof(tmp))
|
2011-04-18 18:07:00 +02:00
|
|
|
&& askyn_c(0, "HIDECANCEL\nTITLE IDAPython\nThe script '%s' was found in the current directory and will be automatically executed by Python.\n\n"
|
2012-03-26 15:39:09 +02:00
|
|
|
"Do you want to continue loading IDAPython?", tmp) <= 0 )
|
2011-04-18 18:07:00 +02:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
// Start the interpreter
|
|
|
|
Py_Initialize();
|
|
|
|
if ( !Py_IsInitialized() )
|
|
|
|
{
|
|
|
|
warning("IDAPython: Py_Initialize() failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-03-26 15:39:09 +02:00
|
|
|
sanitize_path();
|
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
// Enable multi-threading support
|
|
|
|
if ( !PyEval_ThreadsInitialized() )
|
|
|
|
PyEval_InitThreads();
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
// Init the SWIG wrapper
|
|
|
|
init_idaapi();
|
|
|
|
|
|
|
|
// Set IDAPYTHON_VERSION in Python
|
2011-10-14 16:24:38 +02:00
|
|
|
qsnprintf(tmp, sizeof(tmp),
|
|
|
|
"IDAPYTHON_VERSION=(%d, %d, %d, '%s', %d)\n"
|
2011-04-18 18:07:00 +02:00
|
|
|
"IDAPYTHON_REMOVE_CWD_SYS_PATH = %s\n",
|
2010-06-28 14:36:40 +02:00
|
|
|
VER_MAJOR,
|
|
|
|
VER_MINOR,
|
|
|
|
VER_PATCH,
|
|
|
|
VER_STATUS,
|
2011-04-18 18:07:00 +02:00
|
|
|
VER_SERIAL,
|
|
|
|
g_remove_cwd_sys_path ? "True" : "False");
|
2010-06-28 14:36:40 +02:00
|
|
|
PyRun_SimpleString(tmp);
|
|
|
|
|
2010-09-11 11:34:14 +02:00
|
|
|
// Install extlang. Needs to be done before running init.py
|
|
|
|
// in case it's calling idaapi.enable_extlang_python(1)
|
|
|
|
install_extlang(&extlang_python);
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
// Execute init.py (for Python side initialization)
|
2011-04-18 18:07:00 +02:00
|
|
|
qmakepath(tmp, MAXSTR, g_idapython_dir, S_INIT_PY, NULL);
|
2010-06-28 14:36:40 +02:00
|
|
|
if ( !PyRunFile(tmp) )
|
|
|
|
{
|
2011-10-14 16:24:38 +02:00
|
|
|
// Try to fetch a one line error string. We must do it before printing
|
|
|
|
// the traceback information. Make sure that the exception is not cleared
|
|
|
|
handle_python_error(tmp, sizeof(tmp), false);
|
|
|
|
|
|
|
|
// Print the exception traceback
|
|
|
|
PyRun_SimpleString("import traceback;traceback.print_exc();");
|
|
|
|
|
|
|
|
warning("IDAPython: error executing " S_INIT_PY ":\n"
|
|
|
|
"%s\n"
|
|
|
|
"\n"
|
|
|
|
"Refer to the message window to see the full error log.", tmp);
|
2010-06-28 14:36:40 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Init pywraps and notify_when
|
|
|
|
if ( !init_pywraps() || !pywraps_nw_init() )
|
|
|
|
{
|
|
|
|
warning("IDAPython: init_pywraps() failed!");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ENABLE_PYTHON_PROFILING
|
|
|
|
PyEval_SetTrace(tracefunc, NULL);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Batch-mode operation:
|
|
|
|
parse_plugin_options();
|
|
|
|
|
|
|
|
// Register a RunPythonStatement() function for IDC
|
|
|
|
set_idc_func(S_IDC_RUNPYTHON_STATEMENT, idc_runpythonstatement, idc_runpythonstatement_args);
|
|
|
|
|
|
|
|
// A script specified on the command line is run
|
|
|
|
if ( g_run_when == run_on_init )
|
|
|
|
RunScript(g_run_script);
|
|
|
|
|
|
|
|
#ifdef PLUGINFIX
|
|
|
|
hook_to_notification_point(HT_UI, menu_installer_cb, NULL);
|
|
|
|
#else
|
|
|
|
install_python_menus();
|
|
|
|
py_print_banner();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Enable the CLI by default
|
|
|
|
enable_python_cli(true);
|
|
|
|
|
|
|
|
g_initialized = true;
|
|
|
|
pywraps_nw_notify(NW_INITIDA_SLOT);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Cleaning up Python
|
|
|
|
void IDAPython_Term(void)
|
|
|
|
{
|
|
|
|
#ifdef PLUGINFIX
|
|
|
|
unhook_from_notification_point(HT_UI, menu_installer_cb, NULL);
|
|
|
|
#endif
|
|
|
|
/* Remove the menu items before termination */
|
|
|
|
del_menu_item("File/Python command...");
|
|
|
|
|
|
|
|
// Notify about IDA closing
|
|
|
|
pywraps_nw_notify(NW_TERMIDA_SLOT);
|
|
|
|
|
|
|
|
// De-init notify_when
|
|
|
|
pywraps_nw_term();
|
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
// Remove the CLI
|
|
|
|
enable_python_cli(false);
|
|
|
|
|
|
|
|
// Remove the extlang
|
|
|
|
remove_extlang(&extlang_python);
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
// De-init pywraps
|
|
|
|
deinit_pywraps();
|
|
|
|
|
|
|
|
// Uninstall IDC function
|
|
|
|
set_idc_func(S_IDC_RUNPYTHON_STATEMENT, NULL, NULL);
|
|
|
|
|
|
|
|
// Shut the interpreter down
|
|
|
|
Py_Finalize();
|
|
|
|
|
|
|
|
g_initialized = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Plugin init routine
|
|
|
|
int idaapi init(void)
|
|
|
|
{
|
|
|
|
if ( IDAPython_Init() )
|
|
|
|
return PLUGIN_KEEP;
|
|
|
|
else
|
|
|
|
return PLUGIN_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Plugin term routine
|
|
|
|
void idaapi term(void)
|
|
|
|
{
|
|
|
|
IDAPython_Term();
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Plugin hotkey entry point
|
|
|
|
void idaapi run(int arg)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
switch ( arg )
|
|
|
|
{
|
|
|
|
case IDAPYTHON_RUNSTATEMENT:
|
|
|
|
IDAPython_RunStatement();
|
|
|
|
break;
|
|
|
|
case IDAPYTHON_ENABLE_EXTLANG:
|
|
|
|
enable_extlang_python(true);
|
|
|
|
break;
|
|
|
|
case IDAPYTHON_DISABLE_EXTLANG:
|
|
|
|
enable_extlang_python(false);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
warning("IDAPython: unknown plugin argument %d", arg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
warning("Exception in Python interpreter. Reloading...");
|
|
|
|
IDAPython_Term();
|
|
|
|
IDAPython_Init();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// PLUGIN DESCRIPTION BLOCK
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
plugin_t PLUGIN =
|
|
|
|
{
|
|
|
|
IDP_INTERFACE_VERSION,
|
2010-08-10 13:44:59 +02:00
|
|
|
PLUGIN_FLAGS | PLUGIN_HIDE, // plugin flags
|
2010-06-28 14:36:40 +02:00
|
|
|
init, // initialize
|
|
|
|
term, // terminate. this pointer may be NULL.
|
|
|
|
run, // invoke plugin
|
|
|
|
S_IDAPYTHON, // long comment about the plugin
|
|
|
|
// it could appear in the status line
|
|
|
|
// or as a hint
|
|
|
|
// multiline help about the plugin
|
|
|
|
"IDA Python Plugin\n",
|
|
|
|
// the preferred short name of the plugin
|
|
|
|
S_IDAPYTHON,
|
|
|
|
// the preferred hotkey to run the plugin
|
2011-04-18 18:07:00 +02:00
|
|
|
NULL
|
2010-06-28 14:36:40 +02:00
|
|
|
};
|