sql_udf.cc
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:12k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /* This implements 'user defined functions' */
  17. /*
  18. ** Known bugs:
  19. **
  20. ** Memory for functions are never freed!
  21. ** Shared libraries are not closed before mysqld exists;
  22. **   - This is because we can't be sure if some threads is using
  23. **     a functions.
  24. **
  25. ** The buggs only affects applications that creates and frees a lot of
  26. ** dynamic functions, so this shouldn't be a real problem.
  27. */
  28. #ifdef __GNUC__
  29. #pragma implementation // gcc: implement sql_udf.h
  30. #endif
  31. #include "mysql_priv.h"
  32. #ifdef HAVE_DLOPEN
  33. extern "C"
  34. {
  35. #include <dlfcn.h>
  36. #include <stdarg.h>
  37. #include <hash.h>
  38. }
  39. #ifndef RTLD_NOW
  40. #define RTLD_NOW 1 // For FreeBSD 2.2.2
  41. #endif
  42. #ifndef HAVE_DLERROR
  43. #define dlerror() ""
  44. #endif
  45. static bool initialized = 0;
  46. static MEM_ROOT mem;
  47. static HASH udf_hash;
  48. static pthread_mutex_t THR_LOCK_udf;
  49. static udf_func *add_udf(char *name, Item_result ret, char *dl,
  50.  Item_udftype typ);
  51. static void del_udf(udf_func *udf);
  52. static void *find_udf_dl(const char *dl);
  53. static void init_syms(udf_func *tmp)
  54. {
  55.   char nm[MAX_FIELD_NAME+16],*end;
  56.   tmp->func = dlsym(tmp->dlhandle, tmp->name);
  57.   end=strmov(nm,tmp->name);
  58.   (void) strmov(end,"_init");
  59.   tmp->func_init = dlsym(tmp->dlhandle, nm);
  60.   (void) strmov(end,"_deinit");
  61.   tmp->func_deinit = dlsym(tmp->dlhandle, nm);
  62.   if (tmp->type == UDFTYPE_AGGREGATE)
  63.   {
  64.     (void)strmov( end, "_reset" );
  65.     tmp->func_reset = dlsym( tmp->dlhandle, nm );
  66.     (void)strmov( end, "_add" );
  67.     tmp->func_add = dlsym( tmp->dlhandle, nm );
  68.   }
  69. }
  70. static byte* get_hash_key(const byte *buff,uint *length,
  71.   my_bool not_used __attribute__((unused)))
  72. {
  73.   udf_func *udf=(udf_func*) buff;
  74.   *length=(uint) udf->name_length;
  75.   return (byte*) udf->name;
  76. }
  77. /*
  78. ** Read all predeclared functions from func@mysql and accept all that
  79. ** can be used.
  80. */
  81. void udf_init()
  82. {
  83.   udf_func *tmp;
  84.   TABLE_LIST tables;
  85.   READ_RECORD read_record_info;
  86.   int error;
  87.   DBUG_ENTER("ufd_init");
  88.   if (initialized)
  89.     DBUG_VOID_RETURN;
  90.   pthread_mutex_init(&THR_LOCK_udf,NULL);
  91.   init_sql_alloc(&mem, 1024,0);
  92.   THD *new_thd = new THD;
  93.   if (!new_thd ||
  94.       hash_init(&udf_hash,32,0,0,get_hash_key, NULL, HASH_CASE_INSENSITIVE))
  95.   {
  96.     sql_print_error("Can't allocate memory for udf structures");
  97.     hash_free(&udf_hash);
  98.     free_root(&mem,MYF(0));
  99.     DBUG_VOID_RETURN;
  100.   }
  101.   initialized = 1;
  102.   new_thd->mysys_var=my_thread_var;
  103.   new_thd->version = refresh_version; //current_thd->version;
  104.   new_thd->current_tablenr = 0;
  105.   new_thd->open_tables = 0;
  106.   new_thd->db = my_strdup("mysql", MYF(0));
  107.   bzero((gptr) &tables,sizeof(tables));
  108.   tables.name = tables.real_name = (char*) "func";
  109.   tables.lock_type = TL_READ;
  110.   tables.db=new_thd->db;
  111.   if (open_tables(new_thd, &tables))
  112.   {
  113.     DBUG_PRINT("error",("Can't open udf table"));
  114.     sql_print_error("Can't open mysql/func table");
  115.     close_thread_tables(new_thd);
  116.     delete new_thd;
  117.     DBUG_VOID_RETURN;
  118.   }
  119.   TABLE *table = tables.table;
  120.   init_read_record(&read_record_info, new_thd, table, NULL,1,0);
  121.   while (!(error = read_record_info.read_record(&read_record_info)))
  122.   {
  123.     DBUG_PRINT("info",("init udf record"));
  124.     char *name=get_field(&mem, table, 0);
  125.     char *dl_name= get_field(&mem, table, 2);
  126.     bool new_dl=0;
  127.     Item_udftype udftype=UDFTYPE_FUNCTION;
  128.     if (table->fields >= 4) // New func table
  129.       udftype=(Item_udftype) table->field[3]->val_int();
  130.     if (!(tmp = add_udf(name,(Item_result) table->field[1]->val_int(),
  131. dl_name, udftype)))
  132.     {
  133.       sql_print_error("Can't alloc memory for udf function: name");
  134.       continue;
  135.     }
  136.     void *dl = find_udf_dl(tmp->dl);
  137.     if (dl == NULL)
  138.     {
  139.       if (!(dl = dlopen(tmp->dl, RTLD_NOW)))
  140.       {
  141. sql_print_error(ER(ER_CANT_OPEN_LIBRARY),
  142. tmp->dl,errno,dlerror());
  143. del_udf(tmp);
  144. continue;
  145.       }
  146.       new_dl=1;
  147.     }
  148.     tmp->dlhandle = dl;
  149.     init_syms(tmp);
  150.     if (!tmp->func)
  151.     {
  152.       sql_print_error(ER(ER_CANT_FIND_DL_ENTRY), name);
  153.       del_udf(tmp);
  154.       if (new_dl)
  155. dlclose(dl);
  156.     }
  157.   }
  158.   if (error > 0)
  159.     sql_print_error(ER(ER_GET_ERRNO), my_errno);
  160.   end_read_record(&read_record_info);
  161.   new_thd->version--; // Force close to free memory
  162.   close_thread_tables(new_thd);
  163.   delete new_thd;
  164.   DBUG_VOID_RETURN;
  165. }
  166. void udf_free()
  167. {
  168.   /* close all shared libraries */
  169.   DBUG_ENTER("udf_free");
  170.   for (uint idx=0 ; idx < udf_hash.records ; idx++)
  171.   {
  172.     udf_func *udf=(udf_func*) hash_element(&udf_hash,idx);
  173.     if (udf->dl)
  174.     {
  175.       for (uint j=idx+1 ;  j < udf_hash.records ; j++)
  176.       {
  177. udf_func *tmp=(udf_func*) hash_element(&udf_hash,j);
  178. if (tmp->dl && !strcmp(udf->dl,tmp->dl))
  179.   tmp->dl=0;
  180.       }
  181.     }
  182.     dlclose(udf->dlhandle);
  183.   }
  184.   hash_free(&udf_hash);
  185.   free_root(&mem,MYF(0));
  186.   DBUG_VOID_RETURN;
  187. }
  188. static void del_udf(udf_func *udf)
  189. {
  190.   DBUG_ENTER("del_udf");
  191.   if (!--udf->usage_count)
  192.   {
  193.     hash_delete(&udf_hash,(byte*) udf);
  194.     using_udf_functions=udf_hash.records != 0;
  195.   }
  196.   else
  197.   {
  198.     /*
  199.     ** The functions is in use ; Rename the functions instead of removing it.
  200.     ** The functions will be automaticly removed when the least threads
  201.     ** doesn't use it anymore
  202.     */
  203.     char *name= udf->name;
  204.     uint name_length=udf->name_length;
  205.     udf->name=(char*) "*";
  206.     udf->name_length=1;
  207.     hash_update(&udf_hash,(byte*) udf,name,name_length);
  208.   }
  209.   DBUG_VOID_RETURN;
  210. }
  211. void free_udf(udf_func *udf)
  212. {
  213.   DBUG_ENTER("free_udf");
  214.   pthread_mutex_lock(&THR_LOCK_udf);
  215.   if (!--udf->usage_count)
  216.   {
  217.     hash_delete(&udf_hash,(byte*) udf);
  218.     using_udf_functions=udf_hash.records != 0;
  219.     if (!find_udf_dl(udf->dl))
  220.       dlclose(udf->dlhandle);
  221.   }
  222.   pthread_mutex_unlock(&THR_LOCK_udf);
  223.   DBUG_VOID_RETURN;
  224. }
  225. /* This is only called if using_udf_functions != 0 */
  226. udf_func *find_udf(const char *name,uint length,bool mark_used)
  227. {
  228.   udf_func *udf=0;
  229.   DBUG_ENTER("find_udf");
  230.   /* TODO: This should be changed to reader locks someday! */
  231.   pthread_mutex_lock(&THR_LOCK_udf);
  232.   udf=(udf_func*) hash_search(&udf_hash,name,
  233.       length ? length : (uint) strlen(name));
  234.   if (mark_used)
  235.     udf->usage_count++;
  236.   pthread_mutex_unlock(&THR_LOCK_udf);
  237.   DBUG_RETURN(udf);
  238. }
  239. static void *find_udf_dl(const char *dl)
  240. {
  241.   DBUG_ENTER("find_udf_dl");
  242.   /* because only the function name is hashed, we have to search trough
  243.   ** all rows to find the dl.
  244.   */
  245.   for (uint idx=0 ; idx < udf_hash.records ; idx++)
  246.   {
  247.     udf_func *udf=(udf_func*) hash_element(&udf_hash,idx);
  248.     if (!strcmp(dl, udf->dl) && udf->dlhandle != NULL)
  249.       DBUG_RETURN(udf->dlhandle);
  250.   }
  251.   DBUG_RETURN(0);
  252. }
  253. /* Assume that name && dl is already allocated */
  254. static udf_func *add_udf(char *name, Item_result ret, char *dl,
  255.  Item_udftype type)
  256. {
  257.   if (!name || !dl)
  258.     return 0;
  259.   udf_func *tmp= (udf_func*) alloc_root(&mem, sizeof(udf_func));
  260.   if (!tmp)
  261.     return 0;
  262.   bzero((char*) tmp,sizeof(*tmp));
  263.   tmp->name = name;
  264.   tmp->name_length=(uint) strlen(tmp->name);
  265.   tmp->dl = dl;
  266.   tmp->returns = ret;
  267.   tmp->type = type;
  268.   tmp->usage_count=1;
  269.   if (hash_insert(&udf_hash,(char*) tmp))
  270.     return 0;
  271.   using_udf_functions=1;
  272.   return tmp;
  273. }
  274. int mysql_create_function(THD *thd,udf_func *udf)
  275. {
  276.   int error;
  277.   void *dl=0;
  278.   bool new_dl=0;
  279.   TABLE *table;
  280.   TABLE_LIST tables;
  281.   udf_func *u_d;
  282.   DBUG_ENTER("mysql_create_function");
  283.   if (!initialized)
  284.   {
  285.     send_error(&thd->net, ER_OUT_OF_RESOURCES, ER(ER_OUT_OF_RESOURCES));
  286.     DBUG_RETURN(1);
  287.   }
  288.   /*
  289.     Ensure that the .dll doesn't have a path
  290.     This is done to ensure that only approved dll from the system
  291.     directories are used (to make this even remotely secure).
  292.   */
  293.   if (strchr(udf->dl, '/'))
  294.   {
  295.     send_error(&thd->net, ER_UDF_NO_PATHS,ER(ER_UDF_NO_PATHS));
  296.     DBUG_RETURN(1);
  297.   }
  298.   if (udf->name_length > NAME_LEN)
  299.   {
  300.     net_printf(&thd->net, ER_TOO_LONG_IDENT,udf->name);
  301.     DBUG_RETURN(1);
  302.   }
  303.   pthread_mutex_lock(&THR_LOCK_udf);
  304.   if (hash_search(&udf_hash,udf->name, udf->name_length))
  305.   {
  306.     net_printf(&thd->net, ER_UDF_EXISTS, udf->name);
  307.     goto err;
  308.   }
  309.   if (!(dl = find_udf_dl(udf->dl)))
  310.   {
  311.     if (!(dl = dlopen(udf->dl, RTLD_NOW)))
  312.     {
  313.       DBUG_PRINT("error",("dlopen of %s failed, error: %d (%s)",
  314.   udf->dl,errno,dlerror()));
  315.       net_printf(&thd->net, ER_CANT_OPEN_LIBRARY, udf->dl, errno, dlerror());
  316.       goto err;
  317.     }
  318.     new_dl=1;
  319.   }
  320.   udf->dlhandle=dl;
  321.   init_syms(udf);
  322.   if (udf->func == NULL)
  323.   {
  324.     net_printf(&thd->net, ER_CANT_FIND_DL_ENTRY, udf->name);
  325.     goto err;
  326.   }
  327.   udf->name=strdup_root(&mem,udf->name);
  328.   udf->dl=strdup_root(&mem,udf->dl);
  329.   if (!udf->name || !udf->dl ||
  330.       !(u_d=add_udf(udf->name,udf->returns,udf->dl,udf->type)))
  331.   {
  332.     send_error(&thd->net,0); // End of memory
  333.     goto err;
  334.   }
  335.   u_d->dlhandle = dl;
  336.   u_d->func=udf->func;
  337.   u_d->func_init=udf->func_init;
  338.   u_d->func_deinit=udf->func_deinit;
  339.   u_d->func_reset=udf->func_reset;
  340.   u_d->func_add=udf->func_add;
  341.   /* create entry in mysql/func table */
  342.   bzero((char*) &tables,sizeof(tables));
  343.   tables.db= (char*) "mysql";
  344.   tables.real_name=tables.name= (char*) "func";
  345.   /* Allow creation of functions even if we can't open func table */
  346.   if (!(table = open_ltable(thd,&tables,TL_WRITE)))
  347.     goto err;
  348.   restore_record(table,2); // Get default values for fields
  349.   table->field[0]->store(u_d->name, u_d->name_length);
  350.   table->field[1]->store((longlong) u_d->returns);
  351.   table->field[2]->store(u_d->dl,(uint) strlen(u_d->dl));
  352.   if (table->fields >= 4) // If not old func format
  353.     table->field[3]->store((longlong) u_d->type);
  354.   error = table->file->write_row(table->record[0]);
  355.   close_thread_tables(thd);
  356.   if (error)
  357.   {
  358.     net_printf(&thd->net, ER_ERROR_ON_WRITE, "func@mysql",error);
  359.     del_udf(u_d);
  360.     goto err;
  361.   }
  362.   pthread_mutex_unlock(&THR_LOCK_udf);
  363.   DBUG_RETURN(0);
  364.  err:
  365.   if (new_dl)
  366.     dlclose(dl);
  367.   pthread_mutex_unlock(&THR_LOCK_udf);
  368.   DBUG_RETURN(1);
  369. }
  370. int mysql_drop_function(THD *thd,const char *udf_name)
  371. {
  372.   TABLE *table;
  373.   TABLE_LIST tables;
  374.   udf_func *udf;
  375.   DBUG_ENTER("mysql_drop_function");
  376.   if (!initialized)
  377.   {
  378.     send_error(&thd->net, ER_OUT_OF_RESOURCES, ER(ER_OUT_OF_RESOURCES));
  379.     DBUG_RETURN(1);
  380.   }
  381.   pthread_mutex_lock(&THR_LOCK_udf);
  382.   if (!(udf=(udf_func*) hash_search(&udf_hash,udf_name, (uint) strlen(udf_name))))
  383.   {
  384.     net_printf(&thd->net, ER_FUNCTION_NOT_DEFINED, udf_name);
  385.     goto err;
  386.   }
  387.   del_udf(udf);
  388.   if (!find_udf_dl(udf->dl))
  389.     dlclose(udf->dlhandle);
  390.   bzero((char*) &tables,sizeof(tables));
  391.   tables.db=(char*) "mysql";
  392.   tables.real_name=tables.name=(char*) "func";
  393.   if (!(table = open_ltable(thd,&tables,TL_WRITE)))
  394.     goto err;
  395.   if (!table->file->index_read_idx(table->record[0],0,(byte*) udf_name,
  396.    (uint) strlen(udf_name),
  397.    HA_READ_KEY_EXACT))
  398.   {
  399.     int error;
  400.     if ((error = table->file->delete_row(table->record[0])))
  401.       table->file->print_error(error, MYF(0));
  402.   }
  403.   close_thread_tables(thd);
  404.   pthread_mutex_unlock(&THR_LOCK_udf);
  405.   DBUG_RETURN(0);
  406.  err:
  407.   pthread_mutex_unlock(&THR_LOCK_udf);
  408.   DBUG_RETURN(1);
  409. }
  410. #endif /* HAVE_DLOPEN */
  411. /*
  412. ** Local variables:
  413. ** tab-width: 8
  414. ** c-basic-offset: 2
  415. ** End:
  416. */