Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
53578613
Commit
53578613
authored
Nov 08, 2012
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-259 audit plugin does not see sub-statements
parent
d4731997
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
8 deletions
+28
-8
mysql-test/suite/plugins/r/audit_null.result
mysql-test/suite/plugins/r/audit_null.result
+11
-0
mysql-test/suite/plugins/t/audit_null.test
mysql-test/suite/plugins/t/audit_null.test
+7
-0
sql/sp_head.cc
sql/sp_head.cc
+1
-2
sql/sql_audit.h
sql/sql_audit.h
+9
-6
No files found.
mysql-test/suite/plugins/r/audit_null.result
View file @
53578613
...
...
@@ -12,7 +12,18 @@ Audit_null_called 9
Audit_null_general_error 1
Audit_null_general_log 3
Audit_null_general_result 2
create procedure au1(x char(16)) select concat("test1", x);
call au1("-12");
concat("test1", x)
test1-12
show status like 'audit_null%';
Variable_name Value
Audit_null_called 19
Audit_null_general_error 1
Audit_null_general_log 7
Audit_null_general_result 5
uninstall plugin audit_null;
Warnings:
Warning 1620 Plugin is busy and will be uninstalled on shutdown
drop procedure au1;
set global general_log=@old_global_general_log;
mysql-test/suite/plugins/t/audit_null.test
View file @
53578613
...
...
@@ -12,10 +12,17 @@ install plugin audit_null soname 'adt_null';
select
1
;
--
error
1054
select
foobar
;
show
status
like
'audit_null%'
;
create
procedure
au1
(
x
char
(
16
))
select
concat
(
"test1"
,
x
);
call
au1
(
"-12"
);
show
status
like
'audit_null%'
;
uninstall
plugin
audit_null
;
--
enable_ps_protocol
drop
procedure
au1
;
set
global
general_log
=@
old_global_general_log
;
sql/sp_head.cc
View file @
53578613
...
...
@@ -3113,8 +3113,7 @@ sp_instr_stmt::execute(THD *thd, uint *nextp)
(the order of query cache and subst_spvars calls is irrelevant because
queries with SP vars can't be cached)
*/
if
(
unlikely
((
thd
->
variables
.
option_bits
&
OPTION_LOG_OFF
)
==
0
))
general_log_write
(
thd
,
COM_QUERY
,
thd
->
query
(),
thd
->
query_length
());
general_log_write
(
thd
,
COM_QUERY
,
thd
->
query
(),
thd
->
query_length
());
if
(
query_cache_send_result_to_client
(
thd
,
thd
->
query
(),
thd
->
query_length
())
<=
0
)
...
...
sql/sql_audit.h
View file @
53578613
...
...
@@ -37,8 +37,16 @@ extern void mysql_audit_acquire_plugins(THD *thd, uint event_class);
#ifndef EMBEDDED_LIBRARY
extern
void
mysql_audit_notify
(
THD
*
thd
,
uint
event_class
,
uint
event_subtype
,
...);
static
inline
bool
mysql_audit_general_enabled
()
{
return
mysql_global_audit_mask
[
0
]
&
MYSQL_AUDIT_GENERAL_CLASSMASK
;
}
#else
#define mysql_audit_notify(...)
static
inline
void
mysql_audit_notify
(
THD
*
thd
,
uint
event_class
,
uint
event_subtype
,
...)
{
}
#define mysql_audit_general_enabled() 0
#endif
extern
void
mysql_audit_release
(
THD
*
thd
);
...
...
@@ -53,11 +61,6 @@ static inline uint make_user_name(THD *thd, char *buf)
sctx
->
ip
?
sctx
->
ip
:
""
,
"]"
,
NullS
)
-
buf
;
}
static
inline
bool
mysql_audit_general_enabled
()
{
return
mysql_global_audit_mask
[
0
]
&
MYSQL_AUDIT_GENERAL_CLASSMASK
;
}
/**
Call audit plugins of GENERAL audit class, MYSQL_AUDIT_GENERAL_LOG subtype.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment