mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
79 lines
2.6 KiB
C
79 lines
2.6 KiB
C
|
#ifndef SQL_AUDIT_INCLUDED
|
||
|
#define SQL_AUDIT_INCLUDED
|
||
|
|
||
|
/* Copyright (C) 2007 MySQL AB
|
||
|
|
||
|
This program 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; version 2 of the License.
|
||
|
|
||
|
This program 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 this program; if not, write to the Free Software
|
||
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
||
|
|
||
|
|
||
|
#include <mysql/plugin_audit.h>
|
||
|
|
||
|
extern unsigned long mysql_global_audit_mask[];
|
||
|
|
||
|
|
||
|
extern void mysql_audit_initialize();
|
||
|
extern void mysql_audit_finalize();
|
||
|
|
||
|
|
||
|
extern void mysql_audit_init_thd(THD *thd);
|
||
|
extern void mysql_audit_free_thd(THD *thd);
|
||
|
|
||
|
|
||
|
extern void mysql_audit_notify(THD *thd, uint event_class,
|
||
|
uint event_subtype, ...);
|
||
|
extern void mysql_audit_release(THD *thd);
|
||
|
|
||
|
|
||
|
|
||
|
/**
|
||
|
Call audit plugins of GENERAL audit class.
|
||
|
event_subtype should be set to one of:
|
||
|
MYSQL_AUDIT_GENERAL_LOG
|
||
|
MYSQL_AUDIT_GENERAL_ERROR
|
||
|
MYSQL_AUDIT_GENERAL_RESULT
|
||
|
|
||
|
@param[in] thd
|
||
|
@param[in] event_subtype Type of general audit event.
|
||
|
@param[in] error_code Error code
|
||
|
@param[in] time time that event occurred
|
||
|
@param[in] user User name
|
||
|
@param[in] userlen User name length
|
||
|
@param[in] cmd Command name
|
||
|
@param[in] cmdlen Command name length
|
||
|
@param[in] query Query string
|
||
|
@param[in] querylen Query string length
|
||
|
@param[in] clientcs Charset of query string
|
||
|
@param[in] rows Number of affected rows
|
||
|
*/
|
||
|
|
||
|
static inline
|
||
|
void mysql_audit_general(THD *thd, uint event_subtype,
|
||
|
int error_code, time_t time,
|
||
|
const char *user, uint userlen,
|
||
|
const char *cmd, uint cmdlen,
|
||
|
const char *query, uint querylen,
|
||
|
CHARSET_INFO *clientcs,
|
||
|
ha_rows rows)
|
||
|
{
|
||
|
#ifndef EMBEDDED_LIBRARY
|
||
|
if (mysql_global_audit_mask[0] & MYSQL_AUDIT_GENERAL_CLASSMASK)
|
||
|
mysql_audit_notify(thd, MYSQL_AUDIT_GENERAL_CLASS, event_subtype,
|
||
|
error_code, time, user, userlen, cmd, cmdlen,
|
||
|
query, querylen, clientcs, rows);
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif /* SQL_AUDIT_INCLUDED */
|