1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/*
* Copyright (c) 2015 Balabit
* Copyright (c) 2015 Balazs Scheidler <balazs.scheidler@balabit.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "python-debugger.h"
#include "python-module.h"
#include "python-helpers.h"
#include "python-types.h"
#include "messages.h"
#include "debugger/debugger.h"
#include "logmsg/logmsg.h"
static void
_add_nv_keys_to_list(gpointer key, gpointer value, gpointer user_data)
{
PyObject *list = (PyObject *) user_data;
const gchar *name = (const gchar *) key;
PyObject *py_name = py_string_from_string(name, -1);
PyList_Append(list, py_name);
Py_XDECREF(py_name);
}
static PyObject *
_py_get_nv_registry(PyObject *s, PyObject *args)
{
PyObject *list;
if (!PyArg_ParseTuple(args, ""))
return NULL;
list = PyList_New(0);
log_msg_registry_foreach(_add_nv_keys_to_list, list);
return list;
}
static PyMethodDef _syslogngdbg_functions[] =
{
{ "get_nv_registry", _py_get_nv_registry, METH_VARARGS, "Get the list of registered name-value pairs in syslog-ng" },
{ NULL, NULL, 0, NULL } /* sentinel*/
};
static struct PyModuleDef syslogngdbgmodule =
{
.m_base = PyModuleDef_HEAD_INIT,
.m_name = "_syslogngdbg",
.m_size = -1,
.m_methods = _syslogngdbg_functions
};
static PyObject *
PyInit_syslogngdbg(void)
{
PyGILState_STATE gstate = PyGILState_Ensure();
PyObject *module = PyModule_Create(&syslogngdbgmodule);
PyGILState_Release(gstate);
return module;
}
void
python_debugger_append_inittab(void)
{
PyImport_AppendInittab("_syslogngdbg", &PyInit_syslogngdbg);
}
#define DEBUGGER_FETCH_COMMAND "syslogng.debuggercli.fetch_command"
static gchar *
python_fetch_debugger_command(void)
{
static PyObject *fetch_command;
PyObject *ret;
gchar *command = NULL;
PyGILState_STATE gstate;
gstate = PyGILState_Ensure();
if (!fetch_command)
fetch_command = _py_resolve_qualified_name(DEBUGGER_FETCH_COMMAND);
if (!fetch_command)
goto exit;
ret = PyObject_CallFunctionObjArgs(fetch_command, NULL);
if (!ret)
{
gchar buf[256];
msg_error("Error calling debugger fetch_command",
evt_tag_str("function", DEBUGGER_FETCH_COMMAND),
evt_tag_str("exception", _py_format_exception_text(buf, sizeof(buf))));
_py_finish_exception_handling();
goto exit;
}
const gchar *str;
if (!py_bytes_or_string_to_string(ret, &str))
{
msg_error("Return value from debugger fetch_command is not a string",
evt_tag_str("function", DEBUGGER_FETCH_COMMAND),
evt_tag_str("type", ret->ob_type->tp_name));
Py_DECREF(ret);
goto exit;
}
command = g_strdup(str);
Py_DECREF(ret);
exit:
PyGILState_Release(gstate);
if (!command)
return debugger_builtin_fetch_command();
return command;
}
void
python_debugger_init(void)
{
debugger_register_command_fetcher(python_fetch_debugger_command);
}
|