item_strfunc.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:74k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* This file defines all string functions
  14. ** Warning: Some string functions doesn't always put and end-null on a String
  15. ** (This shouldn't be needed)
  16. */
  17. #ifdef USE_PRAGMA_IMPLEMENTATION
  18. #pragma implementation // gcc: Class implementation
  19. #endif
  20. #include "mysql_priv.h"
  21. #include <m_ctype.h>
  22. #ifdef HAVE_OPENSSL
  23. #include <openssl/des.h>
  24. #endif /* HAVE_OPENSSL */
  25. #include "md5.h"
  26. #include "sha1.h"
  27. #include "my_aes.h"
  28. C_MODE_START
  29. #include "../mysys/my_static.h" // For soundex_map
  30. C_MODE_END
  31. String my_empty_string("",default_charset_info);
  32. static void my_coll_agg_error(DTCollation &c1, DTCollation &c2,
  33.                               const char *fname)
  34. {
  35.   my_error(ER_CANT_AGGREGATE_2COLLATIONS,MYF(0),
  36.    c1.collation->name,c1.derivation_name(),
  37.    c2.collation->name,c2.derivation_name(),
  38.    fname);
  39. }
  40. uint nr_of_decimals(const char *str)
  41. {
  42.   if ((str=strchr(str,'.')))
  43.   {
  44.     const char *start= ++str;
  45.     for (; my_isdigit(system_charset_info,*str) ; str++) ;
  46.     return (uint) (str-start);
  47.   }
  48.   return 0;
  49. }
  50. double Item_str_func::val()
  51. {
  52.   DBUG_ASSERT(fixed == 1);
  53.   int err;
  54.   char buff[64];
  55.   char *end_not_used;
  56.   String *res, tmp(buff,sizeof(buff), &my_charset_bin);
  57.   res= val_str(&tmp);
  58.   return res ? my_strntod(res->charset(), (char*) res->ptr(),res->length(),
  59.   &end_not_used, &err) : 0.0;
  60. }
  61. longlong Item_str_func::val_int()
  62. {
  63.   DBUG_ASSERT(fixed == 1);
  64.   int err;
  65.   char buff[22];
  66.   String *res, tmp(buff,sizeof(buff), &my_charset_bin);
  67.   res= val_str(&tmp);
  68.   return (res ?
  69.   my_strntoll(res->charset(), res->ptr(), res->length(), 10, NULL,
  70.       &err) :
  71.   (longlong) 0);
  72. }
  73. String *Item_func_md5::val_str(String *str)
  74. {
  75.   DBUG_ASSERT(fixed == 1);
  76.   String * sptr= args[0]->val_str(str);
  77.   if (sptr)
  78.   {
  79.     my_MD5_CTX context;
  80.     unsigned char digest[16];
  81.     null_value=0;
  82.     my_MD5Init (&context);
  83.     my_MD5Update (&context,(unsigned char *) sptr->ptr(), sptr->length());
  84.     my_MD5Final (digest, &context);
  85.     if (str->alloc(32)) // Ensure that memory is free
  86.     {
  87.       null_value=1;
  88.       return 0;
  89.     }
  90.     sprintf((char *) str->ptr(),
  91.     "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
  92.     digest[0], digest[1], digest[2], digest[3],
  93.     digest[4], digest[5], digest[6], digest[7],
  94.     digest[8], digest[9], digest[10], digest[11],
  95.     digest[12], digest[13], digest[14], digest[15]);
  96.     str->length((uint) 32);
  97.     return str;
  98.   }
  99.   null_value=1;
  100.   return 0;
  101. }
  102. void Item_func_md5::fix_length_and_dec()
  103. {
  104.    max_length=32;
  105. }
  106. String *Item_func_sha::val_str(String *str)
  107. {
  108.   DBUG_ASSERT(fixed == 1);
  109.   String * sptr= args[0]->val_str(str);
  110.   if (sptr)  /* If we got value different from NULL */
  111.   {
  112.     SHA1_CONTEXT context;  /* Context used to generate SHA1 hash */
  113.     /* Temporary buffer to store 160bit digest */
  114.     uint8 digest[SHA1_HASH_SIZE];
  115.     sha1_reset(&context);  /* We do not have to check for error here */
  116.     /* No need to check error as the only case would be too long message */
  117.     sha1_input(&context,(const unsigned char *) sptr->ptr(), sptr->length());
  118.     /* Ensure that memory is free and we got result */
  119.     if (!( str->alloc(SHA1_HASH_SIZE*2) || (sha1_result(&context,digest))))
  120.     {
  121.       sprintf((char *) str->ptr(),
  122.       "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x
  123. %02x%02x%02x%02x%02x%02x%02x%02x",
  124.            digest[0], digest[1], digest[2], digest[3],
  125.            digest[4], digest[5], digest[6], digest[7],
  126.            digest[8], digest[9], digest[10], digest[11],
  127.            digest[12], digest[13], digest[14], digest[15],
  128.            digest[16], digest[17], digest[18], digest[19]);
  129.       str->length((uint)  SHA1_HASH_SIZE*2);
  130.       null_value=0;
  131.       return str;
  132.     }
  133.   }
  134.   null_value=1;
  135.   return 0;
  136. }
  137. void Item_func_sha::fix_length_and_dec()
  138. {
  139.    max_length=SHA1_HASH_SIZE*2; // size of hex representation of hash
  140. }
  141. /* Implementation of AES encryption routines */
  142. String *Item_func_aes_encrypt::val_str(String *str)
  143. {
  144.   DBUG_ASSERT(fixed == 1);
  145.   char key_buff[80];
  146.   String tmp_key_value(key_buff, sizeof(key_buff), system_charset_info);
  147.   String *sptr= args[0]->val_str(str); // String to encrypt
  148.   String *key=  args[1]->val_str(&tmp_key_value); // key
  149.   int aes_length;
  150.   if (sptr && key) // we need both arguments to be not NULL
  151.   {
  152.     null_value=0;
  153.     aes_length=my_aes_get_size(sptr->length()); // Calculate result length
  154.     if (!str_value.alloc(aes_length)) // Ensure that memory is free
  155.     {
  156.       // finally encrypt directly to allocated buffer.
  157.       if (my_aes_encrypt(sptr->ptr(),sptr->length(), (char*) str_value.ptr(),
  158.  key->ptr(), key->length()) == aes_length)
  159.       {
  160. // We got the expected result length
  161. str_value.length((uint) aes_length);
  162. return &str_value;
  163.       }
  164.     }
  165.   }
  166.   null_value=1;
  167.   return 0;
  168. }
  169. void Item_func_aes_encrypt::fix_length_and_dec()
  170. {
  171.   max_length=my_aes_get_size(args[0]->max_length);
  172. }
  173. String *Item_func_aes_decrypt::val_str(String *str)
  174. {
  175.   DBUG_ASSERT(fixed == 1);
  176.   char key_buff[80];
  177.   String tmp_key_value(key_buff, sizeof(key_buff), system_charset_info);
  178.   String *sptr, *key;
  179.   DBUG_ENTER("Item_func_aes_decrypt::val_str");
  180.   sptr= args[0]->val_str(str); // String to decrypt
  181.   key=  args[1]->val_str(&tmp_key_value); // Key
  182.   if (sptr && key)   // Need to have both arguments not NULL
  183.   {
  184.     null_value=0;
  185.     if (!str_value.alloc(sptr->length()))  // Ensure that memory is free
  186.     {
  187.       // finally decrypt directly to allocated buffer.
  188.       int length;
  189.       length=my_aes_decrypt(sptr->ptr(), sptr->length(),
  190.     (char*) str_value.ptr(),
  191.                             key->ptr(), key->length());
  192.       if (length >= 0)  // if we got correct data data
  193.       {
  194.         str_value.length((uint) length);
  195.         DBUG_RETURN(&str_value);
  196.       }
  197.     }
  198.   }
  199.   // Bad parameters. No memory or bad data will all go here
  200.   null_value=1;
  201.   DBUG_RETURN(0);
  202. }
  203. void Item_func_aes_decrypt::fix_length_and_dec()
  204. {
  205.    max_length=args[0]->max_length;
  206.    maybe_null= 1;
  207. }
  208. /*
  209.   Concatenate args with the following premises:
  210.   If only one arg (which is ok), return value of arg
  211.   Don't reallocate val_str() if not absolute necessary.
  212. */
  213. String *Item_func_concat::val_str(String *str)
  214. {
  215.   DBUG_ASSERT(fixed == 1);
  216.   String *res,*res2,*use_as_buff;
  217.   uint i;
  218.   null_value=0;
  219.   if (!(res=args[0]->val_str(str)))
  220.     goto null;
  221.   use_as_buff= &tmp_value;
  222.   for (i=1 ; i < arg_count ; i++)
  223.   {
  224.     if (res->length() == 0)
  225.     {
  226.       if (!(res=args[i]->val_str(str)))
  227. goto null;
  228.     }
  229.     else
  230.     {
  231.       if (!(res2=args[i]->val_str(use_as_buff)))
  232. goto null;
  233.       if (res2->length() == 0)
  234. continue;
  235.       if (res->length()+res2->length() >
  236.   current_thd->variables.max_allowed_packet)
  237.       {
  238. push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
  239.     ER_WARN_ALLOWED_PACKET_OVERFLOWED,
  240.     ER(ER_WARN_ALLOWED_PACKET_OVERFLOWED), func_name(),
  241.     current_thd->variables.max_allowed_packet);
  242. goto null;
  243.       }
  244.       if (res->alloced_length() >= res->length()+res2->length())
  245.       { // Use old buffer
  246. res->append(*res2);
  247.       }
  248.       else if (str->alloced_length() >= res->length()+res2->length())
  249.       {
  250. if (str == res2)
  251.   str->replace(0,0,*res);
  252. else
  253. {
  254.   str->copy(*res);
  255.   str->append(*res2);
  256. }
  257.         res= str;
  258.         use_as_buff= &tmp_value;
  259.       }
  260.       else if (res == &tmp_value)
  261.       {
  262. if (res->append(*res2)) // Must be a blob
  263.   goto null;
  264.       }
  265.       else if (res2 == &tmp_value)
  266.       { // This can happend only 1 time
  267. if (tmp_value.replace(0,0,*res))
  268.   goto null;
  269. res= &tmp_value;
  270. use_as_buff=str; // Put next arg here
  271.       }
  272.       else if (tmp_value.is_alloced() && res2->ptr() >= tmp_value.ptr() &&
  273.        res2->ptr() <= tmp_value.ptr() + tmp_value.alloced_length())
  274.       {
  275. /*
  276.   This happens really seldom:
  277.   In this case res2 is sub string of tmp_value.  We will
  278.   now work in place in tmp_value to set it to res | res2
  279. */
  280. /* Chop the last characters in tmp_value that isn't in res2 */
  281. tmp_value.length((uint32) (res2->ptr() - tmp_value.ptr()) +
  282.  res2->length());
  283. /* Place res2 at start of tmp_value, remove chars before res2 */
  284. if (tmp_value.replace(0,(uint32) (res2->ptr() - tmp_value.ptr()),
  285.       *res))
  286.   goto null;
  287. res= &tmp_value;
  288. use_as_buff=str; // Put next arg here
  289.       }
  290.       else
  291.       { // Two big const strings
  292. if (tmp_value.alloc(max_length) ||
  293.     tmp_value.copy(*res) ||
  294.     tmp_value.append(*res2))
  295.   goto null;
  296. res= &tmp_value;
  297. use_as_buff=str;
  298.       }
  299.     }
  300.   }
  301.   res->set_charset(collation.collation);
  302.   return res;
  303. null:
  304.   null_value=1;
  305.   return 0;
  306. }
  307. void Item_func_concat::fix_length_and_dec()
  308. {
  309.   ulonglong max_result_length= 0;
  310.   if (agg_arg_charsets(collation, args, arg_count, MY_COLL_ALLOW_CONV))
  311.     return;
  312.   for (uint i=0 ; i < arg_count ; i++)
  313.     max_result_length+= args[i]->max_length;
  314.   if (max_result_length >= MAX_BLOB_WIDTH)
  315.   {
  316.     max_result_length= MAX_BLOB_WIDTH;
  317.     maybe_null= 1;
  318.   }
  319.   max_length= (ulong) max_result_length;
  320. }
  321. /*
  322.   Function des_encrypt() by tonu@spam.ee & monty
  323.   Works only if compiled with OpenSSL library support.
  324.   This returns a binary string where first character is CHAR(128 | key-number).
  325.   If one uses a string key key_number is 127.
  326.   Encryption result is longer than original by formula:
  327.   new_length= org_length + (8-(org_length % 8))+1
  328. */
  329. String *Item_func_des_encrypt::val_str(String *str)
  330. {
  331.   DBUG_ASSERT(fixed == 1);
  332. #ifdef HAVE_OPENSSL
  333.   uint code= ER_WRONG_PARAMETERS_TO_PROCEDURE;
  334.   DES_cblock ivec;
  335.   struct st_des_keyblock keyblock;
  336.   struct st_des_keyschedule keyschedule;
  337.   const char *append_str="********";
  338.   uint key_number, res_length, tail;
  339.   String *res= args[0]->val_str(str);
  340.   if ((null_value= args[0]->null_value))
  341.     return 0;                                   // ENCRYPT(NULL) == NULL
  342.   if ((res_length=res->length()) == 0)
  343.     return &my_empty_string;
  344.   if (arg_count == 1)
  345.   {
  346.     /* Protect against someone doing FLUSH DES_KEY_FILE */
  347.     VOID(pthread_mutex_lock(&LOCK_des_key_file));
  348.     keyschedule= des_keyschedule[key_number=des_default_key];
  349.     VOID(pthread_mutex_unlock(&LOCK_des_key_file));
  350.   }
  351.   else if (args[1]->result_type() == INT_RESULT)
  352.   {
  353.     key_number= (uint) args[1]->val_int();
  354.     if (key_number > 9)
  355.       goto error;
  356.     VOID(pthread_mutex_lock(&LOCK_des_key_file));
  357.     keyschedule= des_keyschedule[key_number];
  358.     VOID(pthread_mutex_unlock(&LOCK_des_key_file));
  359.   }
  360.   else
  361.   {
  362.     String *keystr=args[1]->val_str(&tmp_value);
  363.     if (!keystr)
  364.       goto error;
  365.     key_number=127; // User key string
  366.     /* We make good 24-byte (168 bit) key from given plaintext key with MD5 */
  367.     bzero((char*) &ivec,sizeof(ivec));
  368.     EVP_BytesToKey(EVP_des_ede3_cbc(),EVP_md5(),NULL,
  369.    (uchar*) keystr->ptr(), (int) keystr->length(),
  370.    1, (uchar*) &keyblock,ivec);
  371.     DES_set_key_unchecked(&keyblock.key1,&keyschedule.ks1);
  372.     DES_set_key_unchecked(&keyblock.key2,&keyschedule.ks2);
  373.     DES_set_key_unchecked(&keyblock.key3,&keyschedule.ks3);
  374.   }
  375.   /*
  376.      The problem: DES algorithm requires original data to be in 8-bytes
  377.      chunks. Missing bytes get filled with '*'s and result of encryption
  378.      can be up to 8 bytes longer than original string. When decrypted,
  379.      we do not know the size of original string :(
  380.      We add one byte with value 0x1..0x8 as the last byte of the padded
  381.      string marking change of string length.
  382.   */
  383.   tail=  (8-(res_length) % 8); // 1..8 marking extra length
  384.   res_length+=tail;
  385.   code= ER_OUT_OF_RESOURCES;
  386.   if (tail && res->append(append_str, tail) || tmp_value.alloc(res_length+1))
  387.     goto error;
  388.   (*res)[res_length-1]=tail; // save extra length
  389.   tmp_value.length(res_length+1);
  390.   tmp_value[0]=(char) (128 | key_number);
  391.   // Real encryption
  392.   bzero((char*) &ivec,sizeof(ivec));
  393.   DES_ede3_cbc_encrypt((const uchar*) (res->ptr()),
  394.        (uchar*) (tmp_value.ptr()+1),
  395.        res_length,
  396.        &keyschedule.ks1,
  397.        &keyschedule.ks2,
  398.        &keyschedule.ks3,
  399.        &ivec, TRUE);
  400.   return &tmp_value;
  401. error:
  402.   push_warning_printf(current_thd,MYSQL_ERROR::WARN_LEVEL_ERROR,
  403.                           code, ER(code),
  404.                           "des_encrypt");
  405. #else
  406.   push_warning_printf(current_thd,MYSQL_ERROR::WARN_LEVEL_ERROR,
  407.                       ER_FEATURE_DISABLED, ER(ER_FEATURE_DISABLED),
  408.                       "des_encrypt","--with-openssl");
  409. #endif /* HAVE_OPENSSL */
  410.   null_value=1;
  411.   return 0;
  412. }
  413. String *Item_func_des_decrypt::val_str(String *str)
  414. {
  415.   DBUG_ASSERT(fixed == 1);
  416. #ifdef HAVE_OPENSSL
  417.   uint code= ER_WRONG_PARAMETERS_TO_PROCEDURE;
  418.   DES_key_schedule ks1, ks2, ks3;
  419.   DES_cblock ivec;
  420.   struct st_des_keyblock keyblock;
  421.   struct st_des_keyschedule keyschedule;
  422.   String *res= args[0]->val_str(str);
  423.   uint length,tail;
  424.   if ((null_value= args[0]->null_value))
  425.     return 0;
  426.   length= res->length();
  427.   if (length < 9 || (length % 8) != 1 || !((*res)[0] & 128))
  428.     return res; // Skip decryption if not encrypted
  429.   if (arg_count == 1) // If automatic uncompression
  430.   {
  431.     uint key_number=(uint) (*res)[0] & 127;
  432.     // Check if automatic key and that we have privilege to uncompress using it
  433.     if (!(current_thd->master_access & SUPER_ACL) || key_number > 9)
  434.       goto error;
  435.     VOID(pthread_mutex_lock(&LOCK_des_key_file));
  436.     keyschedule= des_keyschedule[key_number];
  437.     VOID(pthread_mutex_unlock(&LOCK_des_key_file));
  438.   }
  439.   else
  440.   {
  441.     // We make good 24-byte (168 bit) key from given plaintext key with MD5
  442.     String *keystr=args[1]->val_str(&tmp_value);
  443.     if (!keystr)
  444.       goto error;
  445.     bzero((char*) &ivec,sizeof(ivec));
  446.     EVP_BytesToKey(EVP_des_ede3_cbc(),EVP_md5(),NULL,
  447.    (uchar*) keystr->ptr(),(int) keystr->length(),
  448.    1,(uchar*) &keyblock,ivec);
  449.     // Here we set all 64-bit keys (56 effective) one by one
  450.     DES_set_key_unchecked(&keyblock.key1,&keyschedule.ks1);
  451.     DES_set_key_unchecked(&keyblock.key2,&keyschedule.ks2);
  452.     DES_set_key_unchecked(&keyblock.key3,&keyschedule.ks3);
  453.   }
  454.   code= ER_OUT_OF_RESOURCES;
  455.   if (tmp_value.alloc(length-1))
  456.     goto error;
  457.   bzero((char*) &ivec,sizeof(ivec));
  458.   DES_ede3_cbc_encrypt((const uchar*) res->ptr()+1,
  459.        (uchar*) (tmp_value.ptr()),
  460.        length-1,
  461.        &keyschedule.ks1,
  462.        &keyschedule.ks2,
  463.        &keyschedule.ks3,
  464.        &ivec, FALSE);
  465.   /* Restore old length of key */
  466.   if ((tail=(uint) (uchar) tmp_value[length-2]) > 8)
  467.     goto wrong_key;      // Wrong key
  468.   tmp_value.length(length-1-tail);
  469.   return &tmp_value;
  470. error:
  471.   push_warning_printf(current_thd,MYSQL_ERROR::WARN_LEVEL_ERROR,
  472.                           code, ER(code),
  473.                           "des_decrypt");
  474. wrong_key:
  475. #else
  476.   push_warning_printf(current_thd,MYSQL_ERROR::WARN_LEVEL_ERROR,
  477.                       ER_FEATURE_DISABLED, ER(ER_FEATURE_DISABLED),
  478.                       "des_decrypt","--with-openssl");
  479. #endif /* HAVE_OPENSSL */
  480.   null_value=1;
  481.   return 0;
  482. }
  483. /*
  484.   concat with separator. First arg is the separator
  485.   concat_ws takes at least two arguments.
  486. */
  487. String *Item_func_concat_ws::val_str(String *str)
  488. {
  489.   DBUG_ASSERT(fixed == 1);
  490.   char tmp_str_buff[10];
  491.   String tmp_sep_str(tmp_str_buff, sizeof(tmp_str_buff),default_charset_info),
  492.          *sep_str, *res, *res2,*use_as_buff;
  493.   uint i;
  494.   null_value=0;
  495.   if (!(sep_str= args[0]->val_str(&tmp_sep_str)))
  496.     goto null;
  497.   use_as_buff= &tmp_value;
  498.   str->length(0); // QQ; Should be removed
  499.   res=str;
  500.   // Skip until non-null argument is found.
  501.   // If not, return the empty string
  502.   for (i=1; i < arg_count; i++)
  503.     if ((res= args[i]->val_str(str)))
  504.       break;
  505.   if (i ==  arg_count)
  506.     return &my_empty_string;
  507.   for (i++; i < arg_count ; i++)
  508.   {
  509.     if (!(res2= args[i]->val_str(use_as_buff)))
  510.       continue; // Skip NULL
  511.     if (res->length() + sep_str->length() + res2->length() >
  512. current_thd->variables.max_allowed_packet)
  513.     {
  514.       push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
  515.   ER_WARN_ALLOWED_PACKET_OVERFLOWED,
  516.   ER(ER_WARN_ALLOWED_PACKET_OVERFLOWED), func_name(),
  517.   current_thd->variables.max_allowed_packet);
  518.       goto null;
  519.     }
  520.     if (res->alloced_length() >=
  521. res->length() + sep_str->length() + res2->length())
  522.     { // Use old buffer
  523.       res->append(*sep_str); // res->length() > 0 always
  524.       res->append(*res2);
  525.     }
  526.     else if (str->alloced_length() >=
  527.      res->length() + sep_str->length() + res2->length())
  528.     {
  529.       /* We have room in str;  We can't get any errors here */
  530.       if (str == res2)
  531.       { // This is quote uncommon!
  532. str->replace(0,0,*sep_str);
  533. str->replace(0,0,*res);
  534.       }
  535.       else
  536.       {
  537. str->copy(*res);
  538. str->append(*sep_str);
  539. str->append(*res2);
  540.       }
  541.       res=str;
  542.       use_as_buff= &tmp_value;
  543.     }
  544.     else if (res == &tmp_value)
  545.     {
  546.       if (res->append(*sep_str) || res->append(*res2))
  547. goto null; // Must be a blob
  548.     }
  549.     else if (res2 == &tmp_value)
  550.     { // This can happend only 1 time
  551.       if (tmp_value.replace(0,0,*sep_str) || tmp_value.replace(0,0,*res))
  552. goto null;
  553.       res= &tmp_value;
  554.       use_as_buff=str; // Put next arg here
  555.     }
  556.     else if (tmp_value.is_alloced() && res2->ptr() >= tmp_value.ptr() &&
  557.      res2->ptr() < tmp_value.ptr() + tmp_value.alloced_length())
  558.     {
  559.       /*
  560. This happens really seldom:
  561. In this case res2 is sub string of tmp_value.  We will
  562. now work in place in tmp_value to set it to res | sep_str | res2
  563.       */
  564.       /* Chop the last characters in tmp_value that isn't in res2 */
  565.       tmp_value.length((uint32) (res2->ptr() - tmp_value.ptr()) +
  566.        res2->length());
  567.       /* Place res2 at start of tmp_value, remove chars before res2 */
  568.       if (tmp_value.replace(0,(uint32) (res2->ptr() - tmp_value.ptr()),
  569.     *res) ||
  570.   tmp_value.replace(res->length(),0, *sep_str))
  571. goto null;
  572.       res= &tmp_value;
  573.       use_as_buff=str; // Put next arg here
  574.     }
  575.     else
  576.     { // Two big const strings
  577.       if (tmp_value.alloc(max_length) ||
  578.   tmp_value.copy(*res) ||
  579.   tmp_value.append(*sep_str) ||
  580.   tmp_value.append(*res2))
  581. goto null;
  582.       res= &tmp_value;
  583.       use_as_buff=str;
  584.     }
  585.   }
  586.   res->set_charset(collation.collation);
  587.   return res;
  588. null:
  589.   null_value=1;
  590.   return 0;
  591. }
  592. void Item_func_concat_ws::fix_length_and_dec()
  593. {
  594.   ulonglong max_result_length;
  595.   if (agg_arg_charsets(collation, args, arg_count, MY_COLL_ALLOW_CONV))
  596.     return;
  597.   /*
  598.      arg_count cannot be less than 2,
  599.      it is done on parser level in sql_yacc.yy
  600.      so, (arg_count - 2) is safe here.
  601.   */
  602.   max_result_length= (ulonglong) args[0]->max_length * (arg_count - 2);
  603.   for (uint i=1 ; i < arg_count ; i++)
  604.     max_result_length+=args[i]->max_length;
  605.   if (max_result_length >= MAX_BLOB_WIDTH)
  606.   {
  607.     max_result_length= MAX_BLOB_WIDTH;
  608.     maybe_null= 1;
  609.   }
  610.   max_length= (ulong) max_result_length;
  611. }
  612. String *Item_func_reverse::val_str(String *str)
  613. {
  614.   DBUG_ASSERT(fixed == 1);
  615.   String *res = args[0]->val_str(str);
  616.   char *ptr,*end;
  617.   if ((null_value=args[0]->null_value))
  618.     return 0;
  619.   /* An empty string is a special case as the string pointer may be null */
  620.   if (!res->length())
  621.     return &my_empty_string;
  622.   res=copy_if_not_alloced(str,res,res->length());
  623.   ptr = (char *) res->ptr();
  624.   end=ptr+res->length();
  625. #ifdef USE_MB
  626.   if (use_mb(res->charset()))
  627.   {
  628.     String tmpstr;
  629.     tmpstr.copy(*res);
  630.     char *tmp = (char *) tmpstr.ptr() + tmpstr.length();
  631.     register uint32 l;
  632.     while (ptr < end)
  633.     {
  634.       if ((l=my_ismbchar(res->charset(), ptr,end)))
  635.         tmp-=l, memcpy(tmp,ptr,l), ptr+=l;
  636.       else
  637.         *--tmp=*ptr++;
  638.     }
  639.     memcpy((char *) res->ptr(),(char *) tmpstr.ptr(), res->length());
  640.   }
  641.   else
  642. #endif /* USE_MB */
  643.   {
  644.     char tmp;
  645.     while (ptr < end)
  646.     {
  647.       tmp=*ptr;
  648.       *ptr++=*--end;
  649.       *end=tmp;
  650.     }
  651.   }
  652.   return res;
  653. }
  654. void Item_func_reverse::fix_length_and_dec()
  655. {
  656.   collation.set(args[0]->collation);
  657.   max_length = args[0]->max_length;
  658. }
  659. /*
  660. ** Replace all occurences of string2 in string1 with string3.
  661. ** Don't reallocate val_str() if not needed
  662. */
  663. /* TODO: Fix that this works with binary strings when using USE_MB */
  664. String *Item_func_replace::val_str(String *str)
  665. {
  666.   DBUG_ASSERT(fixed == 1);
  667.   String *res,*res2,*res3;
  668.   int offset;
  669.   uint from_length,to_length;
  670.   bool alloced=0;
  671. #ifdef USE_MB
  672.   const char *ptr,*end,*strend,*search,*search_end;
  673.   register uint32 l;
  674.   bool binary_cmp;
  675. #endif
  676.   null_value=0;
  677.   res=args[0]->val_str(str);
  678.   if (args[0]->null_value)
  679.     goto null;
  680.   res2=args[1]->val_str(&tmp_value);
  681.   if (args[1]->null_value)
  682.     goto null;
  683.   res->set_charset(collation.collation);
  684. #ifdef USE_MB
  685.   binary_cmp = ((res->charset()->state & MY_CS_BINSORT) || !use_mb(res->charset()));
  686. #endif
  687.   if (res2->length() == 0)
  688.     return res;
  689. #ifndef USE_MB
  690.   if ((offset=res->strstr(*res2)) < 0)
  691.     return res;
  692. #else
  693.   offset=0;
  694.   if (binary_cmp && (offset=res->strstr(*res2)) < 0)
  695.     return res;
  696. #endif
  697.   if (!(res3=args[2]->val_str(&tmp_value2)))
  698.     goto null;
  699.   from_length= res2->length();
  700.   to_length=   res3->length();
  701. #ifdef USE_MB
  702.   if (!binary_cmp)
  703.   {
  704.     search=res2->ptr();
  705.     search_end=search+from_length;
  706. redo:
  707.     ptr=res->ptr()+offset;
  708.     strend=res->ptr()+res->length();
  709.     end=strend-from_length+1;
  710.     while (ptr < end)
  711.     {
  712.         if (*ptr == *search)
  713.         {
  714.           register char *i,*j;
  715.           i=(char*) ptr+1; j=(char*) search+1;
  716.           while (j != search_end)
  717.             if (*i++ != *j++) goto skip;
  718.           offset= (int) (ptr-res->ptr());
  719.           if (res->length()-from_length + to_length >
  720.       current_thd->variables.max_allowed_packet)
  721.   {
  722.     push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
  723. ER_WARN_ALLOWED_PACKET_OVERFLOWED,
  724. ER(ER_WARN_ALLOWED_PACKET_OVERFLOWED),
  725. func_name(),
  726. current_thd->variables.max_allowed_packet);
  727.             goto null;
  728.   }
  729.           if (!alloced)
  730.           {
  731.             alloced=1;
  732.             res=copy_if_not_alloced(str,res,res->length()+to_length);
  733.           }
  734.           res->replace((uint) offset,from_length,*res3);
  735.   offset+=(int) to_length;
  736.           goto redo;
  737.         }
  738. skip:
  739.         if ((l=my_ismbchar(res->charset(), ptr,strend))) ptr+=l;
  740.         else ++ptr;
  741.     }
  742.   }
  743.   else
  744. #endif /* USE_MB */
  745.     do
  746.     {
  747.       if (res->length()-from_length + to_length >
  748.   current_thd->variables.max_allowed_packet)
  749.       {
  750. push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
  751.     ER_WARN_ALLOWED_PACKET_OVERFLOWED,
  752.     ER(ER_WARN_ALLOWED_PACKET_OVERFLOWED), func_name(),
  753.     current_thd->variables.max_allowed_packet);
  754.         goto null;
  755.       }
  756.       if (!alloced)
  757.       {
  758.         alloced=1;
  759.         res=copy_if_not_alloced(str,res,res->length()+to_length);
  760.       }
  761.       res->replace((uint) offset,from_length,*res3);
  762.       offset+=(int) to_length;
  763.     }
  764.     while ((offset=res->strstr(*res2,(uint) offset)) >= 0);
  765.   return res;
  766. null:
  767.   null_value=1;
  768.   return 0;
  769. }
  770. void Item_func_replace::fix_length_and_dec()
  771. {
  772.   ulonglong max_result_length= args[0]->max_length;
  773.   int diff=(int) (args[2]->max_length - args[1]->max_length);
  774.   if (diff > 0 && args[1]->max_length)
  775.   { // Calculate of maxreplaces
  776.     ulonglong max_substrs= max_result_length/args[1]->max_length;
  777.     max_result_length+= max_substrs * (uint) diff;
  778.   }
  779.   if (max_result_length >= MAX_BLOB_WIDTH)
  780.   {
  781.     max_result_length= MAX_BLOB_WIDTH;
  782.     maybe_null= 1;
  783.   }
  784.   max_length= (ulong) max_result_length;
  785.   
  786.   if (agg_arg_charsets(collation, args, 3, MY_COLL_CMP_CONV))
  787.     return;
  788. }
  789. String *Item_func_insert::val_str(String *str)
  790. {
  791.   DBUG_ASSERT(fixed == 1);
  792.   String *res,*res2;
  793.   uint start,length;
  794.   null_value=0;
  795.   res=args[0]->val_str(str);
  796.   res2=args[3]->val_str(&tmp_value);
  797.   start=(uint) args[1]->val_int()-1;
  798.   length=(uint) args[2]->val_int();
  799.   if (args[0]->null_value || args[1]->null_value || args[2]->null_value ||
  800.       args[3]->null_value)
  801.     goto null; /* purecov: inspected */
  802.   start=res->charpos(start);
  803.   length=res->charpos(length,start);
  804.   if (start > res->length()+1)
  805.     return res; // Wrong param; skip insert
  806.   if (length > res->length()-start)
  807.     length=res->length()-start;
  808.   if (res->length() - length + res2->length() >
  809.       current_thd->variables.max_allowed_packet)
  810.   {
  811.     push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
  812. ER_WARN_ALLOWED_PACKET_OVERFLOWED,
  813. ER(ER_WARN_ALLOWED_PACKET_OVERFLOWED),
  814. func_name(), current_thd->variables.max_allowed_packet);
  815.     goto null;
  816.   }
  817.   res=copy_if_not_alloced(str,res,res->length());
  818.   res->replace(start,length,*res2);
  819.   return res;
  820. null:
  821.   null_value=1;
  822.   return 0;
  823. }
  824. void Item_func_insert::fix_length_and_dec()
  825. {
  826.   Item *cargs[2];
  827.   ulonglong max_result_length;
  828.   cargs[0]= args[0];
  829.   cargs[1]= args[3];
  830.   if (agg_arg_charsets(collation, cargs, 2, MY_COLL_ALLOW_CONV))
  831.     return;
  832.   args[0]= cargs[0];
  833.   args[3]= cargs[1];
  834.   max_result_length= ((ulonglong) args[0]->max_length+
  835.                       (ulonglong) args[3]->max_length);
  836.   if (max_result_length >= MAX_BLOB_WIDTH)
  837.   {
  838.     max_result_length= MAX_BLOB_WIDTH;
  839.     maybe_null= 1;
  840.   }
  841.   max_length= (ulong) max_result_length;
  842. }
  843. String *Item_func_lcase::val_str(String *str)
  844. {
  845.   DBUG_ASSERT(fixed == 1);
  846.   String *res;
  847.   if (!(res=args[0]->val_str(str)))
  848.   {
  849.     null_value=1; /* purecov: inspected */
  850.     return 0; /* purecov: inspected */
  851.   }
  852.   null_value=0;
  853.   res=copy_if_not_alloced(str,res,res->length());
  854.   res->casedn();
  855.   return res;
  856. }
  857. String *Item_func_ucase::val_str(String *str)
  858. {
  859.   DBUG_ASSERT(fixed == 1);
  860.   String *res;
  861.   if (!(res=args[0]->val_str(str)))
  862.   {
  863.     null_value=1; /* purecov: inspected */
  864.     return 0; /* purecov: inspected */
  865.   }
  866.   null_value=0;
  867.   res=copy_if_not_alloced(str,res,res->length());
  868.   res->caseup();
  869.   return res;
  870. }
  871. String *Item_func_left::val_str(String *str)
  872. {
  873.   DBUG_ASSERT(fixed == 1);
  874.   String *res  =args[0]->val_str(str);
  875.   long length  =(long) args[1]->val_int();
  876.   uint char_pos;
  877.   if ((null_value=args[0]->null_value))
  878.     return 0;
  879.   if (length <= 0)
  880.     return &my_empty_string;
  881.   if (res->length() <= (uint) length ||
  882.       res->length() <= (char_pos= res->charpos(length)))
  883.     return res;
  884.   tmp_value.set(*res, 0, char_pos);
  885.   return &tmp_value;
  886. }
  887. void Item_str_func::left_right_max_length()
  888. {
  889.   max_length=args[0]->max_length;
  890.   if (args[1]->const_item())
  891.   {
  892.     int length=(int) args[1]->val_int()*collation.collation->mbmaxlen;
  893.     if (length <= 0)
  894.       max_length=0;
  895.     else
  896.       set_if_smaller(max_length,(uint) length);
  897.   }
  898. }
  899. void Item_func_left::fix_length_and_dec()
  900. {
  901.   collation.set(args[0]->collation);
  902.   left_right_max_length();
  903. }
  904. String *Item_func_right::val_str(String *str)
  905. {
  906.   DBUG_ASSERT(fixed == 1);
  907.   String *res  =args[0]->val_str(str);
  908.   long length  =(long) args[1]->val_int();
  909.   if ((null_value=args[0]->null_value))
  910.     return 0; /* purecov: inspected */
  911.   if (length <= 0)
  912.     return &my_empty_string; /* purecov: inspected */
  913.   if (res->length() <= (uint) length)
  914.     return res; /* purecov: inspected */
  915.   uint start=res->numchars();
  916.   if (start <= (uint) length)
  917.     return res;
  918.   start=res->charpos(start - (uint) length);
  919.   tmp_value.set(*res,start,res->length()-start);
  920.   return &tmp_value;
  921. }
  922. void Item_func_right::fix_length_and_dec()
  923. {
  924.   collation.set(args[0]->collation);
  925.   left_right_max_length();
  926. }
  927. String *Item_func_substr::val_str(String *str)
  928. {
  929.   DBUG_ASSERT(fixed == 1);
  930.   String *res  = args[0]->val_str(str);
  931.   int32 start = (int32) args[1]->val_int();
  932.   int32 length = arg_count == 3 ? (int32) args[2]->val_int() : INT_MAX32;
  933.   int32 tmp_length;
  934.   if ((null_value=(args[0]->null_value || args[1]->null_value ||
  935.    (arg_count == 3 && args[2]->null_value))))
  936.     return 0; /* purecov: inspected */
  937.   start= (int32)((start < 0) ? res->numchars() + start : start -1);
  938.   start=res->charpos(start);
  939.   length=res->charpos(length,start);
  940.   if (start < 0 || (uint) start+1 > res->length() || length <= 0)
  941.     return &my_empty_string;
  942.   tmp_length=(int32) res->length()-start;
  943.   length=min(length,tmp_length);
  944.   if (!start && res->length() == (uint) length)
  945.     return res;
  946.   tmp_value.set(*res,(uint) start,(uint) length);
  947.   return &tmp_value;
  948. }
  949. void Item_func_substr::fix_length_and_dec()
  950. {
  951.   max_length=args[0]->max_length;
  952.   collation.set(args[0]->collation);
  953.   if (args[1]->const_item())
  954.   {
  955.     int32 start= (int32) args[1]->val_int();
  956.     start= (int32)((start < 0) ? max_length + start : start - 1);
  957.     if (start < 0 || start >= (int32) max_length)
  958.       max_length=0; /* purecov: inspected */
  959.     else
  960.       max_length-= (uint) start;
  961.   }
  962.   if (arg_count == 3 && args[2]->const_item())
  963.   {
  964.     int32 length= (int32) args[2]->val_int() * collation.collation->mbmaxlen;
  965.     if (length <= 0)
  966.       max_length=0; /* purecov: inspected */
  967.     else
  968.       set_if_smaller(max_length,(uint) length);
  969.   }
  970. }
  971. void Item_func_substr_index::fix_length_and_dec()
  972.   max_length= args[0]->max_length;
  973.   if (agg_arg_charsets(collation, args, 2, MY_COLL_CMP_CONV))
  974.     return;
  975. }
  976. String *Item_func_substr_index::val_str(String *str)
  977. {
  978.   DBUG_ASSERT(fixed == 1);
  979.   String *res =args[0]->val_str(str);
  980.   String *delimeter =args[1]->val_str(&tmp_value);
  981.   int32 count = (int32) args[2]->val_int();
  982.   uint offset;
  983.   if (args[0]->null_value || args[1]->null_value || args[2]->null_value)
  984.   { // string and/or delim are null
  985.     null_value=1;
  986.     return 0;
  987.   }
  988.   null_value=0;
  989.   uint delimeter_length=delimeter->length();
  990.   if (!res->length() || !delimeter_length || !count)
  991.     return &my_empty_string; // Wrong parameters
  992.   res->set_charset(collation.collation);
  993. #ifdef USE_MB
  994.   if (use_mb(res->charset()))
  995.   {
  996.     const char *ptr=res->ptr();
  997.     const char *strend = ptr+res->length();
  998.     const char *end=strend-delimeter_length+1;
  999.     const char *search=delimeter->ptr();
  1000.     const char *search_end=search+delimeter_length;
  1001.     int32 n=0,c=count,pass;
  1002.     register uint32 l;
  1003.     for (pass=(count>0);pass<2;++pass)
  1004.     {
  1005.       while (ptr < end)
  1006.       {
  1007.         if (*ptr == *search)
  1008.         {
  1009.   register char *i,*j;
  1010.   i=(char*) ptr+1; j=(char*) search+1;
  1011.   while (j != search_end)
  1012.     if (*i++ != *j++) goto skip;
  1013.   if (pass==0) ++n;
  1014.   else if (!--c) break;
  1015.   ptr+=delimeter_length;
  1016.   continue;
  1017. }
  1018.     skip:
  1019.         if ((l=my_ismbchar(res->charset(), ptr,strend))) ptr+=l;
  1020.         else ++ptr;
  1021.       } /* either not found or got total number when count<0 */
  1022.       if (pass == 0) /* count<0 */
  1023.       {
  1024.         c+=n+1;
  1025.         if (c<=0) return res; /* not found, return original string */
  1026.         ptr=res->ptr();
  1027.       }
  1028.       else
  1029.       {
  1030.         if (c) return res; /* Not found, return original string */
  1031.         if (count>0) /* return left part */
  1032.         {
  1033.   tmp_value.set(*res,0,(ulong) (ptr-res->ptr()));
  1034.         }
  1035.         else /* return right part */
  1036.         {
  1037.   ptr+=delimeter_length;
  1038.   tmp_value.set(*res,(ulong) (ptr-res->ptr()), (ulong) (strend-ptr));
  1039.         }
  1040.       }
  1041.     }
  1042.   }
  1043.   else
  1044. #endif /* USE_MB */
  1045.   {
  1046.     if (count > 0)
  1047.     { // start counting from the beginning
  1048.       for (offset=0 ;; offset+=delimeter_length)
  1049.       {
  1050. if ((int) (offset=res->strstr(*delimeter,offset)) < 0)
  1051.   return res; // Didn't find, return org string
  1052. if (!--count)
  1053. {
  1054.   tmp_value.set(*res,0,offset);
  1055.   break;
  1056. }
  1057.       }
  1058.     }
  1059.     else
  1060.     {
  1061.       /*
  1062.         Negative index, start counting at the end
  1063.       */
  1064.       for (offset=res->length(); offset ;)
  1065.       {
  1066.         /* 
  1067.           this call will result in finding the position pointing to one 
  1068.           address space less than where the found substring is located
  1069.           in res
  1070.         */
  1071. if ((int) (offset=res->strrstr(*delimeter,offset)) < 0)
  1072.   return res; // Didn't find, return org string
  1073.         /*
  1074.           At this point, we've searched for the substring
  1075.           the number of times as supplied by the index value
  1076.         */
  1077. if (!++count)
  1078. {
  1079.   offset+=delimeter_length;
  1080.   tmp_value.set(*res,offset,res->length()- offset);
  1081.   break;
  1082. }
  1083.       }
  1084.     }
  1085.   }
  1086.   return (&tmp_value);
  1087. }
  1088. /*
  1089. ** The trim functions are extension to ANSI SQL because they trim substrings
  1090. ** They ltrim() and rtrim() functions are optimized for 1 byte strings
  1091. ** They also return the original string if possible, else they return
  1092. ** a substring that points at the original string.
  1093. */
  1094. String *Item_func_ltrim::val_str(String *str)
  1095. {
  1096.   DBUG_ASSERT(fixed == 1);
  1097.   String *res  =args[0]->val_str(str);
  1098.   if ((null_value=args[0]->null_value))
  1099.     return 0; /* purecov: inspected */
  1100.   char buff[MAX_FIELD_WIDTH];
  1101.   String tmp(buff,sizeof(buff),res->charset());
  1102.   String *remove_str= (arg_count==2) ? args[1]->val_str(&tmp) : &remove;
  1103.   uint remove_length;
  1104.   LINT_INIT(remove_length);
  1105.   if (!remove_str || (remove_length=remove_str->length()) == 0 ||
  1106.       remove_length > res->length())
  1107.     return res;
  1108.   char *ptr=(char*) res->ptr();
  1109.   char *end=ptr+res->length();
  1110.   if (remove_length == 1)
  1111.   {
  1112.     char chr=(*remove_str)[0];
  1113.     while (ptr != end && *ptr == chr)
  1114.       ptr++;
  1115.   }
  1116.   else
  1117.   {
  1118.     const char *r_ptr=remove_str->ptr();
  1119.     end-=remove_length;
  1120.     while (ptr <= end && !memcmp(ptr, r_ptr, remove_length))
  1121.       ptr+=remove_length;
  1122.     end+=remove_length;
  1123.   }
  1124.   if (ptr == res->ptr())
  1125.     return res;
  1126.   tmp_value.set(*res,(uint) (ptr - res->ptr()),(uint) (end-ptr));
  1127.   return &tmp_value;
  1128. }
  1129. String *Item_func_rtrim::val_str(String *str)
  1130. {
  1131.   DBUG_ASSERT(fixed == 1);
  1132.   String *res  =args[0]->val_str(str);
  1133.   if ((null_value=args[0]->null_value))
  1134.     return 0; /* purecov: inspected */
  1135.   char buff[MAX_FIELD_WIDTH];
  1136.   String tmp(buff,sizeof(buff),res->charset());
  1137.   String *remove_str= (arg_count==2) ? args[1]->val_str(&tmp) : &remove;
  1138.   uint remove_length;
  1139.   LINT_INIT(remove_length);
  1140.   if (!remove_str || (remove_length=remove_str->length()) == 0 ||
  1141.       remove_length > res->length())
  1142.     return res;
  1143.   char *ptr=(char*) res->ptr();
  1144.   char *end=ptr+res->length();
  1145. #ifdef USE_MB
  1146.   char *p=ptr;
  1147.   register uint32 l;
  1148. #endif
  1149.   if (remove_length == 1)
  1150.   {
  1151.     char chr=(*remove_str)[0];
  1152. #ifdef USE_MB
  1153.     if (use_mb(res->charset()))
  1154.     {
  1155.       while (ptr < end)
  1156.       {
  1157. if ((l=my_ismbchar(res->charset(), ptr,end))) ptr+=l,p=ptr;
  1158. else ++ptr;
  1159.       }
  1160.       ptr=p;
  1161.     }
  1162. #endif
  1163.     while (ptr != end  && end[-1] == chr)
  1164.       end--;
  1165.   }
  1166.   else
  1167.   {
  1168.     const char *r_ptr=remove_str->ptr();
  1169. #ifdef USE_MB
  1170.     if (use_mb(res->charset()))
  1171.     {
  1172.   loop:
  1173.       while (ptr + remove_length < end)
  1174.       {
  1175. if ((l=my_ismbchar(res->charset(), ptr,end))) ptr+=l;
  1176. else ++ptr;
  1177.       }
  1178.       if (ptr + remove_length == end && !memcmp(ptr,r_ptr,remove_length))
  1179.       {
  1180. end-=remove_length;
  1181. ptr=p;
  1182. goto loop;
  1183.       }
  1184.     }
  1185.     else
  1186. #endif /* USE_MB */
  1187.     {
  1188.       while (ptr + remove_length <= end &&
  1189.      !memcmp(end-remove_length, r_ptr, remove_length))
  1190. end-=remove_length;
  1191.     }
  1192.   }
  1193.   if (end == res->ptr()+res->length())
  1194.     return res;
  1195.   tmp_value.set(*res,0,(uint) (end-res->ptr()));
  1196.   return &tmp_value;
  1197. }
  1198. String *Item_func_trim::val_str(String *str)
  1199. {
  1200.   DBUG_ASSERT(fixed == 1);
  1201.   String *res  =args[0]->val_str(str);
  1202.   if ((null_value=args[0]->null_value))
  1203.     return 0; /* purecov: inspected */
  1204.   char buff[MAX_FIELD_WIDTH];
  1205.   String tmp(buff,sizeof(buff),res->charset());
  1206.   uint remove_length;
  1207.   LINT_INIT(remove_length);
  1208.   String *remove_str; /* The string to remove from res. */
  1209.   if (arg_count == 2)
  1210.   {
  1211.     remove_str= args[1]->val_str(&tmp);
  1212.     if ((null_value= args[1]->null_value))
  1213.       return 0;
  1214.   }
  1215.   else
  1216.     remove_str= &remove; /* Default value. */
  1217.   if (!remove_str || (remove_length=remove_str->length()) == 0 ||
  1218.       remove_length > res->length())
  1219.     return res;
  1220.   char *ptr=(char*) res->ptr();
  1221.   char *end=ptr+res->length();
  1222.   const char *r_ptr=remove_str->ptr();
  1223.   while (ptr+remove_length <= end && !memcmp(ptr,r_ptr,remove_length))
  1224.     ptr+=remove_length;
  1225. #ifdef USE_MB
  1226.   if (use_mb(res->charset()))
  1227.   {
  1228.     char *p=ptr;
  1229.     register uint32 l;
  1230.  loop:
  1231.     while (ptr + remove_length < end)
  1232.     {
  1233.       if ((l=my_ismbchar(res->charset(), ptr,end))) ptr+=l;
  1234.       else ++ptr;
  1235.     }
  1236.     if (ptr + remove_length == end && !memcmp(ptr,r_ptr,remove_length))
  1237.     {
  1238.       end-=remove_length;
  1239.       ptr=p;
  1240.       goto loop;
  1241.     }
  1242.     ptr=p;
  1243.   }
  1244.   else
  1245. #endif /* USE_MB */
  1246.   {
  1247.     while (ptr + remove_length <= end &&
  1248.    !memcmp(end-remove_length,r_ptr,remove_length))
  1249.       end-=remove_length;
  1250.   }
  1251.   if (ptr == res->ptr() && end == ptr+res->length())
  1252.     return res;
  1253.   tmp_value.set(*res,(uint) (ptr - res->ptr()),(uint) (end-ptr));
  1254.   return &tmp_value;
  1255. }
  1256. void Item_func_trim::fix_length_and_dec()
  1257. {
  1258.   max_length= args[0]->max_length;
  1259.   if (arg_count == 1)
  1260.   {
  1261.     collation.set(args[0]->collation);
  1262.     remove.set_charset(collation.collation);
  1263.     remove.set_ascii(" ",1);
  1264.   }
  1265.   else
  1266.   {
  1267.     Item *cargs[2];
  1268.     cargs[0]= args[1];
  1269.     cargs[1]= args[0];
  1270.     if (agg_arg_charsets(collation, cargs, 2, MY_COLL_CMP_CONV))
  1271.       return;
  1272.     args[0]= cargs[1];
  1273.     args[1]= cargs[0];
  1274.   }
  1275. }
  1276. /* Item_func_password */
  1277. String *Item_func_password::val_str(String *str)
  1278. {
  1279.   DBUG_ASSERT(fixed == 1);
  1280.   String *res= args[0]->val_str(str); 
  1281.   if ((null_value=args[0]->null_value))
  1282.     return 0;
  1283.   if (res->length() == 0)
  1284.     return &my_empty_string;
  1285.   make_scrambled_password(tmp_value, res->c_ptr());
  1286.   str->set(tmp_value, SCRAMBLED_PASSWORD_CHAR_LENGTH, res->charset());
  1287.   return str;
  1288. }
  1289. char *Item_func_password::alloc(THD *thd, const char *password)
  1290. {
  1291.   char *buff= (char *) thd->alloc(SCRAMBLED_PASSWORD_CHAR_LENGTH+1);
  1292.   if (buff)
  1293.     make_scrambled_password(buff, password);
  1294.   return buff;
  1295. }
  1296. /* Item_func_old_password */
  1297. String *Item_func_old_password::val_str(String *str)
  1298. {
  1299.   DBUG_ASSERT(fixed == 1);
  1300.   String *res= args[0]->val_str(str);
  1301.   if ((null_value=args[0]->null_value))
  1302.     return 0;
  1303.   if (res->length() == 0)
  1304.     return &my_empty_string;
  1305.   make_scrambled_password_323(tmp_value, res->c_ptr());
  1306.   str->set(tmp_value, SCRAMBLED_PASSWORD_CHAR_LENGTH_323, res->charset());
  1307.   return str;
  1308. }
  1309. char *Item_func_old_password::alloc(THD *thd, const char *password)
  1310. {
  1311.   char *buff= (char *) thd->alloc(SCRAMBLED_PASSWORD_CHAR_LENGTH_323+1);
  1312.   if (buff)
  1313.     make_scrambled_password_323(buff, password);
  1314.   return buff;
  1315. }
  1316. #define bin_to_ascii(c) ((c)>=38?((c)-38+'a'):(c)>=12?((c)-12+'A'):(c)+'.')
  1317. String *Item_func_encrypt::val_str(String *str)
  1318. {
  1319.   DBUG_ASSERT(fixed == 1);
  1320.   String *res  =args[0]->val_str(str);
  1321. #ifdef HAVE_CRYPT
  1322.   char salt[3],*salt_ptr;
  1323.   if ((null_value=args[0]->null_value))
  1324.     return 0;
  1325.   if (res->length() == 0)
  1326.     return &my_empty_string;
  1327.   if (arg_count == 1)
  1328.   { // generate random salt
  1329.     time_t timestamp=current_thd->query_start();
  1330.     salt[0] = bin_to_ascii( (ulong) timestamp & 0x3f);
  1331.     salt[1] = bin_to_ascii(( (ulong) timestamp >> 5) & 0x3f);
  1332.     salt[2] = 0;
  1333.     salt_ptr=salt;
  1334.   }
  1335.   else
  1336.   { // obtain salt from the first two bytes
  1337.     String *salt_str=args[1]->val_str(&tmp_value);
  1338.     if ((null_value= (args[1]->null_value || salt_str->length() < 2)))
  1339.       return 0;
  1340.     salt_ptr= salt_str->c_ptr();
  1341.   }
  1342.   pthread_mutex_lock(&LOCK_crypt);
  1343.   char *tmp= crypt(res->c_ptr(),salt_ptr);
  1344.   if (!tmp)
  1345.   {
  1346.     pthread_mutex_unlock(&LOCK_crypt);
  1347.     null_value= 1;
  1348.     return 0;
  1349.   }
  1350.   str->set(tmp,(uint) strlen(tmp),res->charset());
  1351.   str->copy();
  1352.   pthread_mutex_unlock(&LOCK_crypt);
  1353.   return str;
  1354. #else
  1355.   null_value=1;
  1356.   return 0;
  1357. #endif /* HAVE_CRYPT */
  1358. }
  1359. void Item_func_encode::fix_length_and_dec()
  1360. {
  1361.   max_length=args[0]->max_length;
  1362.   maybe_null=args[0]->maybe_null;
  1363.   collation.set(&my_charset_bin);
  1364. }
  1365. String *Item_func_encode::val_str(String *str)
  1366. {
  1367.   DBUG_ASSERT(fixed == 1);
  1368.   String *res;
  1369.   if (!(res=args[0]->val_str(str)))
  1370.   {
  1371.     null_value=1; /* purecov: inspected */
  1372.     return 0; /* purecov: inspected */
  1373.   }
  1374.   null_value=0;
  1375.   res=copy_if_not_alloced(str,res,res->length());
  1376.   sql_crypt.init();
  1377.   sql_crypt.encode((char*) res->ptr(),res->length());
  1378.   res->set_charset(&my_charset_bin);
  1379.   return res;
  1380. }
  1381. String *Item_func_decode::val_str(String *str)
  1382. {
  1383.   DBUG_ASSERT(fixed == 1);
  1384.   String *res;
  1385.   if (!(res=args[0]->val_str(str)))
  1386.   {
  1387.     null_value=1; /* purecov: inspected */
  1388.     return 0; /* purecov: inspected */
  1389.   }
  1390.   null_value=0;
  1391.   res=copy_if_not_alloced(str,res,res->length());
  1392.   sql_crypt.init();
  1393.   sql_crypt.decode((char*) res->ptr(),res->length());
  1394.   return res;
  1395. }
  1396. Item *Item_func_sysconst::safe_charset_converter(CHARSET_INFO *tocs)
  1397. {
  1398.   Item_string *conv;
  1399.   uint conv_errors;
  1400.   String tmp, cstr, *ostr= val_str(&tmp);
  1401.   cstr.copy(ostr->ptr(), ostr->length(), ostr->charset(), tocs, &conv_errors);
  1402.   if (conv_errors || !(conv= new Item_string(cstr.ptr(), cstr.length(),
  1403.                                              cstr.charset(),
  1404.                                              collation.derivation)))
  1405.   {
  1406.     return NULL;
  1407.   }
  1408.   conv->str_value.copy();
  1409.   conv->str_value.shrink_to_length();
  1410.   return conv;
  1411. }
  1412. String *Item_func_database::val_str(String *str)
  1413. {
  1414.   DBUG_ASSERT(fixed == 1);
  1415.   THD *thd= current_thd;
  1416.   if (!thd->db)
  1417.   {
  1418.     null_value= 1;
  1419.     return 0;
  1420.   }
  1421.   else
  1422.     str->copy((const char*) thd->db,(uint) strlen(thd->db),system_charset_info);
  1423.   return str;
  1424. }
  1425. // TODO: make USER() replicate properly (currently it is replicated to "")
  1426. String *Item_func_user::val_str(String *str)
  1427. {
  1428.   DBUG_ASSERT(fixed == 1);
  1429.   THD          *thd=current_thd;
  1430.   CHARSET_INFO *cs= system_charset_info;
  1431.   const char   *host= thd->host_or_ip;
  1432.   uint res_length;
  1433.   // For system threads (e.g. replication SQL thread) user may be empty
  1434.   if (!thd->user)
  1435.     return &my_empty_string;
  1436.   res_length= (strlen(thd->user)+strlen(host)+2) * cs->mbmaxlen;
  1437.   if (str->alloc(res_length))
  1438.   {
  1439.     null_value=1;
  1440.     return 0;
  1441.   }
  1442.   res_length=cs->cset->snprintf(cs, (char*)str->ptr(), res_length, "%s@%s",
  1443.   thd->user, host);
  1444.   str->length(res_length);
  1445.   str->set_charset(cs);
  1446.   return str;
  1447. }
  1448. void Item_func_soundex::fix_length_and_dec()
  1449. {
  1450.   collation.set(args[0]->collation);
  1451.   max_length=args[0]->max_length;
  1452.   set_if_bigger(max_length,4);
  1453. }
  1454. /*
  1455.   If alpha, map input letter to soundex code.
  1456.   If not alpha and remove_garbage is set then skip to next char
  1457.   else return 0
  1458. */
  1459. static char soundex_toupper(char ch)
  1460. {
  1461.   return (ch >= 'a' && ch <= 'z') ? ch - 'a' + 'A' : ch;
  1462. }
  1463. static char get_scode(char *ptr)
  1464. {
  1465.   uchar ch= soundex_toupper(*ptr);
  1466.   if (ch < 'A' || ch > 'Z')
  1467.   {
  1468. // Thread extended alfa (country spec)
  1469.     return '0'; // as vokal
  1470.   }
  1471.   return(soundex_map[ch-'A']);
  1472. }
  1473. String *Item_func_soundex::val_str(String *str)
  1474. {
  1475.   DBUG_ASSERT(fixed == 1);
  1476.   String *res  =args[0]->val_str(str);
  1477.   char last_ch,ch;
  1478.   CHARSET_INFO *cs= collation.collation;
  1479.   if ((null_value=args[0]->null_value))
  1480.     return 0; /* purecov: inspected */
  1481.   if (tmp_value.alloc(max(res->length(),4)))
  1482.     return str; /* purecov: inspected */
  1483.   char *to= (char *) tmp_value.ptr();
  1484.   char *from= (char *) res->ptr(), *end=from+res->length();
  1485.   tmp_value.set_charset(cs);
  1486.   
  1487.   while (from != end && !my_isalpha(cs,*from)) // Skip pre-space
  1488.     from++; /* purecov: inspected */
  1489.   if (from == end)
  1490.     return &my_empty_string; // No alpha characters.
  1491.   *to++ = soundex_toupper(*from); // Copy first letter
  1492.   last_ch = get_scode(from); // code of the first letter
  1493. // for the first 'double-letter check.
  1494. // Loop on input letters until
  1495. // end of input (null) or output
  1496. // letter code count = 3
  1497.   for (from++ ; from < end ; from++)
  1498.   {
  1499.     if (!my_isalpha(cs,*from))
  1500.       continue;
  1501.     ch=get_scode(from);
  1502.     if ((ch != '0') && (ch != last_ch)) // if not skipped or double
  1503.     {
  1504.        *to++ = ch; // letter, copy to output
  1505.        last_ch = ch; // save code of last input letter
  1506.     } // for next double-letter check
  1507.   }
  1508.   for (end=(char*) tmp_value.ptr()+4 ; to < end ; to++)
  1509.     *to = '0';
  1510.   *to=0; // end string
  1511.   tmp_value.length((uint) (to-tmp_value.ptr()));
  1512.   return &tmp_value;
  1513. }
  1514. /*
  1515. ** Change a number to format '3,333,333,333.000'
  1516. ** This should be 'internationalized' sometimes.
  1517. */
  1518. Item_func_format::Item_func_format(Item *org,int dec) :Item_str_func(org)
  1519. {
  1520.   decimals=(uint) set_zone(dec,0,30);
  1521. }
  1522. /*
  1523.   TODO: This needs to be fixed for multi-byte character set where numbers
  1524.   are stored in more than one byte
  1525. */
  1526. String *Item_func_format::val_str(String *str)
  1527. {
  1528.   DBUG_ASSERT(fixed == 1);
  1529.   double nr =args[0]->val();
  1530.   int diff;
  1531.   uint32 length, str_length;
  1532.   uint dec;
  1533.   if ((null_value=args[0]->null_value))
  1534.     return 0; /* purecov: inspected */
  1535.   dec= decimals ? decimals+1 : 0;
  1536.   /* Here default_charset() is right as this is not an automatic conversion */
  1537.   str->set(nr,decimals, default_charset());
  1538.   if (isnan(nr))
  1539.     return str;
  1540.   str_length=str->length();
  1541.   if (nr < 0)
  1542.     str_length--; // Don't count sign
  1543.   /* We need this test to handle 'nan' values */
  1544.   if (str_length >= dec+4)
  1545.   {
  1546.     char *tmp,*pos;
  1547.     length= str->length()+(diff= (int)(str_length- dec-1)/3);
  1548.     str= copy_if_not_alloced(&tmp_str,str,length);
  1549.     str->length(length);
  1550.     tmp= (char*) str->ptr()+length - dec-1;
  1551.     for (pos= (char*) str->ptr()+length-1; pos != tmp; pos--)
  1552.       pos[0]= pos[-diff];
  1553.     while (diff)
  1554.     {
  1555.       *pos= *(pos - diff);
  1556.       pos--;
  1557.       *pos= *(pos - diff);
  1558.       pos--;
  1559.       *pos= *(pos - diff);
  1560.       pos--;
  1561.       pos[0]=',';
  1562.       pos--;
  1563.       diff--;
  1564.     }
  1565.   }
  1566.   return str;
  1567. }
  1568. void Item_func_format::print(String *str)
  1569. {
  1570.   str->append("format(", 7);
  1571.   args[0]->print(str);
  1572.   str->append(',');  
  1573.   // my_charset_bin is good enough for numbers
  1574.   char buffer[20];
  1575.   String st(buffer, sizeof(buffer), &my_charset_bin);
  1576.   st.set((ulonglong)decimals, &my_charset_bin);
  1577.   str->append(st);
  1578.   str->append(')');
  1579. }
  1580. void Item_func_elt::fix_length_and_dec()
  1581. {
  1582.   max_length=0;
  1583.   decimals=0;
  1584.   if (agg_arg_charsets(collation, args+1, arg_count-1, MY_COLL_ALLOW_CONV))
  1585.     return;
  1586.   for (uint i= 1 ; i < arg_count ; i++)
  1587.   {
  1588.     set_if_bigger(max_length,args[i]->max_length);
  1589.     set_if_bigger(decimals,args[i]->decimals);
  1590.   }
  1591.   maybe_null=1; // NULL if wrong first arg
  1592. }
  1593. double Item_func_elt::val()
  1594. {
  1595.   DBUG_ASSERT(fixed == 1);
  1596.   uint tmp;
  1597.   null_value=1;
  1598.   if ((tmp=(uint) args[0]->val_int()) == 0 || tmp >= arg_count)
  1599.     return 0.0;
  1600.   double result= args[tmp]->val();
  1601.   null_value= args[tmp]->null_value;
  1602.   return result;
  1603. }
  1604. longlong Item_func_elt::val_int()
  1605. {
  1606.   DBUG_ASSERT(fixed == 1);
  1607.   uint tmp;
  1608.   null_value=1;
  1609.   if ((tmp=(uint) args[0]->val_int()) == 0 || tmp >= arg_count)
  1610.     return 0;
  1611.   longlong result= args[tmp]->val_int();
  1612.   null_value= args[tmp]->null_value;
  1613.   return result;
  1614. }
  1615. String *Item_func_elt::val_str(String *str)
  1616. {
  1617.   DBUG_ASSERT(fixed == 1);
  1618.   uint tmp;
  1619.   null_value=1;
  1620.   if ((tmp=(uint) args[0]->val_int()) == 0 || tmp >= arg_count)
  1621.     return NULL;
  1622.   String *result= args[tmp]->val_str(str);
  1623.   if (result)
  1624.     result->set_charset(collation.collation);
  1625.   null_value= args[tmp]->null_value;
  1626.   return result;
  1627. }
  1628. void Item_func_make_set::split_sum_func(THD *thd, Item **ref_pointer_array,
  1629. List<Item> &fields)
  1630. {
  1631.   item->split_sum_func2(thd, ref_pointer_array, fields, &item);
  1632.   Item_str_func::split_sum_func(thd, ref_pointer_array, fields);
  1633. }
  1634. void Item_func_make_set::fix_length_and_dec()
  1635. {
  1636.   max_length=arg_count-1;
  1637.   if (agg_arg_charsets(collation, args, arg_count, MY_COLL_ALLOW_CONV))
  1638.     return;
  1639.   
  1640.   for (uint i=0 ; i < arg_count ; i++)
  1641.     max_length+=args[i]->max_length;
  1642.   
  1643.   used_tables_cache|=   item->used_tables();
  1644.   not_null_tables_cache&= item->not_null_tables();
  1645.   const_item_cache&=   item->const_item();
  1646.   with_sum_func= with_sum_func || item->with_sum_func;
  1647. }
  1648. void Item_func_make_set::update_used_tables()
  1649. {
  1650.   Item_func::update_used_tables();
  1651.   item->update_used_tables();
  1652.   used_tables_cache|=item->used_tables();
  1653.   const_item_cache&=item->const_item();
  1654. }
  1655. String *Item_func_make_set::val_str(String *str)
  1656. {
  1657.   DBUG_ASSERT(fixed == 1);
  1658.   ulonglong bits;
  1659.   bool first_found=0;
  1660.   Item **ptr=args;
  1661.   String *result=&my_empty_string;
  1662.   bits=item->val_int();
  1663.   if ((null_value=item->null_value))
  1664.     return NULL;
  1665.   if (arg_count < 64)
  1666.     bits &= ((ulonglong) 1 << arg_count)-1;
  1667.   for (; bits; bits >>= 1, ptr++)
  1668.   {
  1669.     if (bits & 1)
  1670.     {
  1671.       String *res= (*ptr)->val_str(str);
  1672.       if (res) // Skip nulls
  1673.       {
  1674. if (!first_found)
  1675. { // First argument
  1676.   first_found=1;
  1677.   if (res != str)
  1678.     result=res; // Use original string
  1679.   else
  1680.   {
  1681.     if (tmp_str.copy(*res)) // Don't use 'str'
  1682.       return &my_empty_string;
  1683.     result= &tmp_str;
  1684.   }
  1685. }
  1686. else
  1687. {
  1688.   if (result != &tmp_str)
  1689.   { // Copy data to tmp_str
  1690.     if (tmp_str.alloc(result->length()+res->length()+1) ||
  1691. tmp_str.copy(*result))
  1692.       return &my_empty_string;
  1693.     result= &tmp_str;
  1694.   }
  1695.   if (tmp_str.append(',') || tmp_str.append(*res))
  1696.     return &my_empty_string;
  1697. }
  1698.       }
  1699.     }
  1700.   }
  1701.   return result;
  1702. }
  1703. void Item_func_make_set::print(String *str)
  1704. {
  1705.   str->append("make_set(", 9);
  1706.   item->print(str);
  1707.   if (arg_count)
  1708.   {
  1709.     str->append(',');
  1710.     print_args(str, 0);
  1711.   }
  1712.   str->append(')');
  1713. }
  1714. String *Item_func_char::val_str(String *str)
  1715. {
  1716.   DBUG_ASSERT(fixed == 1);
  1717.   str->length(0);
  1718.   for (uint i=0 ; i < arg_count ; i++)
  1719.   {
  1720.     int32 num=(int32) args[i]->val_int();
  1721.     if (!args[i]->null_value)
  1722.     {
  1723. #ifdef USE_MB
  1724.       if (use_mb(collation.collation))
  1725.       {
  1726.         if (num&0xFF000000L) {
  1727.            str->append((char)(num>>24));
  1728.            goto b2;
  1729.         } else if (num&0xFF0000L) {
  1730. b2:        str->append((char)(num>>16));
  1731.            goto b1;
  1732.         } else if (num&0xFF00L) {
  1733. b1:        str->append((char)(num>>8));
  1734.         }
  1735.       }
  1736. #endif
  1737.       str->append((char)num);
  1738.     }
  1739.   }
  1740.   str->set_charset(collation.collation);
  1741.   str->realloc(str->length()); // Add end 0 (for Purify)
  1742.   return str;
  1743. }
  1744. inline String* alloc_buffer(String *res,String *str,String *tmp_value,
  1745.     ulong length)
  1746. {
  1747.   if (res->alloced_length() < length)
  1748.   {
  1749.     if (str->alloced_length() >= length)
  1750.     {
  1751.       (void) str->copy(*res);
  1752.       str->length(length);
  1753.       return str;
  1754.     }
  1755.     if (tmp_value->alloc(length))
  1756.       return 0;
  1757.     (void) tmp_value->copy(*res);
  1758.     tmp_value->length(length);
  1759.     return tmp_value;
  1760.   }
  1761.   res->length(length);
  1762.   return res;
  1763. }
  1764. void Item_func_repeat::fix_length_and_dec()
  1765. {
  1766.   collation.set(args[0]->collation);
  1767.   if (args[1]->const_item())
  1768.   {
  1769.     ulonglong max_result_length= ((ulonglong) args[0]->max_length *
  1770.                                   args[1]->val_int());
  1771.     if (max_result_length >= MAX_BLOB_WIDTH)
  1772.     {
  1773.       max_result_length= MAX_BLOB_WIDTH;
  1774.       maybe_null= 1;
  1775.     }
  1776.     max_length= (ulong) max_result_length;
  1777.   }
  1778.   else
  1779.   {
  1780.     max_length= MAX_BLOB_WIDTH;
  1781.     maybe_null= 1;
  1782.   }
  1783. }
  1784. /*
  1785. ** Item_func_repeat::str is carefully written to avoid reallocs
  1786. ** as much as possible at the cost of a local buffer
  1787. */
  1788. String *Item_func_repeat::val_str(String *str)
  1789. {
  1790.   DBUG_ASSERT(fixed == 1);
  1791.   uint length,tot_length;
  1792.   char *to;
  1793.   long count= (long) args[1]->val_int();
  1794.   String *res =args[0]->val_str(str);
  1795.   if (args[0]->null_value || args[1]->null_value)
  1796.     goto err; // string and/or delim are null
  1797.   null_value=0;
  1798.   if (count <= 0) // For nicer SQL code
  1799.     return &my_empty_string;
  1800.   if (count == 1) // To avoid reallocs
  1801.     return res;
  1802.   length=res->length();
  1803.   // Safe length check
  1804.   if (length > current_thd->variables.max_allowed_packet/count)
  1805.   {
  1806.     push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
  1807. ER_WARN_ALLOWED_PACKET_OVERFLOWED,
  1808. ER(ER_WARN_ALLOWED_PACKET_OVERFLOWED),
  1809. func_name(), current_thd->variables.max_allowed_packet);
  1810.     goto err;
  1811.   }
  1812.   tot_length= length*(uint) count;
  1813.   if (!(res= alloc_buffer(res,str,&tmp_value,tot_length)))
  1814.     goto err;
  1815.   to=(char*) res->ptr()+length;
  1816.   while (--count)
  1817.   {
  1818.     memcpy(to,res->ptr(),length);
  1819.     to+=length;
  1820.   }
  1821.   return (res);
  1822. err:
  1823.   null_value=1;
  1824.   return 0;
  1825. }
  1826. void Item_func_rpad::fix_length_and_dec()
  1827. {
  1828.   Item *cargs[2];
  1829.   cargs[0]= args[0];
  1830.   cargs[1]= args[2];
  1831.   if (agg_arg_charsets(collation, cargs, 2, MY_COLL_ALLOW_CONV))
  1832.     return;
  1833.   args[0]= cargs[0];
  1834.   args[2]= cargs[1];
  1835.   if (args[1]->const_item())
  1836.   {
  1837.     ulonglong length= ((ulonglong) args[1]->val_int() *
  1838.                        collation.collation->mbmaxlen);
  1839.     if (length >= MAX_BLOB_WIDTH)
  1840.     {
  1841.       length= MAX_BLOB_WIDTH;
  1842.       maybe_null= 1;
  1843.     }
  1844.     max_length= (ulong) length;
  1845.   }
  1846.   else
  1847.   {
  1848.     max_length= MAX_BLOB_WIDTH;
  1849.     maybe_null= 1;
  1850.   }
  1851. }
  1852. String *Item_func_rpad::val_str(String *str)
  1853. {
  1854.   DBUG_ASSERT(fixed == 1);
  1855.   uint32 res_byte_length,res_char_length,pad_char_length,pad_byte_length;
  1856.   char *to;
  1857.   const char *ptr_pad;
  1858.   int32 count= (int32) args[1]->val_int();
  1859.   int32 byte_count= count * collation.collation->mbmaxlen;
  1860.   String *res =args[0]->val_str(str);
  1861.   String *rpad = args[2]->val_str(&rpad_str);
  1862.   if (!res || args[1]->null_value || !rpad || count < 0)
  1863.     goto err;
  1864.   null_value=0;
  1865.   if (count <= (int32) (res_char_length=res->numchars()))
  1866.   { // String to pad is big enough
  1867.     res->length(res->charpos(count)); // Shorten result if longer
  1868.     return (res);
  1869.   }
  1870.   pad_char_length= rpad->numchars();
  1871.   if ((ulong) byte_count > current_thd->variables.max_allowed_packet)
  1872.   {
  1873.     push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
  1874. ER_WARN_ALLOWED_PACKET_OVERFLOWED,
  1875. ER(ER_WARN_ALLOWED_PACKET_OVERFLOWED),
  1876. func_name(), current_thd->variables.max_allowed_packet);
  1877.     goto err;
  1878.   }
  1879.   if(args[2]->null_value || !pad_char_length)
  1880.     goto err;
  1881.   res_byte_length= res->length(); /* Must be done before alloc_buffer */
  1882.   if (!(res= alloc_buffer(res,str,&tmp_value,byte_count)))
  1883.     goto err;
  1884.   to= (char*) res->ptr()+res_byte_length;
  1885.   ptr_pad=rpad->ptr();
  1886.   pad_byte_length= rpad->length();
  1887.   count-= res_char_length;
  1888.   for ( ; (uint32) count > pad_char_length; count-= pad_char_length)
  1889.   {
  1890.     memcpy(to,ptr_pad,pad_byte_length);
  1891.     to+= pad_byte_length;
  1892.   }
  1893.   if (count)
  1894.   {
  1895.     pad_byte_length= rpad->charpos(count);
  1896.     memcpy(to,ptr_pad,(size_t) pad_byte_length);
  1897.     to+= pad_byte_length;
  1898.   }
  1899.   res->length(to- (char*) res->ptr());
  1900.   return (res);
  1901.  err:
  1902.   null_value=1;
  1903.   return 0;
  1904. }
  1905. void Item_func_lpad::fix_length_and_dec()
  1906. {
  1907.   Item *cargs[2];
  1908.   cargs[0]= args[0];
  1909.   cargs[1]= args[2];
  1910.   if (agg_arg_charsets(collation, cargs, 2, MY_COLL_ALLOW_CONV))
  1911.     return;
  1912.   args[0]= cargs[0];
  1913.   args[2]= cargs[1];
  1914.   
  1915.   if (args[1]->const_item())
  1916.   {
  1917.     ulonglong length= ((ulonglong) args[1]->val_int() *
  1918.                        collation.collation->mbmaxlen);
  1919.     if (length >= MAX_BLOB_WIDTH)
  1920.     {
  1921.       length= MAX_BLOB_WIDTH;
  1922.       maybe_null= 1;
  1923.     }
  1924.     max_length= (ulong) length;
  1925.   }
  1926.   else
  1927.   {
  1928.     max_length= MAX_BLOB_WIDTH;
  1929.     maybe_null= 1;
  1930.   }
  1931. }
  1932. String *Item_func_lpad::val_str(String *str)
  1933. {
  1934.   DBUG_ASSERT(fixed == 1);
  1935.   uint32 res_char_length,pad_char_length;
  1936.   ulong count= (long) args[1]->val_int(), byte_count;
  1937.   String *res= args[0]->val_str(&tmp_value);
  1938.   String *pad= args[2]->val_str(&lpad_str);
  1939.   if (!res || args[1]->null_value || !pad)
  1940.     goto err;
  1941.   null_value=0;
  1942.   res_char_length= res->numchars();
  1943.   if (count <= res_char_length)
  1944.   {
  1945.     res->length(res->charpos(count));
  1946.     return res;
  1947.   }
  1948.   
  1949.   pad_char_length= pad->numchars();
  1950.   byte_count= count * collation.collation->mbmaxlen;
  1951.   
  1952.   if (byte_count > current_thd->variables.max_allowed_packet)
  1953.   {
  1954.     push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
  1955. ER_WARN_ALLOWED_PACKET_OVERFLOWED,
  1956. ER(ER_WARN_ALLOWED_PACKET_OVERFLOWED),
  1957. func_name(), current_thd->variables.max_allowed_packet);
  1958.     goto err;
  1959.   }
  1960.   if (args[2]->null_value || !pad_char_length || str->alloc(byte_count))
  1961.     goto err;
  1962.   
  1963.   str->length(0);
  1964.   str->set_charset(collation.collation);
  1965.   count-= res_char_length;
  1966.   while (count >= pad_char_length)
  1967.   {
  1968.     str->append(*pad);
  1969.     count-= pad_char_length;
  1970.   }
  1971.   if (count > 0)
  1972.     str->append(pad->ptr(), pad->charpos(count), collation.collation);
  1973.   str->append(*res);
  1974.   null_value= 0;
  1975.   return str;
  1976. err:
  1977.   null_value= 1;
  1978.   return 0;
  1979. }
  1980. String *Item_func_conv::val_str(String *str)
  1981. {
  1982.   DBUG_ASSERT(fixed == 1);
  1983.   String *res= args[0]->val_str(str);
  1984.   char *endptr,ans[65],*ptr;
  1985.   longlong dec;
  1986.   int from_base= (int) args[1]->val_int();
  1987.   int to_base= (int) args[2]->val_int();
  1988.   int err;
  1989.   if (args[0]->null_value || args[1]->null_value || args[2]->null_value ||
  1990.       abs(to_base) > 36 || abs(to_base) < 2 ||
  1991.       abs(from_base) > 36 || abs(from_base) < 2 || !(res->length()))
  1992.   {
  1993.     null_value=1;
  1994.     return 0;
  1995.   }
  1996.   null_value=0;
  1997.   unsigned_flag= !(from_base < 0);
  1998.   if (from_base < 0)
  1999.     dec= my_strntoll(res->charset(),res->ptr(),res->length(),-from_base,&endptr,&err);
  2000.   else
  2001.     dec= (longlong) my_strntoull(res->charset(),res->ptr(),res->length(),from_base,&endptr,&err);
  2002.   ptr= longlong2str(dec,ans,to_base);
  2003.   if (str->copy(ans,(uint32) (ptr-ans), default_charset()))
  2004.     return &my_empty_string;
  2005.   return str;
  2006. }
  2007. String *Item_func_conv_charset::val_str(String *str)
  2008. {
  2009.   DBUG_ASSERT(fixed == 1);
  2010.   if (use_cached_value)
  2011.     return null_value ? 0 : &str_value;
  2012.   String *arg= args[0]->val_str(str);
  2013.   uint dummy_errors;
  2014.   if (!arg)
  2015.   {
  2016.     null_value=1;
  2017.     return 0;
  2018.   }
  2019.   null_value= str_value.copy(arg->ptr(),arg->length(),arg->charset(),
  2020.                              conv_charset, &dummy_errors);
  2021.   return null_value ? 0 : &str_value;
  2022. }
  2023. void Item_func_conv_charset::fix_length_and_dec()
  2024. {
  2025.   collation.set(conv_charset, DERIVATION_IMPLICIT);
  2026.   max_length = args[0]->max_length*conv_charset->mbmaxlen;
  2027. }
  2028. void Item_func_conv_charset::print(String *str)
  2029. {
  2030.   str->append("convert(", 8);
  2031.   args[0]->print(str);
  2032.   str->append(" using ", 7);
  2033.   str->append(conv_charset->csname);
  2034.   str->append(')');
  2035. }
  2036. String *Item_func_set_collation::val_str(String *str)
  2037. {
  2038.   DBUG_ASSERT(fixed == 1);
  2039.   str=args[0]->val_str(str);
  2040.   if ((null_value=args[0]->null_value))
  2041.     return 0;
  2042.   str->set_charset(collation.collation);
  2043.   return str;
  2044. }
  2045. void Item_func_set_collation::fix_length_and_dec()
  2046. {
  2047.   CHARSET_INFO *set_collation;
  2048.   const char *colname;
  2049.   String tmp, *str= args[1]->val_str(&tmp);
  2050.   colname= str->c_ptr();
  2051.   if (colname == binary_keyword)
  2052.     set_collation= get_charset_by_csname(args[0]->collation.collation->csname,
  2053.  MY_CS_BINSORT,MYF(0));
  2054.   else
  2055.   {
  2056.     if (!(set_collation= get_charset_by_name(colname,MYF(0))))
  2057.     {
  2058.       my_error(ER_UNKNOWN_COLLATION, MYF(0), colname);
  2059.       return;
  2060.     }
  2061.   }
  2062.   if (!set_collation || 
  2063.       !my_charset_same(args[0]->collation.collation,set_collation))
  2064.   {
  2065.     my_error(ER_COLLATION_CHARSET_MISMATCH, MYF(0), 
  2066.       colname,args[0]->collation.collation->csname);
  2067.     return;
  2068.   }
  2069.   collation.set(set_collation, DERIVATION_EXPLICIT);
  2070.   max_length= args[0]->max_length;
  2071. }
  2072. bool Item_func_set_collation::eq(const Item *item, bool binary_cmp) const
  2073. {
  2074.   /* Assume we don't have rtti */
  2075.   if (this == item)
  2076.     return 1;
  2077.   if (item->type() != FUNC_ITEM)
  2078.     return 0;
  2079.   Item_func *item_func=(Item_func*) item;
  2080.   if (arg_count != item_func->arg_count ||
  2081.       func_name() != item_func->func_name())
  2082.     return 0;
  2083.   Item_func_set_collation *item_func_sc=(Item_func_set_collation*) item;
  2084.   if (collation.collation != item_func_sc->collation.collation)
  2085.     return 0;
  2086.   for (uint i=0; i < arg_count ; i++)
  2087.     if (!args[i]->eq(item_func_sc->args[i], binary_cmp))
  2088.       return 0;
  2089.   return 1;
  2090. }
  2091. String *Item_func_charset::val_str(String *str)
  2092. {
  2093.   DBUG_ASSERT(fixed == 1);
  2094.   uint dummy_errors;
  2095.   CHARSET_INFO *cs= args[0]->collation.collation; 
  2096.   null_value= 0;
  2097.   str->copy(cs->csname, strlen(cs->csname),
  2098.     &my_charset_latin1, collation.collation, &dummy_errors);
  2099.   return str;
  2100. }
  2101. String *Item_func_collation::val_str(String *str)
  2102. {
  2103.   DBUG_ASSERT(fixed == 1);
  2104.   uint dummy_errors;
  2105.   CHARSET_INFO *cs= args[0]->collation.collation; 
  2106.   null_value= 0;
  2107.   str->copy(cs->name, strlen(cs->name),
  2108.     &my_charset_latin1, collation.collation, &dummy_errors);
  2109.   return str;
  2110. }
  2111. String *Item_func_hex::val_str(String *str)
  2112. {
  2113.   DBUG_ASSERT(fixed == 1);
  2114.   if (args[0]->result_type() != STRING_RESULT)
  2115.   {
  2116.     ulonglong dec;
  2117.     char ans[65],*ptr;
  2118.     /* Return hex of unsigned longlong value */
  2119.     if (args[0]->result_type() == REAL_RESULT)
  2120.     {
  2121.       double val= args[0]->val();
  2122.       if ((val <= (double) LONGLONG_MIN) || 
  2123.           (val >= (double) (ulonglong) ULONGLONG_MAX))
  2124.         dec=  ~(longlong) 0;
  2125.       else
  2126.         dec= (ulonglong) (val + (val > 0 ? 0.5 : -0.5));
  2127.     }
  2128.     else
  2129.       dec= (ulonglong) args[0]->val_int();
  2130.     if ((null_value= args[0]->null_value))
  2131.       return 0;
  2132.     ptr= longlong2str(dec,ans,16);
  2133.     if (str->copy(ans,(uint32) (ptr-ans),default_charset()))
  2134.       return &my_empty_string; // End of memory
  2135.     return str;
  2136.   }
  2137.   /* Convert given string to a hex string, character by character */
  2138.   String *res= args[0]->val_str(str);
  2139.   const char *from, *end;
  2140.   char *to;
  2141.   if (!res || tmp_value.alloc(res->length()*2))
  2142.   {
  2143.     null_value=1;
  2144.     return 0;
  2145.   }
  2146.   null_value=0;
  2147.   tmp_value.length(res->length()*2);
  2148.   for (from=res->ptr(), end=from+res->length(), to= (char*) tmp_value.ptr();
  2149.        from < end ;
  2150.        from++, to+=2)
  2151.   {
  2152.     uint tmp=(uint) (uchar) *from;
  2153.     to[0]=_dig_vec_upper[tmp >> 4];
  2154.     to[1]=_dig_vec_upper[tmp & 15];
  2155.   }
  2156.   return &tmp_value;
  2157. }
  2158.   /* Convert given hex string to a binary string */
  2159. String *Item_func_unhex::val_str(String *str)
  2160. {
  2161.   const char *from, *end;
  2162.   char *to;
  2163.   String *res;
  2164.   uint length;
  2165.   DBUG_ASSERT(fixed == 1);
  2166.   res= args[0]->val_str(str);
  2167.   if (!res || tmp_value.alloc(length= (1+res->length())/2))
  2168.   {
  2169.     null_value=1;
  2170.     return 0;
  2171.   }
  2172.   from= res->ptr();
  2173.   null_value= 0;
  2174.   tmp_value.length(length);
  2175.   to= (char*) tmp_value.ptr();
  2176.   if (res->length() % 2)
  2177.   {
  2178.     int hex_char;
  2179.     *to++= hex_char= hexchar_to_int(*from++);
  2180.     if ((null_value= (hex_char == -1)))
  2181.       return 0;
  2182.   }
  2183.   for (end=res->ptr()+res->length(); from < end ; from+=2, to++)
  2184.   {
  2185.     int hex_char;
  2186.     *to= (hex_char= hexchar_to_int(from[0])) << 4;
  2187.     if ((null_value= (hex_char == -1)))
  2188.       return 0;
  2189.     *to|= hex_char= hexchar_to_int(from[1]);
  2190.     if ((null_value= (hex_char == -1)))
  2191.       return 0;
  2192.   }
  2193.   return &tmp_value;
  2194. }
  2195. void Item_func_binary::print(String *str)
  2196. {
  2197.   str->append("cast(", 5);
  2198.   args[0]->print(str);
  2199.   str->append(" as binary)", 11);
  2200. }
  2201. #include <my_dir.h> // For my_stat
  2202. String *Item_load_file::val_str(String *str)
  2203. {
  2204.   DBUG_ASSERT(fixed == 1);
  2205.   String *file_name;
  2206.   File file;
  2207.   MY_STAT stat_info;
  2208.   char path[FN_REFLEN];
  2209.   DBUG_ENTER("load_file");
  2210.   if (!(file_name= args[0]->val_str(str))
  2211. #ifndef NO_EMBEDDED_ACCESS_CHECKS
  2212.       || !(current_thd->master_access & FILE_ACL)
  2213. #endif
  2214.       )
  2215.     goto err;
  2216.   (void) fn_format(path, file_name->c_ptr(), mysql_real_data_home, "",
  2217.    MY_RELATIVE_PATH | MY_UNPACK_FILENAME);
  2218.   if (!my_stat(path, &stat_info, MYF(MY_WME)))
  2219.     goto err;
  2220.   if (!(stat_info.st_mode & S_IROTH))
  2221.   {
  2222.     /* my_error(ER_TEXTFILE_NOT_READABLE, MYF(0), file_name->c_ptr()); */
  2223.     goto err;
  2224.   }
  2225.   if (stat_info.st_size > (long) current_thd->variables.max_allowed_packet)
  2226.   {
  2227.     push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
  2228. ER_WARN_ALLOWED_PACKET_OVERFLOWED,
  2229. ER(ER_WARN_ALLOWED_PACKET_OVERFLOWED),
  2230. func_name(), current_thd->variables.max_allowed_packet);
  2231.     goto err;
  2232.   }
  2233.   if (tmp_value.alloc(stat_info.st_size))
  2234.     goto err;
  2235.   if ((file = my_open(file_name->c_ptr(), O_RDONLY, MYF(0))) < 0)
  2236.     goto err;
  2237.   if (my_read(file, (byte*) tmp_value.ptr(), stat_info.st_size, MYF(MY_NABP)))
  2238.   {
  2239.     my_close(file, MYF(0));
  2240.     goto err;
  2241.   }
  2242.   tmp_value.length(stat_info.st_size);
  2243.   my_close(file, MYF(0));
  2244.   null_value = 0;
  2245.   return &tmp_value;
  2246. err:
  2247.   null_value = 1;
  2248.   DBUG_RETURN(0);
  2249. }
  2250. String* Item_func_export_set::val_str(String* str)
  2251. {
  2252.   DBUG_ASSERT(fixed == 1);
  2253.   ulonglong the_set = (ulonglong) args[0]->val_int();
  2254.   String yes_buf, *yes;
  2255.   yes = args[1]->val_str(&yes_buf);
  2256.   String no_buf, *no;
  2257.   no = args[2]->val_str(&no_buf);
  2258.   String *sep = NULL, sep_buf ;
  2259.   uint num_set_values = 64;
  2260.   ulonglong mask = 0x1;
  2261.   str->length(0);
  2262.   str->set_charset(collation.collation);
  2263.   /* Check if some argument is a NULL value */
  2264.   if (args[0]->null_value || args[1]->null_value || args[2]->null_value)
  2265.   {
  2266.     null_value=1;
  2267.     return 0;
  2268.   }
  2269.   /*
  2270.     Arg count can only be 3, 4 or 5 here. This is guaranteed from the
  2271.     grammar for EXPORT_SET()
  2272.   */
  2273.   switch(arg_count) {
  2274.   case 5:
  2275.     num_set_values = (uint) args[4]->val_int();
  2276.     if (num_set_values > 64)
  2277.       num_set_values=64;
  2278.     if (args[4]->null_value)
  2279.     {
  2280.       null_value=1;
  2281.       return 0;
  2282.     }
  2283.     /* Fall through */
  2284.   case 4:
  2285.     if (!(sep = args[3]->val_str(&sep_buf))) // Only true if NULL
  2286.     {
  2287.       null_value=1;
  2288.       return 0;
  2289.     }
  2290.     break;
  2291.   case 3:
  2292.     sep_buf.set(",", 1, default_charset());
  2293.     sep = &sep_buf;
  2294.     break;
  2295.   default:
  2296.     DBUG_ASSERT(0); // cannot happen
  2297.   }
  2298.   null_value=0;
  2299.   for (uint i = 0; i < num_set_values; i++, mask = (mask << 1))
  2300.   {
  2301.     if (the_set & mask)
  2302.       str->append(*yes);
  2303.     else
  2304.       str->append(*no);
  2305.     if (i != num_set_values - 1)
  2306.       str->append(*sep);
  2307.   }
  2308.   return str;
  2309. }
  2310. void Item_func_export_set::fix_length_and_dec()
  2311. {
  2312.   uint length=max(args[1]->max_length,args[2]->max_length);
  2313.   uint sep_length=(arg_count > 3 ? args[3]->max_length : 1);
  2314.   max_length=length*64+sep_length*63;
  2315.   if (agg_arg_charsets(collation, args+1, min(4,arg_count)-1),
  2316.                        MY_COLL_ALLOW_CONV)
  2317.     return;
  2318. }
  2319. String* Item_func_inet_ntoa::val_str(String* str)
  2320. {
  2321.   DBUG_ASSERT(fixed == 1);
  2322.   uchar buf[8], *p;
  2323.   ulonglong n = (ulonglong) args[0]->val_int();
  2324.   char num[4];
  2325.   /*
  2326.     We do not know if args[0] is NULL until we have called
  2327.     some val function on it if args[0] is not a constant!
  2328.     Also return null if n > 255.255.255.255
  2329.   */
  2330.   if ((null_value= (args[0]->null_value || n > (ulonglong) LL(4294967295))))
  2331.     return 0; // Null value
  2332.   str->length(0);
  2333.   int4store(buf,n);
  2334.   /* Now we can assume little endian. */
  2335.   num[3]='.';
  2336.   for (p=buf+4 ; p-- > buf ; )
  2337.   {
  2338.     uint c = *p;
  2339.     uint n1,n2; // Try to avoid divisions
  2340.     n1= c / 100; // 100 digits
  2341.     c-= n1*100;
  2342.     n2= c / 10; // 10 digits
  2343.     c-=n2*10; // last digit
  2344.     num[0]=(char) n1+'0';
  2345.     num[1]=(char) n2+'0';
  2346.     num[2]=(char) c+'0';
  2347.     uint length=(n1 ? 4 : n2 ? 3 : 2); // Remove pre-zero
  2348.     (void) str->append(num+4-length,length);
  2349.   }
  2350.   str->length(str->length()-1); // Remove last '.';
  2351.   return str;
  2352. }
  2353. /*
  2354.   QUOTE() function returns argument string in single quotes suitable for
  2355.   using in a SQL statement.
  2356.   DESCRIPTION
  2357.     Adds a  before all characters that needs to be escaped in a SQL string.
  2358.     We also escape '^Z' (END-OF-FILE in windows) to avoid probelms when
  2359.     running commands from a file in windows.
  2360.     This function is very useful when you want to generate SQL statements
  2361.   NOTE
  2362.     QUOTE(NULL) returns the string 'NULL' (4 letters, without quotes).
  2363.   RETURN VALUES
  2364.     str Quoted string
  2365.     NULL Out of memory.
  2366. */
  2367. #define get_esc_bit(mask, num) (1 & (*((mask) + ((num) >> 3))) >> ((num) & 7))
  2368. String *Item_func_quote::val_str(String *str)
  2369. {
  2370.   DBUG_ASSERT(fixed == 1);
  2371.   /*
  2372.     Bit mask that has 1 for set for the position of the following characters:
  2373.     0, , ' and ^Z
  2374.   */
  2375.   static uchar escmask[32]=
  2376.   {
  2377.     0x01, 0x00, 0x00, 0x04, 0x80, 0x00, 0x00, 0x00,
  2378.     0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00,
  2379.     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  2380.     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
  2381.   };
  2382.   char *from, *to, *end, *start;
  2383.   String *arg= args[0]->val_str(str);
  2384.   uint arg_length, new_length;
  2385.   if (!arg) // Null argument
  2386.   {
  2387.     str->copy("NULL", 4, collation.collation); // Return the string 'NULL'
  2388.     null_value= 0;
  2389.     return str;
  2390.   }
  2391.   arg_length= arg->length();
  2392.   new_length= arg_length+2; /* for beginning and ending ' signs */
  2393.   for (from= (char*) arg->ptr(), end= from + arg_length; from < end; from++)
  2394.     new_length+= get_esc_bit(escmask, (uchar) *from);
  2395.   if (tmp_value.alloc(new_length))
  2396.     goto null;
  2397.   /*
  2398.     We replace characters from the end to the beginning
  2399.   */
  2400.   to= (char*) tmp_value.ptr() + new_length - 1;
  2401.   *to--= ''';
  2402.   for (start= (char*) arg->ptr(),end= start + arg_length; end-- != start; to--)
  2403.   {
  2404.     /*
  2405.       We can't use the bitmask here as we want to replace O and ^Z with 0
  2406.       and Z
  2407.     */
  2408.     switch (*end)  {
  2409.     case 0:
  2410.       *to--= '0';
  2411.       *to=   '\';
  2412.       break;
  2413.     case '32':
  2414.       *to--= 'Z';
  2415.       *to=   '\';
  2416.       break;
  2417.     case ''':
  2418.     case '\':
  2419.       *to--= *end;
  2420.       *to=   '\';
  2421.       break;
  2422.     default:
  2423.       *to= *end;
  2424.       break;
  2425.     }
  2426.   }
  2427.   *to= ''';
  2428.   tmp_value.length(new_length);
  2429.   tmp_value.set_charset(collation.collation);
  2430.   null_value= 0;
  2431.   return &tmp_value;
  2432. null:
  2433.   null_value= 1;
  2434.   return 0;
  2435. }
  2436. longlong Item_func_uncompressed_length::val_int()
  2437. {
  2438.   DBUG_ASSERT(fixed == 1);
  2439.   String *res= args[0]->val_str(&value);
  2440.   if (!res)
  2441.   {
  2442.     null_value=1;
  2443.     return 0; /* purecov: inspected */
  2444.   }
  2445.   null_value=0;
  2446.   if (res->is_empty()) return 0;
  2447.   /*
  2448.     res->ptr() using is safe because we have tested that string is not empty,
  2449.     res->c_ptr() is not used because:
  2450.       - we do not need  terminated string to get first 4 bytes
  2451.       - c_ptr() tests simbol after string end (uninitialiozed memory) which
  2452.         confuse valgrind
  2453.   */
  2454.   return uint4korr(res->ptr()) & 0x3FFFFFFF;
  2455. }
  2456. longlong Item_func_crc32::val_int()
  2457. {
  2458.   DBUG_ASSERT(fixed == 1);
  2459.   String *res=args[0]->val_str(&value);
  2460.   if (!res)
  2461.   {
  2462.     null_value=1;
  2463.     return 0; /* purecov: inspected */
  2464.   }
  2465.   null_value=0;
  2466.   return (longlong) crc32(0L, (uchar*)res->ptr(), res->length());
  2467. }
  2468. #ifdef HAVE_COMPRESS
  2469. #include "zlib.h"
  2470. String *Item_func_compress::val_str(String *str)
  2471. {
  2472.   int err= Z_OK, code;
  2473.   ulong new_size;
  2474.   String *res;
  2475.   Byte *body;
  2476.   char *tmp, *last_char;
  2477.   DBUG_ASSERT(fixed == 1);
  2478.   if (!(res= args[0]->val_str(str)))
  2479.   {
  2480.     null_value= 1;
  2481.     return 0;
  2482.   }
  2483.   if (res->is_empty()) return res;
  2484.   /*
  2485.     Citation from zlib.h (comment for compress function):
  2486.     Compresses the source buffer into the destination buffer.  sourceLen is
  2487.     the byte length of the source buffer. Upon entry, destLen is the total
  2488.     size of the destination buffer, which must be at least 0.1% larger than
  2489.     sourceLen plus 12 bytes.
  2490.     We assume here that the buffer can't grow more than .25 %.
  2491.   */
  2492.   new_size= res->length() + res->length() / 5 + 12;
  2493.   // Check new_size overflow: new_size <= res->length()
  2494.   if (((uint32) (new_size+5) <= res->length()) || 
  2495.       buffer.realloc((uint32) new_size + 4 + 1))
  2496.   {
  2497.     null_value= 1;
  2498.     return 0;
  2499.   }
  2500.   body= ((Byte*)buffer.ptr()) + 4;
  2501.   // As far as we have checked res->is_empty() we can use ptr()
  2502.   if ((err= compress(body, &new_size,
  2503.      (const Bytef*)res->ptr(), res->length())) != Z_OK)
  2504.   {
  2505.     code= err==Z_MEM_ERROR ? ER_ZLIB_Z_MEM_ERROR : ER_ZLIB_Z_BUF_ERROR;
  2506.     push_warning(current_thd,MYSQL_ERROR::WARN_LEVEL_ERROR,code,ER(code));
  2507.     null_value= 1;
  2508.     return 0;
  2509.   }
  2510.   tmp= (char*)buffer.ptr(); // int4store is a macro; avoid side effects
  2511.   int4store(tmp, res->length() & 0x3FFFFFFF);
  2512.   /* This is to ensure that things works for CHAR fields, which trim ' ': */
  2513.   last_char= ((char*)body)+new_size-1;
  2514.   if (*last_char == ' ')
  2515.   {
  2516.     *++last_char= '.';
  2517.     new_size++;
  2518.   }
  2519.   buffer.length((uint32)new_size + 4);
  2520.   return &buffer;
  2521. }
  2522. String *Item_func_uncompress::val_str(String *str)
  2523. {
  2524.   DBUG_ASSERT(fixed == 1);
  2525.   String *res= args[0]->val_str(str);
  2526.   ulong new_size;
  2527.   int err;
  2528.   uint code;
  2529.   if (!res)
  2530.     goto err;
  2531.   if (res->is_empty())
  2532.     return res;
  2533.   new_size= uint4korr(res->ptr()) & 0x3FFFFFFF;
  2534.   if (new_size > current_thd->variables.max_allowed_packet)
  2535.   {
  2536.     push_warning_printf(current_thd,MYSQL_ERROR::WARN_LEVEL_ERROR,
  2537. ER_TOO_BIG_FOR_UNCOMPRESS,
  2538. ER(ER_TOO_BIG_FOR_UNCOMPRESS),
  2539.                         current_thd->variables.max_allowed_packet);
  2540.     goto err;
  2541.   }
  2542.   if (buffer.realloc((uint32)new_size))
  2543.     goto err;
  2544.   if ((err= uncompress((Byte*)buffer.ptr(), &new_size,
  2545.        ((const Bytef*)res->ptr())+4,res->length())) == Z_OK)
  2546.   {
  2547.     buffer.length((uint32) new_size);
  2548.     return &buffer;
  2549.   }
  2550.   code= ((err == Z_BUF_ERROR) ? ER_ZLIB_Z_BUF_ERROR :
  2551.  ((err == Z_MEM_ERROR) ? ER_ZLIB_Z_MEM_ERROR : ER_ZLIB_Z_DATA_ERROR));
  2552.   push_warning(current_thd,MYSQL_ERROR::WARN_LEVEL_ERROR,code,ER(code));
  2553. err:
  2554.   null_value= 1;
  2555.   return 0;
  2556. }
  2557. #endif
  2558. /*
  2559.   UUID, as in
  2560.     DCE 1.1: Remote Procedure Call,
  2561.     Open Group Technical Standard Document Number C706, October 1997,
  2562.     (supersedes C309 DCE: Remote Procedure Call 8/1994,
  2563.     which was basis for ISO/IEC 11578:1996 specification)
  2564. */
  2565. static struct rand_struct uuid_rand;
  2566. static uint nanoseq;
  2567. static ulonglong uuid_time=0;
  2568. static char clock_seq_and_node_str[]="-0000-000000000000";
  2569. /* number of 100-nanosecond intervals between
  2570.    1582-10-15 00:00:00.00 and 1970-01-01 00:00:00.00 */
  2571. #define UUID_TIME_OFFSET ((ulonglong) 141427 * 24 * 60 * 60 * 1000 * 10 )
  2572. #define UUID_VERSION      0x1000
  2573. #define UUID_VARIANT      0x8000
  2574. static void tohex(char *to, uint from, uint len)
  2575. {
  2576.   to+= len;
  2577.   while (len--)
  2578.   {
  2579.     *--to= _dig_vec_lower[from & 15];
  2580.     from >>= 4;
  2581.   }
  2582. }
  2583. static void set_clock_seq_str()
  2584. {
  2585.   uint16 clock_seq= ((uint)(my_rnd(&uuid_rand)*16383)) | UUID_VARIANT;
  2586.   tohex(clock_seq_and_node_str+1, clock_seq, 4);
  2587.   nanoseq= 0;
  2588. }
  2589. String *Item_func_uuid::val_str(String *str)
  2590. {
  2591.   DBUG_ASSERT(fixed == 1);
  2592.   char *s;
  2593.   pthread_mutex_lock(&LOCK_uuid_generator);
  2594.   if (! uuid_time) /* first UUID() call. initializing data */
  2595.   {
  2596.     ulong tmp=sql_rnd_with_mutex();
  2597.     uchar mac[6];
  2598.     int i;
  2599.     if (my_gethwaddr(mac))
  2600.     {
  2601.       /*
  2602.         generating random "hardware addr"
  2603.         and because specs explicitly specify that it should NOT correlate
  2604.         with a clock_seq value (initialized random below), we use a separate
  2605.         randominit() here
  2606.       */
  2607.       randominit(&uuid_rand, tmp + (ulong)current_thd, tmp + query_id);
  2608.       for (i=0; i < (int)sizeof(mac); i++)
  2609.         mac[i]=(uchar)(my_rnd(&uuid_rand)*255);
  2610.     }
  2611.     s=clock_seq_and_node_str+sizeof(clock_seq_and_node_str)-1;
  2612.     for (i=sizeof(mac)-1 ; i>=0 ; i--)
  2613.     {
  2614.       *--s=_dig_vec_lower[mac[i] & 15];
  2615.       *--s=_dig_vec_lower[mac[i] >> 4];
  2616.     }
  2617.     randominit(&uuid_rand, tmp + (ulong)start_time, tmp + bytes_sent);
  2618.     set_clock_seq_str();
  2619.   }
  2620.   ulonglong tv=my_getsystime() + UUID_TIME_OFFSET + nanoseq;
  2621.   if (unlikely(tv < uuid_time))
  2622.     set_clock_seq_str();
  2623.   else
  2624.   if (unlikely(tv == uuid_time))
  2625.   { /* special protection from low-res system clocks */
  2626.     nanoseq++;
  2627.     tv++;
  2628.   }
  2629.   else
  2630.   {
  2631.     if (nanoseq)
  2632.     {
  2633.       tv-=nanoseq;
  2634.       nanoseq=0;
  2635.     }
  2636.     DBUG_ASSERT(tv > uuid_time);
  2637.   }
  2638.   uuid_time=tv;
  2639.   pthread_mutex_unlock(&LOCK_uuid_generator);
  2640.   uint32 time_low=            (uint32) (tv & 0xFFFFFFFF);
  2641.   uint16 time_mid=            (uint16) ((tv >> 32) & 0xFFFF);
  2642.   uint16 time_hi_and_version= (uint16) ((tv >> 48) | UUID_VERSION);
  2643.   str->realloc(UUID_LENGTH+1);
  2644.   str->length(UUID_LENGTH);
  2645.   str->set_charset(system_charset_info);
  2646.   s=(char *) str->ptr();
  2647.   s[8]=s[13]='-';
  2648.   tohex(s, time_low, 8);
  2649.   tohex(s+9, time_mid, 4);
  2650.   tohex(s+14, time_hi_and_version, 4);
  2651.   strmov(s+18, clock_seq_and_node_str);
  2652.   return str;
  2653. }