summaryrefslogtreecommitdiffstats
path: root/plugins/python/python_plugin_audit_multi.inc
blob: 015b4d14501cd4163fa7d25da91a2091751b6dce (plain)
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
/* The purpose of this file is to generate a audit_plugin symbols,
 * with an I/O plugin context which is unique to it and its functions.
 * The callbacks inside are just wrappers around the real functions in python_plugin_audit.c,
 * their only purpose is to add the unique context to each separate audit_plugin call.
 */

#define PLUGIN_CTX AUDIT_SYMBOL_NAME(plugin_ctx)
#define CALLBACK_CFUNC(func_name) AUDIT_SYMBOL_NAME(_python_plugin_audit_ ## func_name)

extern struct audit_plugin AUDIT_SYMBOL_NAME(python_audit);
static struct AuditPluginContext PLUGIN_CTX = { { NULL }, &AUDIT_SYMBOL_NAME(python_audit) };


static int
CALLBACK_CFUNC(open)(unsigned int version, sudo_conv_t conversation,
                         sudo_printf_t sudo_printf, char * const settings[],
                         char * const user_info[], int submit_optind,
                         char * const submit_argv[], char * const submit_envp[],
                         char * const plugin_options[], const char **errstr)
{
    return python_plugin_audit_open(&PLUGIN_CTX, version, conversation, sudo_printf,
        settings, user_info, submit_optind, submit_argv, submit_envp,
        plugin_options, errstr);
}

static void
CALLBACK_CFUNC(close)(int status_type, int status)
{
    python_plugin_audit_close(&PLUGIN_CTX, status_type, status);
}

static int
CALLBACK_CFUNC(accept)(const char *plugin_name, unsigned int plugin_type,
    char * const command_info[], char * const run_argv[],
    char * const run_envp[], const char **errstr)
{
    return python_plugin_audit_accept(&PLUGIN_CTX, plugin_name, plugin_type,
        command_info, run_argv, run_envp, errstr);
}

static int
CALLBACK_CFUNC(reject)(const char *plugin_name, unsigned int plugin_type,
    const char *audit_msg, char * const command_info[], const char **errstr)
{
    return python_plugin_audit_reject(&PLUGIN_CTX, plugin_name, plugin_type,
        audit_msg, command_info, errstr);
}

static int
CALLBACK_CFUNC(error)(const char *plugin_name, unsigned int plugin_type,
    const char *audit_msg, char * const command_info[], const char **errstr)
{
    return python_plugin_audit_error(&PLUGIN_CTX, plugin_name, plugin_type,
        audit_msg, command_info, errstr);
}

static int
CALLBACK_CFUNC(show_version)(int verbose)
{
    return python_plugin_audit_show_version(&PLUGIN_CTX, verbose);
}

struct audit_plugin AUDIT_SYMBOL_NAME(python_audit) = {
    SUDO_AUDIT_PLUGIN,
    SUDO_API_VERSION,
    CALLBACK_CFUNC(open),
    CALLBACK_CFUNC(close),
    CALLBACK_CFUNC(accept),
    CALLBACK_CFUNC(reject),
    CALLBACK_CFUNC(error),
    CALLBACK_CFUNC(show_version),
    NULL, /* register_hooks */
    NULL  /* deregister_hooks */
};

#undef PLUGIN_CTX
#undef CALLBACK_CFUNC
#undef AUDIT_SYMBOL_NAME