Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sudo-project
GitHub Repository: sudo-project/sudo
Path: blob/main/plugins/python/python_plugin_audit_multi.inc
1532 views
/* 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