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
29acac81
Commit
29acac81
authored
Sep 05, 2006
by
serg@janus.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
plugin_foreach - don't hold the lock when calling the function
parent
c7baf602
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
18 deletions
+40
-18
sql/sql_plugin.cc
sql/sql_plugin.cc
+40
-18
No files found.
sql/sql_plugin.cc
View file @
29acac81
...
...
@@ -63,6 +63,8 @@ static HASH plugin_hash[MYSQL_MAX_PLUGIN_TYPE_NUM];
static
rw_lock_t
THR_LOCK_plugin
;
static
bool
initialized
=
0
;
static
int
plugin_array_version
=
0
;
/* prototypes */
my_bool
plugin_register_builtin
(
struct
st_mysql_plugin
*
plugin
);
void
plugin_load
(
void
);
...
...
@@ -448,6 +450,7 @@ static my_bool plugin_add(const LEX_STRING *name, const LEX_STRING *dl, int repo
tmp
.
state
=
PLUGIN_IS_UNINITIALIZED
;
if
(
!
(
tmp_plugin_ptr
=
plugin_insert_or_reuse
(
&
tmp
)))
goto
err
;
plugin_array_version
++
;
if
(
my_hash_insert
(
&
plugin_hash
[
plugin
->
type
],
(
byte
*
)
tmp_plugin_ptr
))
{
tmp_plugin_ptr
->
state
=
PLUGIN_IS_FREED
;
...
...
@@ -504,6 +507,7 @@ static void plugin_del(const LEX_STRING *name)
hash_delete
(
&
plugin_hash
[
plugin
->
plugin
->
type
],
(
byte
*
)
plugin
);
plugin_dl_del
(
&
plugin
->
plugin_dl
->
dl
);
plugin
->
state
=
PLUGIN_IS_FREED
;
plugin_array_version
++
;
}
DBUG_VOID_RETURN
;
}
...
...
@@ -639,7 +643,7 @@ static byte *get_hash_key(const byte *buff, uint *length,
*/
int
plugin_init
(
int
skip_dynamic_loading
)
{
int
i
;
u
int
i
;
struct
st_mysql_plugin
**
builtins
;
struct
st_mysql_plugin
*
plugin
;
DBUG_ENTER
(
"plugin_init"
);
...
...
@@ -939,43 +943,61 @@ err:
DBUG_RETURN
(
TRUE
);
}
my_bool
plugin_foreach
(
THD
*
thd
,
plugin_foreach_func
*
func
,
int
type
,
void
*
arg
)
{
uint
idx
;
struct
st_plugin_int
*
plugin
;
uint
idx
,
total
;
struct
st_plugin_int
*
plugin
,
**
plugins
;
int
version
=
plugin_array_version
;
DBUG_ENTER
(
"plugin_foreach"
);
rw_rdlock
(
&
THR_LOCK_plugin
);
rw_rdlock
(
&
THR_LOCK_plugin
);
if
(
type
==
MYSQL_ANY_PLUGIN
)
{
for
(
idx
=
0
;
idx
<
plugin_array
.
elements
;
idx
++
)
total
=
plugin_array
.
elements
;
plugins
=
(
struct
st_plugin_int
**
)
my_alloca
(
total
*
sizeof
(
*
plugins
));
for
(
idx
=
0
;
idx
<
total
;
idx
++
)
{
plugin
=
dynamic_element
(
&
plugin_array
,
idx
,
struct
st_plugin_int
*
);
/* FREED records may have garbage pointers */
if
((
plugin
->
state
!=
PLUGIN_IS_FREED
)
&&
func
(
thd
,
plugin
,
arg
))
goto
err
;
if
(
plugin
->
state
==
PLUGIN_IS_FREED
)
continue
;
plugins
[
idx
]
=
plugin
;
}
}
else
{
HASH
*
hash
=
&
plugin_hash
[
type
];
for
(
idx
=
0
;
idx
<
hash
->
records
;
idx
++
)
total
=
hash
->
records
;
plugins
=
(
struct
st_plugin_int
**
)
my_alloca
(
total
*
sizeof
(
*
plugins
));
for
(
idx
=
0
;
idx
<
total
;
idx
++
)
{
plugin
=
(
struct
st_plugin_int
*
)
hash_element
(
hash
,
idx
);
if
((
plugin
->
state
!=
PLUGIN_IS_FREED
)
&&
(
plugin
->
state
!=
PLUGIN_IS_DELETED
)
&&
func
(
thd
,
plugin
,
arg
))
goto
err
;
if
(
plugin
->
state
==
PLUGIN_IS_FREED
)
continue
;
plugins
[
idx
]
=
plugin
;
}
}
rw_unlock
(
&
THR_LOCK_plugin
);
for
(
idx
=
0
;
idx
<
total
;
idx
++
)
{
plugin
=
plugins
[
idx
];
if
(
unlikely
(
version
!=
plugin_array_version
))
{
rw_rdlock
(
&
THR_LOCK_plugin
);
for
(
uint
i
=
idx
;
i
<
total
;
i
++
)
if
(
plugins
[
i
]
->
state
==
PLUGIN_IS_FREED
)
plugins
[
i
]
=
0
;
rw_unlock
(
&
THR_LOCK_plugin
);
}
if
(
plugin
&&
func
(
thd
,
plugin
,
arg
))
goto
err
;
}
my_afree
(
plugins
);
DBUG_RETURN
(
FALSE
);
err:
rw_unlock
(
&
THR_LOCK_plugin
);
my_afree
(
plugins
);
DBUG_RETURN
(
TRUE
);
}
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