117
skeleton of a plugin variable - portion of structure common to all.
119
struct st_mysql_sys_var
121
DRIZZLE_PLUGIN_VAR_HEADER;
123
126
sys_var class for access to all plugin variables visible to the user
125
128
class sys_var_pluginvar: public sys_var
128
131
plugin::Module *plugin;
129
drizzle_sys_var *plugin_var;
132
struct st_mysql_sys_var *plugin_var;
131
134
sys_var_pluginvar(const std::string name_arg,
132
drizzle_sys_var *plugin_var_arg)
135
struct st_mysql_sys_var *plugin_var_arg)
133
136
:sys_var(name_arg), plugin_var(plugin_var_arg) {}
134
137
sys_var_pluginvar *cast_pluginvar() { return this; }
135
138
bool is_readonly() const { return plugin_var->flags & PLUGIN_VAR_READONLY; }
136
bool check_type(sql_var_t type)
139
bool check_type(enum_var_type type)
137
140
{ return !(plugin_var->flags & PLUGIN_VAR_SessionLOCAL) && type != OPT_GLOBAL; }
138
141
bool check_update_type(Item_result type);
139
142
SHOW_TYPE show_type();
140
unsigned char* real_value_ptr(Session *session, sql_var_t type);
143
unsigned char* real_value_ptr(Session *session, enum_var_type type);
141
144
TYPELIB* plugin_var_typelib(void);
142
unsigned char* value_ptr(Session *session, sql_var_t type,
145
unsigned char* value_ptr(Session *session, enum_var_type type,
143
146
const LEX_STRING *base);
144
147
bool check(Session *session, set_var *var);
145
bool check_default(sql_var_t)
148
bool check_default(enum_var_type)
146
149
{ return is_readonly(); }
147
void set_default(Session *session, sql_var_t);
150
void set_default(Session *session, enum_var_type);
148
151
bool update(Session *session, set_var *var);
153
static void plugin_prune_list(vector<string> &plugin_list,
154
const vector<string> &plugins_to_remove);
155
156
static bool plugin_load_list(plugin::Registry ®istry,
156
memory::Root *tmp_root, int *argc, char **argv,
157
const set<string> &plugin_list);
158
static int test_plugin_options(memory::Root *, plugin::Module *,
157
MEM_ROOT *tmp_root, int *argc, char **argv,
159
static int test_plugin_options(MEM_ROOT *, plugin::Module *,
161
static bool register_builtin(plugin::Registry ®istry,
160
164
static void unlock_variables(Session *session, struct system_variables *vars);
161
165
static void cleanup_variables(Session *session, struct system_variables *vars);
162
166
static void plugin_vars_free_values(sys_var *vars);
167
static void plugin_opt_set_limits(struct my_option *options,
168
const struct st_mysql_sys_var *opt);
169
static void reap_plugins(plugin::Registry &plugins);
164
172
/* declared in set_var.cc */
165
173
extern sys_var *intern_find_sys_var(const char *str, uint32_t length, bool no_error);
231
239
Plugin support code
232
240
****************************************************************************/
242
static plugin::Library *plugin_dl_find(const LEX_STRING *dl)
245
plugin::Library *tmp;
247
for (i= 0; i < plugin_dl_array.elements; i++)
249
tmp= *dynamic_element(&plugin_dl_array, i, plugin::Library **);
250
if (! my_strnncoll(files_charset_info,
251
(const unsigned char *)dl->str, dl->length,
252
(const unsigned char *)tmp->dl.str, tmp->dl.length))
258
static plugin::Library *plugin_dl_insert_or_reuse(plugin::Library *plugin_dl)
261
plugin::Library *tmp;
263
for (i= 0; i < plugin_dl_array.elements; i++)
265
tmp= *dynamic_element(&plugin_dl_array, i, plugin::Library **);
267
memcpy(tmp, plugin_dl, sizeof(plugin::Library));
271
if (insert_dynamic(&plugin_dl_array, (unsigned char*)&plugin_dl))
273
tmp= *dynamic_element(&plugin_dl_array, plugin_dl_array.elements - 1,
275
(plugin::Library *) memdup_root(&plugin_mem_root,
276
(unsigned char*)plugin_dl,
277
sizeof(plugin::Library));
281
static inline void free_plugin_mem(plugin::Library *p)
289
static plugin::Library *plugin_dl_add(const LEX_STRING *dl)
292
uint32_t plugin_dir_len;
293
plugin::Library *tmp, plugin_dl;
295
plugin_dir_len= strlen(opt_plugin_dir);
296
dlpath.reserve(FN_REFLEN);
298
Ensure that the dll doesn't have a path.
299
This is done to ensure that only approved libraries from the
300
plugin directory are used (to make this even remotely secure).
302
if (strchr(dl->str, FN_LIBCHAR) ||
303
check_string_char_length((LEX_STRING *) dl, "", NAME_CHAR_LEN,
304
system_charset_info, 1) ||
305
plugin_dir_len + dl->length + 1 >= FN_REFLEN)
307
errmsg_printf(ERRMSG_LVL_ERROR, "%s",ER(ER_UDF_NO_PATHS));
310
/* If this dll is already loaded just increase ref_count. */
311
if ((tmp= plugin_dl_find(dl)))
315
memset(&plugin_dl, 0, sizeof(plugin_dl));
316
/* Compile dll path */
317
dlpath.append(opt_plugin_dir);
319
dlpath.append("lib");
320
dlpath.append(dl->str);
321
dlpath.append("_plugin.so");
322
/* Open new dll handle */
323
if (!(plugin_dl.handle= dlopen(dlpath.c_str(), RTLD_NOW|RTLD_GLOBAL)))
325
const char *errmsg= dlerror();
326
uint32_t dlpathlen= dlpath.length();
327
if (!dlpath.compare(0, dlpathlen, errmsg))
328
{ // if errmsg starts from dlpath, trim this prefix.
330
if (*errmsg == ':') errmsg++;
331
if (*errmsg == ' ') errmsg++;
333
errmsg_printf(ERRMSG_LVL_ERROR, ER(ER_CANT_OPEN_LIBRARY), dlpath.c_str(), errno, errmsg);
335
// This is, in theory, should cause dlerror() to deallocate the error
336
// message. Found this via Google'ing :)
342
/* Find plugin declarations */
343
if (!(sym= dlsym(plugin_dl.handle, plugin_declarations_sym)))
345
free_plugin_mem(&plugin_dl);
346
errmsg_printf(ERRMSG_LVL_ERROR, ER(ER_CANT_FIND_DL_ENTRY), plugin_declarations_sym);
350
plugin_dl.plugins= static_cast<plugin::Manifest *>(sym);
352
/* Duplicate and convert dll name */
353
plugin_dl.dl.length= dl->length * files_charset_info->mbmaxlen + 1;
354
if (! (plugin_dl.dl.str= (char*) calloc(plugin_dl.dl.length, sizeof(char))))
356
free_plugin_mem(&plugin_dl);
357
errmsg_printf(ERRMSG_LVL_ERROR, ER(ER_OUTOFMEMORY), plugin_dl.dl.length);
360
strcpy(plugin_dl.dl.str, dl->str);
361
/* Add this dll to array */
362
if (! (tmp= plugin_dl_insert_or_reuse(&plugin_dl)))
364
free_plugin_mem(&plugin_dl);
365
errmsg_printf(ERRMSG_LVL_ERROR, ER(ER_OUTOFMEMORY),
366
sizeof(plugin::Library));
373
static void plugin_dl_del(const LEX_STRING *dl)
377
for (i= 0; i < plugin_dl_array.elements; i++)
379
plugin::Library *tmp= *dynamic_element(&plugin_dl_array, i,
381
if (! my_strnncoll(files_charset_info,
382
(const unsigned char *)dl->str, dl->length,
383
(const unsigned char *)tmp->dl.str, tmp->dl.length))
385
/* Do not remove this element, unless no other plugin uses this dll. */
387
free_plugin_mem(tmp);
388
memset(tmp, 0, sizeof(plugin::Library));
398
static plugin::Module *plugin_insert_or_reuse(plugin::Module *module)
400
if (insert_dynamic(&module_array, (unsigned char*)&module))
402
module= *dynamic_element(&module_array, module_array.elements - 1,
239
410
Requires that a write-lock is held on LOCK_system_variables_hash
241
static bool plugin_add(plugin::Registry ®istry, memory::Root *tmp_root,
242
plugin::Library *library,
412
static bool plugin_add(plugin::Registry ®istry, MEM_ROOT *tmp_root,
413
const LEX_STRING *name, const LEX_STRING *dl,
243
414
int *argc, char **argv)
416
plugin::Manifest *manifest;
245
417
if (! initialized)
248
if (registry.find(library->getName()))
420
if (registry.find(name))
250
errmsg_printf(ERRMSG_LVL_WARN, ER(ER_PLUGIN_EXISTS),
251
library->getName().c_str());
422
errmsg_printf(ERRMSG_LVL_ERROR, ER(ER_UDF_EXISTS), name->str);
425
plugin::Library *library= plugin_dl_add(dl);
255
429
plugin::Module *tmp= NULL;
256
430
/* Find plugin by name */
257
const plugin::Manifest *manifest= library->getManifest();
259
if (registry.find(manifest->name))
261
errmsg_printf(ERRMSG_LVL_ERROR,
262
_("Plugin '%s' contains the name '%s' in its manifest, which "
263
"has already been registered.\n"),
264
library->getName().c_str(),
269
tmp= new (std::nothrow) plugin::Module(manifest, library);
273
if (!test_plugin_options(tmp_root, tmp, argc, argv))
278
errmsg_printf(ERRMSG_LVL_ERROR, ER(ER_CANT_FIND_DL_ENTRY),
279
library->getName().c_str());
431
for (manifest= library->plugins; manifest->name; manifest++)
433
if (! my_strnncoll(system_charset_info,
434
(const unsigned char *)name->str, name->length,
435
(const unsigned char *)manifest->name,
436
strlen(manifest->name)))
438
tmp= new (std::nothrow) plugin::Module(manifest, library);
442
if (!test_plugin_options(tmp_root, tmp, argc, argv))
444
if ((tmp= plugin_insert_or_reuse(tmp)))
447
init_alloc_root(&tmp->mem_root, 4096, 4096);
450
mysql_del_sys_var_chain(tmp->system_vars);
453
/* plugin was disabled */
458
errmsg_printf(ERRMSG_LVL_ERROR, ER(ER_CANT_FIND_DL_ENTRY), name->str);
284
static void delete_module(plugin::Module *module)
465
static void delete_module(plugin::Registry ®istry, plugin::Module *module)
467
plugin::Manifest manifest= module->getManifest();
469
if (module->isInited)
471
if (manifest.status_vars)
473
remove_status_vars(manifest.status_vars);
477
manifest.deinit(registry);
286
480
/* Free allocated strings before deleting the plugin. */
287
481
plugin_vars_free_values(module->system_vars);
482
if (module->plugin_dl)
483
plugin_dl_del(&module->plugin_dl->dl);
288
484
module->isInited= false;
289
485
pthread_rwlock_wrlock(&LOCK_system_variables_hash);
290
486
mysql_del_sys_var_chain(module->system_vars);
399
605
for (builtins= drizzled_builtins; *builtins; builtins++)
402
if (manifest->name != NULL)
607
for (manifest= *builtins; manifest->name; manifest++)
404
609
module= new (std::nothrow) plugin::Module(manifest);
405
610
if (module == NULL)
408
free_root(&tmp_root, MYF(memory::MARK_BLOCKS_FREE));
613
free_root(&tmp_root, MYF(MY_MARK_BLOCKS_FREE));
409
614
if (test_plugin_options(&tmp_root, module, argc, argv))
412
registry.add(module);
617
if (register_builtin(registry, module, &module))
414
620
plugin_initialize_vars(module);
622
if (! (flags & PLUGIN_INIT_SKIP_INITIALIZATION))
418
624
if (plugin_initialize(registry, module))
420
free_root(&tmp_root, MYF(0));
428
bool load_failed= false;
429
vector<string> plugin_list;
432
tokenize(opt_plugin_load, plugin_list, ",", true);
436
tokenize(opt_plugin_load_default, plugin_list, ",", true);
440
tokenize(opt_plugin_add, plugin_list, ",", true);
443
if (opt_plugin_remove)
445
vector<string> plugins_to_remove;
446
tokenize(opt_plugin_remove, plugins_to_remove, ",", true);
447
plugin_prune_list(plugin_list, plugins_to_remove);
450
/* Uniquify the list */
451
const set<string> plugin_list_set(plugin_list.begin(), plugin_list.end());
453
631
/* Register all dynamic plugins */
454
load_failed= plugin_load_list(registry, &tmp_root, argc, argv,
632
if (! (flags & PLUGIN_INIT_SKIP_DYNAMIC_LOADING))
458
free_root(&tmp_root, MYF(0));
636
plugin_load_list(registry, &tmp_root, argc, argv, opt_plugin_load);
640
string tmp_plugin_list(opt_plugin_load_default);
643
tmp_plugin_list.push_back(',');
644
tmp_plugin_list.append(opt_plugin_add);
646
plugin_load_list(registry, &tmp_root, argc, argv, tmp_plugin_list.c_str());
464
free_root(&tmp_root, MYF(0));
650
if (flags & PLUGIN_INIT_SKIP_INITIALIZATION)
469
654
Now we initialize all remaining plugins
471
std::map<std::string, plugin::Module *>::const_iterator modules=
472
registry.getModulesMap().begin();
474
while (modules != registry.getModulesMap().end())
656
for (idx= 0; idx < module_array.elements; idx++)
476
module= (*modules).second;
658
module= *dynamic_element(&module_array, idx, plugin::Module **);
478
659
if (module->isInited == false)
480
661
plugin_initialize_vars(module);
482
663
if (plugin_initialize(registry, module))
483
delete_module(module);
664
delete_module(registry, module);
488
free_root(&tmp_root, MYF(0));
494
public unary_function<string, bool>
496
const string to_match;
498
PrunePlugin& operator=(const PrunePlugin&);
500
explicit PrunePlugin(const string &match_in) :
504
result_type operator()(const string &match_against)
506
return match_against == to_match;
510
static void plugin_prune_list(vector<string> &plugin_list,
511
const vector<string> &plugins_to_remove)
513
for (vector<string>::const_iterator iter= plugins_to_remove.begin();
514
iter != plugins_to_remove.end();
517
plugin_list.erase(remove_if(plugin_list.begin(),
670
free_root(&tmp_root, MYF(0));
676
free_root(&tmp_root, MYF(0));
681
static bool register_builtin(plugin::Registry ®istry,
683
plugin::Module **ptr)
686
tmp->isInited= false;
689
if (insert_dynamic(&module_array, (unsigned char*)&tmp))
692
*ptr= *dynamic_element(&module_array, module_array.elements - 1,
525
702
called only by plugin_init()
527
static bool plugin_load_list(plugin::Registry ®istry,
528
memory::Root *tmp_root, int *argc, char **argv,
529
const set<string> &plugin_list)
704
static bool plugin_load_list(plugin::Registry &plugins,
705
MEM_ROOT *tmp_root, int *argc, char **argv,
531
plugin::Library *library= NULL;
533
for (set<string>::const_iterator iter= plugin_list.begin();
534
iter != plugin_list.end();
708
char buffer[FN_REFLEN];
709
LEX_STRING name= {buffer, 0}, dl= {NULL, 0}, *str= &name;
710
plugin::Library *plugin_dl;
711
plugin::Manifest *plugin;
537
const string plugin_name(*iter);
538
library= registry.addLibrary(plugin_name);
715
if (p == buffer + sizeof(buffer) - 1)
541
errmsg_printf(ERRMSG_LVL_ERROR,
542
_("Couldn't load plugin library named '%s'.\n"),
543
plugin_name.c_str());
717
errmsg_printf(ERRMSG_LVL_ERROR, _("plugin-load parameter too long"));
547
free_root(tmp_root, MYF(memory::MARK_BLOCKS_FREE));
548
if (plugin_add(registry, tmp_root, library, argc, argv))
550
registry.removeLibrary(plugin_name);
551
errmsg_printf(ERRMSG_LVL_ERROR,
552
_("Couldn't load plugin named '%s'.\n"),
553
plugin_name.c_str());
721
switch ((*(p++)= *(list++))) {
723
list= NULL; /* terminate the loop */
725
case ':': /* can't use this as delimiter as it may be drive letter */
727
str->str[str->length]= '\0';
728
if (str == &name) // load all plugins in named module
732
p--; /* reset pointer */
737
if ((plugin_dl= plugin_dl_add(&dl)))
739
for (plugin= plugin_dl->plugins; plugin->name; plugin++)
741
name.str= (char *) plugin->name;
742
name.length= strlen(name.str);
744
free_root(tmp_root, MYF(MY_MARK_BLOCKS_FREE));
745
if (plugin_add(plugins, tmp_root, &name, &dl, argc, argv))
748
plugin_dl_del(&dl); // reduce ref count
753
free_root(tmp_root, MYF(MY_MARK_BLOCKS_FREE));
754
if (plugin_add(plugins, tmp_root, &name, &dl, argc, argv))
757
name.length= dl.length= 0;
758
dl.str= NULL; name.str= p= buffer;
765
name.str[name.length]= '\0';
777
errmsg_printf(ERRMSG_LVL_ERROR, _("Couldn't load plugin named '%s' with soname '%s'."),
562
783
void plugin_shutdown(plugin::Registry ®istry)
786
size_t count= module_array.elements;
787
vector<plugin::Library *> dl;
739
static void update_func_bool(Session *, drizzle_sys_var *,
976
static int check_func_enum(Session *, struct st_mysql_sys_var *var,
977
void *save, st_mysql_value *value)
979
char buff[STRING_BUFFER_USUAL_SIZE];
980
const char *strvalue= "NULL", *str;
986
if (var->flags & PLUGIN_VAR_SessionLOCAL)
987
typelib= ((sessionvar_enum_t*) var)->typelib;
989
typelib= ((sysvar_enum_t*) var)->typelib;
991
if (value->value_type(value) == DRIZZLE_VALUE_TYPE_STRING)
993
length= sizeof(buff);
994
if (!(str= value->val_str(value, buff, &length)))
996
if ((result= (long)find_type(typelib, str, length, 1)-1) < 0)
1004
if (value->val_int(value, &tmp))
1006
if (tmp >= typelib->count)
1014
*(long*)save= result;
1017
my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), var->name, strvalue);
1022
static int check_func_set(Session *, struct st_mysql_sys_var *var,
1023
void *save, st_mysql_value *value)
1025
char buff[STRING_BUFFER_USUAL_SIZE], *error= 0;
1026
const char *strvalue= "NULL", *str;
1033
if (var->flags & PLUGIN_VAR_SessionLOCAL)
1034
typelib= ((sessionvar_set_t*) var)->typelib;
1036
typelib= ((sysvar_set_t*)var)->typelib;
1038
if (value->value_type(value) == DRIZZLE_VALUE_TYPE_STRING)
1040
length= sizeof(buff);
1041
if (!(str= value->val_str(value, buff, &length)))
1043
result= find_set(typelib, str, length, NULL,
1044
&error, &error_len, ¬_used);
1047
length= min((uint32_t)sizeof(buff), error_len);
1048
strncpy(buff, error, length);
1056
if (value->val_int(value, (int64_t *)&result))
1058
if (unlikely((result >= (1UL << typelib->count)) &&
1059
(typelib->count < sizeof(long)*8)))
1061
llstr(result, buff);
1066
*(uint64_t*)save= result;
1069
my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), var->name, strvalue);
1074
static void update_func_bool(Session *, struct st_mysql_sys_var *,
740
1075
void *tgt, const void *save)
742
1077
*(bool *) tgt= *(int *) save ? 1 : 0;
746
static void update_func_int(Session *, drizzle_sys_var *,
1081
static void update_func_int(Session *, struct st_mysql_sys_var *,
747
1082
void *tgt, const void *save)
749
1084
*(int *)tgt= *(int *) save;
753
static void update_func_long(Session *, drizzle_sys_var *,
1088
static void update_func_long(Session *, struct st_mysql_sys_var *,
754
1089
void *tgt, const void *save)
756
1091
*(long *)tgt= *(long *) save;
760
static void update_func_int64_t(Session *, drizzle_sys_var *,
1095
static void update_func_int64_t(Session *, struct st_mysql_sys_var *,
761
1096
void *tgt, const void *save)
763
1098
*(int64_t *)tgt= *(uint64_t *) save;
767
static void update_func_str(Session *, drizzle_sys_var *var,
1102
static void update_func_str(Session *, struct st_mysql_sys_var *var,
768
1103
void *tgt, const void *save)
770
1105
char *old= *(char **) tgt;
822
static const string make_bookmark_name(const string &plugin, const char *name, int flags)
824
/* Embed the flags into the first char of the string */
825
string varname(1, static_cast<char>(flags & PLUGIN_VAR_TYPEMASK));
826
varname.append(plugin);
827
varname.push_back('_');
828
varname.append(name);
830
for (string::iterator p= varname.begin() + 1; p != varname.end(); ++p)
841
1159
called by register_var, construct_options and test_plugin_options.
842
1160
Returns the 'bookmark' for the named variable.
843
1161
LOCK_system_variables_hash should be at least read locked
845
static st_bookmark *find_bookmark(const string &plugin, const char *name, int flags)
1163
static st_bookmark *find_bookmark(const char *plugin, const char *name, int flags)
847
1165
st_bookmark *result= NULL;
1166
uint32_t namelen, length, pluginlen= 0;
849
1169
if (!(flags & PLUGIN_VAR_SessionLOCAL))
852
const string varname(make_bookmark_name(plugin, name, flags));
1172
namelen= strlen(name);
1174
pluginlen= strlen(plugin) + 1;
1175
length= namelen + pluginlen + 2;
1176
varname= (char*) malloc(length);
1180
sprintf(varname+1,"%s_%s",plugin,name);
1181
for (p= varname + 1; *p; p++)
1186
memcpy(varname + 1, name, namelen + 1);
1188
varname[0]= flags & PLUGIN_VAR_TYPEMASK;
855
1190
result= (st_bookmark*) hash_search(&bookmark_hash,
856
(const unsigned char*) varname.c_str(), varname.size() - 1);
1191
(const unsigned char*) varname, length - 1);
1443
1863
options->arg_type= OPT_ARG;
1446
static int get_one_plugin_option(int, const struct option *, char *)
1866
extern "C" bool get_one_plugin_option(int optid, const struct my_option *,
1869
bool get_one_plugin_option(int, const struct my_option *, char *)
1452
static int construct_options(memory::Root *mem_root, plugin::Module *tmp,
1875
static int construct_options(MEM_ROOT *mem_root, plugin::Module *tmp,
1876
my_option *options, bool can_disable)
1456
int localoptionid= 256;
1457
const string plugin_name(tmp->getManifest().name);
1459
size_t namelen= plugin_name.size(), optnamelen;
1878
const char *plugin_name= tmp->getManifest().name;
1879
uint32_t namelen= strlen(plugin_name), optnamelen;
1880
uint32_t buffer_length= namelen * 4 + (can_disable ? 75 : 10);
1881
char *name= (char*) alloc_root(mem_root, buffer_length);
1882
bool *enabled_value= (bool*) alloc_root(mem_root, sizeof(bool));
1461
1883
char *optname, *p;
1462
1884
int index= 0, offset= 0;
1463
drizzle_sys_var *opt, **plugin_option;
1885
st_mysql_sys_var *opt, **plugin_option;
1464
1886
st_bookmark *v;
1466
string name(plugin_name);
1467
transform(name.begin(), name.end(), name.begin(), ::tolower);
1469
for (string::iterator iter= name.begin(); iter != name.end(); ++iter)
1888
/* support --skip-plugin-foo syntax */
1889
memcpy(name, plugin_name, namelen + 1);
1890
my_casedn_str(&my_charset_utf8_general_ci, name);
1891
sprintf(name+namelen+1, "plugin-%s", name);
1892
/* Now we have namelen + 1 + 7 + namelen + 1 == namelen * 2 + 9. */
1894
for (p= name + namelen*2 + 8; p > name; p--)
1900
sprintf(name+namelen*2+10,
1901
"Enable %s plugin. Disable with --skip-%s (will save memory).",
1904
Now we have namelen * 2 + 10 (one char unused) + 7 + namelen + 9 +
1905
20 + namelen + 20 + 1 == namelen * 4 + 67.
1908
options[0].comment= name + namelen*2 + 10;
1912
This whole code around variables and command line parameters is turd
1915
e.g. the below assignemnt of having the plugin alaways enabled is never
1916
changed so that './drizzled --skip-innodb --help' shows innodb as enabled.
1918
But this is just as broken as it was in MySQL and properly fixing everything
1919
is a decent amount of "future work"
1921
*enabled_value= true; /* by default, plugin enabled */
1923
options[1].name= (options[0].name= name) + namelen + 1;
1924
options[0].id= options[1].id= 256; /* must be >255. dup id ok */
1925
options[0].var_type= options[1].var_type= GET_BOOL;
1926
options[0].arg_type= options[1].arg_type= NO_ARG;
1927
options[0].def_value= options[1].def_value= true;
1928
options[0].value= options[0].u_max_value=
1929
options[1].value= options[1].u_max_value= (char**) enabled_value;
1476
1933
Two passes as the 2nd pass will take pointer addresses for use
1477
1934
by my_getopt and register_var() in the first pass uses realloc
1670
2159
Requires that a write-lock is held on LOCK_system_variables_hash
1672
static int test_plugin_options(memory::Root *tmp_root, plugin::Module *tmp,
2161
static int test_plugin_options(MEM_ROOT *tmp_root, plugin::Module *tmp,
1673
2162
int *argc, char **argv)
1675
2164
struct sys_var_chain chain= { NULL, NULL };
1676
drizzle_sys_var **opt;
2166
st_mysql_sys_var **opt;
2167
my_option *opts= NULL;
2169
st_mysql_sys_var *o;
1680
2170
struct st_bookmark *var;
1681
2171
uint32_t len, count= EXTRA_OPTIONS;
1683
2173
for (opt= tmp->getManifest().system_vars; opt && *opt; opt++)
2174
count+= 2; /* --{plugin}-{optname} and --plugin-{plugin}-{optname} */
2176
if ((my_strcasecmp(&my_charset_utf8_general_ci, tmp->getName().c_str(), "MyISAM") == 0))
2178
else if ((my_strcasecmp(&my_charset_utf8_general_ci, tmp->getName().c_str(), "MEMORY") == 0))
1687
2183
if (count > EXTRA_OPTIONS || (*argc > 1))
1689
if (!(opts= (option*) alloc_root(tmp_root, sizeof(option) * count)))
2185
if (!(opts= (my_option*) alloc_root(tmp_root, sizeof(my_option) * count)))
1691
2187
errmsg_printf(ERRMSG_LVL_ERROR, _("Out of memory for plugin '%s'."), tmp->getName().c_str());
1694
memset(opts, 0, sizeof(option) * count);
2190
memset(opts, 0, sizeof(my_option) * count);
1696
if (construct_options(tmp_root, tmp, opts))
2192
if (construct_options(tmp_root, tmp, opts, can_disable))
1698
2194
errmsg_printf(ERRMSG_LVL_ERROR, _("Bad options for plugin '%s'."), tmp->getName().c_str());