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

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. #include "mysql_priv.h"
  14. #include <m_ctype.h>
  15. #ifdef HAVE_OPENSSL
  16. struct st_des_keyschedule des_keyschedule[10];
  17. uint   des_default_key;
  18. /*
  19.  Function which loads DES keys from plaintext file into memory on MySQL
  20.  server startup and on command FLUSH DES_KEY_FILE.
  21.  Blame tonu@spam.ee on bugs ;)
  22.  RETURN
  23. 0 ok
  24. 1 Error   
  25. */
  26. #define des_cs &my_charset_latin1
  27. bool
  28. load_des_key_file(const char *file_name)
  29. {
  30.   bool result=1;
  31.   File file;
  32.   IO_CACHE io;
  33.   DBUG_ENTER("load_des_key_file");
  34.   DBUG_PRINT("enter",("name: %s",file_name));
  35.   VOID(pthread_mutex_lock(&LOCK_des_key_file));
  36.   if ((file=my_open(file_name,O_RDONLY | O_BINARY ,MYF(MY_WME))) < 0 ||
  37.       init_io_cache(&io, file, IO_SIZE*2, READ_CACHE, 0, 0, MYF(MY_WME)))
  38.     goto error;
  39.   bzero((char*) des_keyschedule,sizeof(struct st_des_keyschedule) * 10);
  40.   des_default_key=15; // Impossible key
  41.   for (;;)
  42.   {
  43.     char *start, *end;
  44.     char buf[1024], offset;
  45.     st_des_keyblock keyblock;
  46.     uint length;
  47.     if (!(length=my_b_gets(&io,buf,sizeof(buf)-1)))
  48.       break; // End of file
  49.     offset=buf[0];
  50.     if (offset >= '0' && offset <= '9') // If ok key
  51.     {
  52.       offset=(char) (offset - '0');
  53.       // Remove newline and possible other control characters
  54.       for (start=buf+1 ; my_isspace(des_cs, *start) ; start++) ;
  55.       end=buf+length;
  56.       for  (end=strend(buf) ; 
  57.             end > start && !my_isgraph(des_cs, end[-1]) ; end--) ;
  58.       if (start != end)
  59.       {
  60. DES_cblock ivec;
  61. bzero((char*) &ivec,sizeof(ivec));
  62. // We make good 24-byte (168 bit) key from given plaintext key with MD5
  63. EVP_BytesToKey(EVP_des_ede3_cbc(),EVP_md5(),NULL,
  64.        (uchar *) start, (int) (end-start),1,
  65.        (uchar *) &keyblock,
  66.        ivec);
  67. DES_set_key_unchecked(&keyblock.key1,&(des_keyschedule[(int)offset].ks1));
  68. DES_set_key_unchecked(&keyblock.key2,&(des_keyschedule[(int)offset].ks2));
  69. DES_set_key_unchecked(&keyblock.key3,&(des_keyschedule[(int)offset].ks3));
  70. if (des_default_key == 15)
  71.   des_default_key= (uint) offset; // use first as def.
  72.       }
  73.     }
  74.     else if (offset != '#')
  75.       sql_print_error("load_des_file:  Found wrong key_number: %c",offset);
  76.   }
  77.   result=0;
  78. error:
  79.   if (file >= 0)
  80.   {
  81.     my_close(file,MYF(0));
  82.     end_io_cache(&io);
  83.   }
  84.   VOID(pthread_mutex_unlock(&LOCK_des_key_file));
  85.   DBUG_RETURN(result);
  86. }
  87. #endif /* HAVE_OPENSSL */