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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /* Descript, check and repair of ISAM tables */
  17. #include "isamdef.h"
  18. #include <m_ctype.h>
  19. #include <stdarg.h>
  20. #include <getopt.h>
  21. #ifdef HAVE_SYS_VADVICE_H
  22. #include <sys/vadvise.h>
  23. #endif
  24. #ifdef HAVE_SYS_MMAN_H
  25. #include <sys/mman.h>
  26. #endif
  27. SET_STACK_SIZE(9000) /* Minimum stack size for program */
  28. #define T_VERBOSE 1
  29. #define T_SILENT 2
  30. #define T_DESCRIPT 4
  31. #define T_EXTEND 8
  32. #define T_INFO 16
  33. #define T_REP 32
  34. #define T_OPT 64 /* Not currently used */
  35. #define T_FORCE_CREATE 128
  36. #define T_WRITE_LOOP 256
  37. #define T_UNPACK 512
  38. #define T_STATISTICS 1024
  39. #define T_VERY_SILENT 2048
  40. #define T_SORT_RECORDS 4096
  41. #define T_SORT_INDEX 8192
  42. #define T_WAIT_FOREVER 16384
  43. #define T_REP_BY_SORT 32768
  44. #define O_NEW_INDEX 1 /* Bits set in out_flag */
  45. #define O_NEW_DATA 2
  46. #if defined(_MSC_VER) && !defined(__WIN__)
  47. #define USE_BUFFER_INIT 250L*1024L
  48. #define READ_BUFFER_INIT ((uint) 32768-MALLOC_OVERHEAD)
  49. #define SORT_BUFFER_INIT (uint) (65536L-MALLOC_OVERHEAD)
  50. #define MIN_SORT_BUFFER (1024*16-MALLOC_OVERHEAD)
  51. #else
  52. #define USE_BUFFER_INIT (((1024L*512L-MALLOC_OVERHEAD)/IO_SIZE)*IO_SIZE)
  53. #define READ_BUFFER_INIT (1024L*256L-MALLOC_OVERHEAD)
  54. #define SORT_BUFFER_INIT (2048L*1024L-MALLOC_OVERHEAD)
  55. #define MIN_SORT_BUFFER (4096-MALLOC_OVERHEAD)
  56. #endif
  57. #define NEAD_MEM ((uint) 10*4*(IO_SIZE+32)+32) /* Nead for recursion */
  58. #define MAXERR 20
  59. #define BUFFERS_WHEN_SORTING 16 /* Alloc for sort-key-tree */
  60. #define WRITE_COUNT MY_HOW_OFTEN_TO_WRITE
  61. #define INDEX_TMP_EXT ".TMM"
  62. #define DATA_TMP_EXT ".TMD"
  63. #define MYF_RW MYF(MY_NABP | MY_WME | MY_WAIT_IF_FULL)
  64. #define UPDATE_TIME 1
  65. #define UPDATE_STAT 2
  66. #define UPDATE_SORT 4
  67. typedef struct st_sort_key_blocks { /* Used when sorting */
  68.   uchar *buff,*end_pos;
  69.   uchar lastkey[N_MAX_POSSIBLE_KEY_BUFF];
  70.   uint last_length;
  71.   int inited;
  72. } SORT_KEY_BLOCKS;
  73. typedef struct st_sort_info {
  74.   N_INFO *info;
  75.   enum data_file_type new_data_file_type;
  76.   SORT_KEY_BLOCKS *key_block,*key_block_end;
  77.   uint key,find_length;
  78.   ulong pos,max_pos,filepos,start_recpos,filelength,dupp,max_records,unique,
  79.     buff_length;
  80.   my_bool fix_datafile;
  81.   char *record,*buff;
  82.   N_KEYDEF *keyinfo;
  83.   N_KEYSEG *keyseg;
  84. } SORT_INFO;
  85. enum options {OPT_CHARSETS_DIR=256};
  86. static ulong use_buffers=0,read_buffer_length=0,write_buffer_length=0,
  87. sort_buffer_length=0,sort_key_blocks=0,crc=0,unique_count=0;
  88. static uint testflag=0,out_flag=0,warning_printed=0,error_printed=0,
  89.     rep_quick=0,verbose=0,opt_follow_links=1;
  90. static uint opt_sort_key=0,total_files=0,max_level=0,max_key=N_MAXKEY;
  91. static ulong keydata=0,totaldata=0,key_blocks=0;
  92. static ulong new_file_pos=0,record_checksum=0,key_file_blocks=0,decode_bits;
  93. static ulong total_records=0,total_deleted=0;
  94. static ulong search_after_block=NI_POS_ERROR;
  95. static byte *record_buff;
  96. static char **defaults_alloc;
  97. static const char *type_names[]=
  98. { "?","text","binary", "short", "long", "float",
  99.   "double","number","unsigned short",
  100.   "unsigned long","longlong","ulonglong","int24",
  101.   "uint24","int8","?",},
  102.   *packed_txt="packed ",
  103.   *diff_txt="stripped ",
  104.   *field_pack[]={"","no endspace", "no prespace",
  105.  "no zeros", "blob", "constant", "table-lookup",
  106.  "always zero","?","?",};
  107. static char temp_filename[FN_REFLEN], *isam_file_name, *default_charset; 
  108. static IO_CACHE read_cache;
  109. static SORT_INFO sort_info;
  110. static int tmpfile_createflag=O_RDWR | O_TRUNC | O_EXCL;
  111. static const char *load_default_groups[]= { "isamchk",0 };
  112. /* Functions defined in this file */
  113. extern int main(int argc,char * *argv);
  114. extern void print_error _VARARGS((const char *fmt,...));
  115. static void print_warning _VARARGS((const char *fmt,...));
  116. static void print_info _VARARGS((const char *fmt,...));
  117. static int nisamchk(char *filename);
  118. static void get_options(int *argc,char * * *argv);
  119. static int chk_del(N_INFO *info,uint testflag);
  120. static int check_k_link(N_INFO *info,uint nr);
  121. static int chk_size(N_INFO *info);
  122. static int chk_key(N_INFO *info);
  123. static int chk_index(N_INFO *info,N_KEYDEF *keyinfo,ulong page,uchar *buff,
  124.      ulong *keys,uint level);
  125. static uint isam_key_length(N_INFO *info,N_KEYDEF *keyinfo);
  126. static unsigned long calc_checksum(ulong count);
  127. static int chk_data_link(N_INFO *info,int extend);
  128. static int rep(N_INFO *info,char *name);
  129. static int writekeys(N_INFO *info,byte *buff,ulong filepos);
  130. static void descript(N_INFO *info,char *name);
  131. static int movepoint(N_INFO *info,byte *record,ulong oldpos,ulong newpos,
  132.      uint prot_key);
  133. static void lock_memory(void);
  134. static int flush_blocks(File file);
  135. static int sort_records(N_INFO *,my_string,uint,int);
  136. static int sort_index(N_INFO *info,my_string name);
  137. static int sort_record_index(N_INFO *info,N_KEYDEF *keyinfo,ulong page,
  138.      uchar *buff,uint sortkey,File new_file);
  139. static int sort_one_index(N_INFO *info,N_KEYDEF *keyinfo,uchar *buff,
  140.   File new_file);
  141. static int change_to_newfile(const char * filename,const char * old_ext,
  142.      const char * new_ext);
  143. static int lock_file(File file,ulong start,int lock_type,const char* filetype,
  144.      const char *filename);
  145. static int filecopy(File to,File from,ulong start,ulong length,
  146.     const char * type);
  147. static void print_version(void);
  148. static int rep_by_sort(N_INFO *info,my_string name);
  149. static int sort_key_read(void *key);
  150. static int sort_get_next_record(void);
  151. static int sort_write_record(void);
  152. static int sort_key_cmp(const void *not_used, const void *a,const void *b);
  153. static int sort_key_write(const void *a);
  154. static ulong get_record_for_key(N_INFO *info,N_KEYDEF *keyinfo,
  155. uchar *key);
  156. static int sort_insert_key(reg1 SORT_KEY_BLOCKS *key_block,uchar *key,
  157.    ulong prev_block);
  158. static int sort_delete_record(void);
  159. static void usage(void);
  160. static int flush_pending_blocks(void);
  161. static SORT_KEY_BLOCKS *alloc_key_blocks(uint blocks,uint buffer_length);
  162. static int test_if_almost_full(N_INFO *info);
  163. static int recreate_database(N_INFO **info,char *filename);
  164. static void save_integer(byte *pos,uint pack_length,ulong value);
  165. static int write_data_suffix(N_INFO *info);
  166. static int update_state_info(N_INFO *info,uint update);
  167. /* Main program */
  168. int main(argc,argv)
  169. int argc;
  170. char **argv;
  171. {
  172.   int error;
  173.   MY_INIT(argv[0]);
  174. #ifdef __EMX__
  175.   _wildcard (&argc, &argv);
  176. #endif
  177.   get_options(&argc,(char***) &argv);
  178.   nisam_quick_table_bits=(uint) decode_bits;
  179.   error=0;
  180.   while (--argc >= 0)
  181.   {
  182.     error|= nisamchk(*(argv++));
  183.     VOID(fflush(stdout));
  184.     VOID(fflush(stderr));
  185.     if ((error_printed | warning_printed) && (testflag & T_FORCE_CREATE) &&
  186. (!(testflag & (T_REP | T_REP_BY_SORT | T_SORT_RECORDS |
  187.        T_SORT_INDEX))))
  188.     {
  189.       testflag|=T_REP;
  190.       error|=nisamchk(argv[-1]);
  191.       testflag&= ~T_REP;
  192.       VOID(fflush(stdout));
  193.       VOID(fflush(stderr));
  194.     }
  195.     if (argc && (!(testflag & T_SILENT) || testflag & T_INFO))
  196.     {
  197.       puts("n---------n");
  198.       VOID(fflush(stdout));
  199.     }
  200.   }
  201.   if (total_files > 1)
  202.   { /* Only if descript */
  203.     if (!(testflag & T_SILENT) || testflag & T_INFO)
  204.       puts("n---------n");
  205.     printf("nTotal of all %d ISAM-files:nData records: %8lu   Deleted blocks: %8lun",total_files,total_records,total_deleted);
  206.   }
  207.   free_defaults(defaults_alloc);
  208.   my_end(testflag & T_INFO ? MY_CHECK_ERROR | MY_GIVE_INFO : MY_CHECK_ERROR);
  209.   exit(error);
  210. #ifndef _lint
  211.   return 0; /* No compiler warning */
  212. #endif
  213. } /* main */
  214. static CHANGEABLE_VAR changeable_vars[] = {
  215.   { "key_buffer_size",(long*) &use_buffers,(long) USE_BUFFER_INIT,
  216.     (long) MALLOC_OVERHEAD, (long) ~0L,(long) MALLOC_OVERHEAD,(long) IO_SIZE },
  217.   { "read_buffer_size", (long*) &read_buffer_length,(long) READ_BUFFER_INIT,
  218.       (long) MALLOC_OVERHEAD,(long) ~0L,(long) MALLOC_OVERHEAD,(long) 1L },
  219.   { "write_buffer_size", (long*) &write_buffer_length,(long) READ_BUFFER_INIT,
  220.       (long) MALLOC_OVERHEAD,(long) ~0L,(long) MALLOC_OVERHEAD,(long) 1L },
  221.   { "sort_buffer_size",(long*) &sort_buffer_length,(long) SORT_BUFFER_INIT,
  222.       (long) (MIN_SORT_BUFFER+MALLOC_OVERHEAD),(long) ~0L,
  223.       (long) MALLOC_OVERHEAD,(long) 1L },
  224.   { "sort_key_blocks",(long*) &sort_key_blocks,BUFFERS_WHEN_SORTING,4L,100L,0L,
  225.     1L },
  226.   { "decode_bits",(long*) &decode_bits,9L,4L,17L,0L,1L },
  227.   { NullS,(long*) 0,0L,0L,0L,0L,0L,} };
  228. static struct option long_options[] =
  229. {
  230.   {"analyze",          no_argument,       0, 'a'},
  231.   {"character-sets-dir", required_argument, 0, OPT_CHARSETS_DIR},
  232. #ifndef DBUG_OFF
  233.   {"debug",            required_argument, 0, '#'},
  234. #endif
  235.   {"default-character-set", required_argument, 0, 'C'},
  236.   {"description",      no_argument,       0, 'd'},
  237.   {"extend-check",     no_argument,       0, 'e'},
  238.   {"information",      no_argument,       0, 'i'},
  239.   {"force",            no_argument,       0, 'f'},
  240.   {"help",             no_argument,       0, '?'},
  241.   {"keys-used",        required_argument, 0, 'k'},
  242.   {"no-symlinks",      no_argument,       0, 'l'},
  243.   {"quick",            no_argument,       0, 'q'},
  244.   {"recover",          no_argument,       0, 'r'},
  245.   {"safe-recover",     no_argument,       0, 'o'},
  246.   {"block-search",     required_argument, 0, 'b'},
  247.   {"set-variable",     required_argument, 0, 'O'},
  248.   {"silent",           no_argument,       0, 's'},
  249.   {"sort-index",       no_argument,       0, 'S'},
  250.   {"sort-records",     required_argument, 0, 'R'},
  251.   {"unpack",           no_argument,       0, 'u'},
  252.   {"verbose",          no_argument,       0, 'v'},
  253.   {"version",          no_argument,       0, 'V'},
  254.   {"wait",             no_argument,       0, 'w'},
  255.   {0, 0, 0, 0}
  256. };
  257. static void print_version(void)
  258. {
  259.   printf("%s  Ver 5.15 for %s at %sn",my_progname,SYSTEM_TYPE,
  260.  MACHINE_TYPE);
  261. }
  262. static void usage(void)
  263. {
  264.   uint i;
  265.   print_version();
  266.   puts("TCX Datakonsult AB, by Monty, for your professional use");
  267.   puts("This software comes with NO WARRANTY: see the PUBLIC for details.n");
  268.   puts("Description, check and repair of ISAM tables.");
  269.   puts("Used without options all tables on the command will be checked for errors");
  270.   printf("Usage: %s [OPTIONS] tables[.ISM]n", my_progname);
  271.   puts("n
  272.   -a, --analyze       Analyze distribution of keys. Will make some joins inn
  273.       MySQL faster.n
  274.   -#, --debug=...     Output debug log. Often this is 'd:t:o,filename`n
  275.   --character-sets-dir=...n
  276.                       Directory where character sets aren
  277.   -C, --default-character-set=...n
  278.                       Set the default character setn
  279.   -d, --description   Prints some information about table.n
  280.   -e, --extend-check  Check the table VERY thoroughly.  One need use thisn
  281.                       only in extreme cases as isamchk should normally findn
  282.                       all errors even without this switchn
  283.   -f, --force         Overwrite old temporary files.n
  284.       If one uses -f when checking tables (running isamchkn
  285.       without -r), isamchk will automatically restart withn
  286.       -r on any wrong table.n
  287.   -?, --help          Display this help and exit.n
  288.   -i, --information   Print statistics information about the tablen
  289.   -k, --keys-used=#   Used with '-r'. Tell ISAM to update only the firstn
  290.       # keys.  This can be used to get faster inserts!n
  291.   -l, --no-symlinks   Do not follow symbolic links when repairing. Normallyn
  292.       isamchk repairs the table a symlink points at.n
  293.   -q, --quick         Used with -r to get a faster repair. (The data filen
  294.                       isn't touched.) One can give a second '-q' to forcen
  295.                       isamchk to modify the original datafile.");
  296.   puts("
  297.   -r, --recover       Can fix almost anything except unique keys that aren'tn
  298.                       unique.n
  299.   -o, --safe-recover  Uses old recovery method; slower than '-r' but cann
  300.       handle a couple of cases that '-r' cannot handle.n
  301.   -O, --set-variable var=optionn
  302.       Change the value of a variable.n
  303.   -s, --silent       Only print errors.  One can use two -s to make isamchkn
  304.       very silentn
  305.   -S, --sort-index    Sort index blocks.  This speeds up 'read-next' inn
  306.       applicationsn
  307.   -R, --sort-records=#n
  308.       Sort records according to an index.  This makes yourn
  309.       data much more localized and may speed up thingsn
  310.       (It may be VERY slow to do a sort the first time!)n
  311.   -u, --unpack        Unpack file packed with pack_isam.n
  312.   -v, --verbose       Print more information. This can be used withn
  313.                       -d and -e. Use many -v for more verbosity!n
  314.   -V, --version       Print version and exit.n
  315.   -w, --wait          Wait if table is locked.");
  316.   print_defaults("my",load_default_groups);
  317.   printf("nPossible variables for option --set-variable (-O) are:n");
  318.   for (i=0; changeable_vars[i].name ; i++)
  319.     printf("%-20s  current value: %lun",
  320.            changeable_vars[i].name,
  321.            *changeable_vars[i].varptr);
  322. }
  323. /* Check table */
  324. static int nisamchk(my_string filename)
  325. {
  326.   int error,lock_type,recreate;
  327.   N_INFO *info;
  328.   File datafile;
  329.   char fixed_name[FN_REFLEN];
  330.   ISAM_SHARE *share;
  331.   DBUG_ENTER("nisamchk");
  332.   out_flag=error=warning_printed=error_printed=recreate=0;
  333.   datafile=0;
  334.   isam_file_name=filename; /* For error messages */
  335.   if (!(info=nisam_open(filename,
  336.      (testflag & T_DESCRIPT) ? O_RDONLY : O_RDWR,
  337.      (testflag & T_WAIT_FOREVER) ? HA_OPEN_WAIT_IF_LOCKED :
  338.      (testflag & T_DESCRIPT) ? HA_OPEN_IGNORE_IF_LOCKED :
  339.      HA_OPEN_ABORT_IF_LOCKED)))
  340.   {
  341.     /* Avoid twice printing of isam file name */
  342.     error_printed=1;
  343.     switch (my_errno) {
  344.     case HA_ERR_CRASHED:
  345.       print_error("'%s' is not a ISAM-table",filename);
  346.       break;
  347.     case HA_ERR_OLD_FILE:
  348.       print_error("'%s' is a old type of ISAM-table", filename);
  349.       break;
  350.     case HA_ERR_END_OF_FILE:
  351.       print_error("Couldn't read compleat header from '%s'", filename);
  352.       break;
  353.     case EAGAIN:
  354.       print_error("'%s' is locked. Use -w to wait until unlocked",filename);
  355.       break;
  356.     case ENOENT:
  357.       print_error("File '%s' doesn't exist",filename);
  358.       break;
  359.     case EACCES:
  360.       print_error("You don't have permission to use '%s'",filename);
  361.       break;
  362.     default:
  363.       print_error("%d when opening ISAM-table '%s'",
  364.   my_errno,filename);
  365.       break;
  366.     }
  367.     DBUG_RETURN(1);
  368.   }
  369.   share=info->s;
  370.   share->base.options&= ~HA_OPTION_READ_ONLY_DATA; /* We are modifing it */
  371.   share->r_locks=0;
  372.   if ((testflag & (T_REP_BY_SORT | T_REP | T_STATISTICS |
  373.    T_SORT_RECORDS | T_SORT_INDEX)) &&
  374.       ((testflag & T_UNPACK && share->data_file_type == COMPRESSED_RECORD) ||
  375.        share->state_length != sizeof(share->state) ||
  376.        uint2korr(share->state.header.base_info_length) !=
  377.        sizeof(share->base) ||
  378.        (max_key && ! share->state.keys && share->base.keys) ||
  379.        test_if_almost_full(info) ||
  380.        info->s->state.header.file_version[3] != nisam_file_magic[3]))
  381.   {
  382.     if (recreate_database(&info,filename))
  383.     {
  384.       VOID(fprintf(stderr,
  385.    "ISAM-table '%s' is not fixed because of errorsn",
  386.       filename));
  387.       return(-1);
  388.     }
  389.     recreate=1;
  390.     if (!(testflag & (T_REP | T_REP_BY_SORT)))
  391.     {
  392.       testflag|=T_REP_BY_SORT; /* if only STATISTICS */
  393.       if (!(testflag & T_SILENT))
  394. printf("- '%s' has old table-format. Recreating indexn",filename);
  395.       if (!rep_quick)
  396. rep_quick=1;
  397.     }
  398.     share=info->s;
  399.     share->r_locks=0;
  400.   }
  401.   if (testflag & T_DESCRIPT)
  402.   {
  403.     total_files++;
  404.     total_records+=share->state.records; total_deleted+=share->state.del;
  405.     descript(info,filename);
  406.   }
  407.   else
  408.   {
  409.     if (testflag & (T_REP+T_REP_BY_SORT+T_OPT+T_SORT_RECORDS+T_SORT_INDEX))
  410.       lock_type = F_WRLCK; /* table is changed */
  411.     else
  412.       lock_type= F_RDLCK;
  413.     if (info->lock_type == F_RDLCK)
  414.       info->lock_type=F_UNLCK; /* Read only table */
  415.     if (_nisam_readinfo(info,lock_type,0))
  416.     {
  417.       print_error("Can't lock indexfile of '%s', error: %d",
  418.   filename,my_errno);
  419.       error_printed=0;
  420.       goto end2;
  421.     }
  422.     share->w_locks++; /* Mark (for writeinfo) */
  423.     if (lock_file(info->dfile,0L,lock_type,"datafile of",filename))
  424.       goto end;
  425.     info->lock_type= F_EXTRA_LCK; /* Simulate as locked */
  426.     info->tmp_lock_type=lock_type;
  427.     datafile=info->dfile;
  428.     if (testflag & (T_REP+T_REP_BY_SORT+T_SORT_RECORDS+T_SORT_INDEX))
  429.     {
  430.       if (testflag & (T_REP+T_REP_BY_SORT))
  431. share->state.keys=min(share->base.keys,max_key);
  432.       VOID(fn_format(fixed_name,filename,"",N_NAME_IEXT,
  433.      4+ (opt_follow_links ? 16 : 0)));
  434.       if (rep_quick && (error=chk_del(info,testflag & ~T_VERBOSE)))
  435. print_error("Quick-recover aborted; Run recovery without switch 'q'");
  436.       else
  437.       {
  438. if (testflag & T_REP_BY_SORT &&
  439.     (share->state.keys || (rep_quick && !max_key && ! recreate)))
  440.   error=rep_by_sort(info,fixed_name);
  441. else if (testflag & (T_REP | T_REP_BY_SORT))
  442.   error=rep(info,fixed_name);
  443.       }
  444.       if (!error && testflag & T_SORT_RECORDS)
  445.       {
  446. if (out_flag & O_NEW_DATA)
  447. { /* Change temp file to org file */
  448.   VOID(lock_file(datafile,0L,F_UNLCK,"datafile of",filename));
  449.   VOID(my_close(datafile,MYF(MY_WME)));    /* Close old file */
  450.   VOID(my_close(info->dfile,MYF(MY_WME))); /* Close new file */
  451.   error|=change_to_newfile(fixed_name,N_NAME_DEXT,DATA_TMP_EXT);
  452.   if ((info->dfile=my_open(fn_format(temp_filename,fixed_name,"",
  453.      N_NAME_DEXT,2+4),
  454.    O_RDWR | O_SHARE,
  455.    MYF(MY_WME))) <= 0 ||
  456.       lock_file(info->dfile,0L,F_WRLCK,"datafile",temp_filename))
  457.     error=1;
  458.   out_flag&= ~O_NEW_DATA; /* We are using new datafile */
  459.   read_cache.file=info->dfile;
  460. }
  461. if (! error)
  462.   error=sort_records(info,fixed_name,opt_sort_key,
  463.      test(!(testflag & T_REP)));
  464. datafile=info->dfile; /* This is now locked */
  465.       }
  466.       if (!error && testflag & T_SORT_INDEX)
  467. error=sort_index(info,fixed_name);
  468.     }
  469.     else
  470.     {
  471.       if (!(testflag & T_SILENT) || testflag & T_INFO)
  472. printf("Checking ISAM file: %sn",filename);
  473.       if (!(testflag & T_SILENT))
  474. printf("Data records: %7ld   Deleted blocks: %7ldn",
  475.        share->state.records,share->state.del);
  476.       share->state.keys=min(share->state.keys,max_key);
  477.       error =chk_size(info);
  478.       error|=chk_del(info,testflag);
  479.       error|=chk_key(info);
  480.       if (!rep_quick)
  481.       {
  482. if (testflag & T_EXTEND)
  483.   VOID(init_key_cache(use_buffers,(uint) NEAD_MEM));
  484. VOID(init_io_cache(&read_cache,datafile,(uint) read_buffer_length,
  485.   READ_CACHE,share->pack.header_length,1,
  486.   MYF(MY_WME)));
  487. lock_memory();
  488. error|=chk_data_link(info,testflag & T_EXTEND);
  489. error|=flush_blocks(share->kfile);
  490. VOID(end_io_cache(&read_cache));
  491.       }
  492.     }
  493.   }
  494. end:
  495.   if (!(testflag & T_DESCRIPT))
  496.   {
  497.     if (info->update & (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED))
  498.       error|=update_state_info(info,
  499.        ((testflag & (T_REP | T_REP_BY_SORT)) ?
  500. UPDATE_TIME | UPDATE_STAT : 0) |
  501.        ((testflag & T_SORT_RECORDS) ?
  502. UPDATE_SORT : 0));
  503.     VOID(lock_file(share->kfile,0L,F_UNLCK,"indexfile",filename));
  504.     if (datafile > 0)
  505.       VOID(lock_file(datafile,0L,F_UNLCK,"datafile of",filename));
  506.     info->update&= ~(HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  507.   }
  508.   share->w_locks--;
  509. end2:
  510.   if (datafile && datafile != info->dfile)
  511.     VOID(my_close(datafile,MYF(MY_WME)));
  512.   if (nisam_close(info))
  513.   {
  514.     print_error("%d when closing ISAM-table '%s'",my_errno,filename);
  515.     DBUG_RETURN(1);
  516.   }
  517.   if (error == 0)
  518.   {
  519.     if (out_flag & O_NEW_DATA)
  520.       error|=change_to_newfile(fixed_name,N_NAME_DEXT,DATA_TMP_EXT);
  521.     if (out_flag & O_NEW_INDEX)
  522.       error|=change_to_newfile(fixed_name,N_NAME_IEXT,INDEX_TMP_EXT);
  523.   }
  524.   VOID(fflush(stdout)); VOID(fflush(stderr));
  525.   if (error_printed)
  526.   {
  527.     if (testflag & (T_REP+T_REP_BY_SORT+T_SORT_RECORDS+T_SORT_INDEX))
  528.       VOID(fprintf(stderr,
  529.    "ISAM-table '%s' is not fixed because of errorsn",
  530.    filename));
  531.     else if (! (error_printed & 2) && !(testflag & T_FORCE_CREATE))
  532.       VOID(fprintf(stderr,
  533.       "ISAM-table '%s' is corruptednFix it using switch "-r" or "-o"n",
  534.       filename));
  535.   }
  536.   else if (warning_printed &&
  537.    ! (testflag & (T_REP+T_REP_BY_SORT+T_SORT_RECORDS+T_SORT_INDEX+
  538.   T_FORCE_CREATE)))
  539.     VOID(fprintf(stderr, "ISAM-table '%s' is useable but should be fixedn",
  540.     filename));
  541.   VOID(fflush(stderr));
  542.   DBUG_RETURN(error);
  543. } /* nisamchk */
  544.  /* Read options */
  545. static void get_options(register int *argc,register char ***argv)
  546. {
  547.   int c,option_index=0;
  548.   load_defaults("my",load_default_groups,argc,argv);
  549.   defaults_alloc=  *argv;
  550.   set_all_changeable_vars(changeable_vars);
  551.   if (isatty(fileno(stdout)))
  552.     testflag|=T_WRITE_LOOP;
  553.   while ((c=getopt_long(*argc,*argv,"adeif?lqrosSuvVw#:b:k:O:R:C:",
  554. long_options, &option_index)) != EOF)
  555.   {
  556.     switch(c) {
  557.     case 'a':
  558.       testflag|= T_STATISTICS;
  559.       break;
  560.     case 'C':
  561.       default_charset=optarg;
  562.       break;
  563.     case OPT_CHARSETS_DIR:
  564.       charsets_dir = optarg;
  565.       break;
  566.     case 'b':
  567.       search_after_block=strtoul(optarg,NULL,10);
  568.       break;
  569.     case 's': /* silent */
  570.       if (testflag & T_SILENT)
  571. testflag|=T_VERY_SILENT;
  572.       testflag|= T_SILENT;
  573.       testflag&= ~T_WRITE_LOOP;
  574.       break;
  575.     case 'w':
  576.       testflag|= T_WAIT_FOREVER;
  577.       break;
  578.     case 'd': /* description if isam-file */
  579.       testflag|= T_DESCRIPT;
  580.       break;
  581.     case 'e': /* extend check */
  582.       testflag|= T_EXTEND;
  583.       break;
  584.     case 'i':
  585.       testflag|= T_INFO;
  586.       break;
  587.     case 'f':
  588.       tmpfile_createflag= O_RDWR | O_TRUNC;
  589.       testflag|=T_FORCE_CREATE;
  590.       break;
  591.     case 'k':
  592.       max_key= (uint) atoi(optarg);
  593.       break;
  594.     case 'l':
  595.       opt_follow_links=0;
  596.       break;
  597.     case 'r': /* Repair table */
  598.       testflag= (testflag & ~T_REP) | T_REP_BY_SORT;
  599.       break;
  600.     case 'o':
  601.       testflag= (testflag & ~T_REP_BY_SORT) | T_REP;
  602.       my_disable_async_io=1;         /* More safety */
  603.       break;
  604.     case 'q':
  605.       rep_quick++;
  606.       break;
  607.     case 'u':
  608.       testflag|= T_UNPACK | T_REP_BY_SORT;
  609.       break;
  610.     case 'v': /* Verbose */
  611.       testflag|= T_VERBOSE;
  612.       verbose++;
  613.       break;
  614.     case 'O':
  615.       if (set_changeable_var(optarg, changeable_vars))
  616.       {
  617. usage();
  618. exit(1);
  619.       }
  620.       break;
  621.     case 'R': /* Sort records */
  622.       testflag|= T_SORT_RECORDS;
  623.       opt_sort_key=(uint) atoi(optarg)-1;
  624.       if (opt_sort_key >= N_MAXKEY)
  625.       {
  626. fprintf(stderr,
  627. "The value of the sort key is bigger than max key: %d.n",
  628. N_MAXKEY);
  629. exit(1);
  630.       }
  631.       break;
  632.     case 'S':                         /* Sort index */
  633.       testflag|= T_SORT_INDEX;
  634.       break;
  635.     case '#':
  636.       DBUG_PUSH(optarg ? optarg : "d:t:o,/tmp/isamchk.trace");
  637.       break;
  638.     case 'V':
  639.       print_version();
  640.       exit(0);
  641.     case '?':
  642.       usage();
  643.       exit(0);
  644.     }
  645.   }
  646.   (*argc)-=optind;
  647.   (*argv)+=optind;
  648.   if (*argc == 0)
  649.   {
  650.     usage();
  651.     exit(-1);
  652.   }
  653.   if ((testflag & T_UNPACK) && (rep_quick || (testflag & T_SORT_RECORDS)))
  654.   {
  655.     VOID(fprintf(stderr,
  656.  "%s: --unpack can't be used with --quick or --sort-recordsn",
  657.  my_progname));
  658.     exit(1);
  659.   }
  660.   if (default_charset)
  661.   {
  662.     if (set_default_charset_by_name(default_charset, MYF(MY_WME)))
  663.       exit(1);
  664.   }
  665.   return;
  666. } /* get options */
  667. /* Check delete links */
  668. static int chk_del(info,test_flag)
  669. reg1 N_INFO *info;
  670. uint test_flag;
  671. {
  672.   reg2 ulong i;
  673.   uint j,delete_link_length;
  674.   ulong empty,next_link;
  675.   uchar buff[8];
  676.   DBUG_ENTER("chk_del");
  677.   if (!(test_flag & T_SILENT)) puts("- check delete-chain");
  678.   record_checksum=0L;
  679.   key_file_blocks=info->s->base.keystart;
  680.   for (j =0 ; j < info->s->state.keys ; j++)
  681.     if (check_k_link(info,j))
  682.       goto wrong;
  683.   delete_link_length=(info->s->base.options & HA_OPTION_PACK_RECORD) ? 8 : 5;
  684.   next_link=info->s->state.dellink;
  685.   if (info->s->state.del == 0)
  686.   {
  687.     if (test_flag & T_VERBOSE)
  688.     {
  689.       puts("No recordlinks");
  690.     }
  691.   }
  692.   else
  693.   {
  694.     if (test_flag & T_VERBOSE)
  695.       printf("Recordlinks:    ");
  696.     empty=0;
  697.     for (i= info->s->state.del ; i > 0L && next_link != NI_POS_ERROR ; i--)
  698.     {
  699.       if (test_flag & T_VERBOSE) printf("%10lu",next_link);
  700.       if (next_link >= info->s->state.data_file_length)
  701. goto wrong;
  702.       if (my_pread(info->dfile,(char*) buff,delete_link_length,
  703.   next_link,MYF(MY_NABP)))
  704.       {
  705. if (test_flag & T_VERBOSE) puts("");
  706. print_error("Can't read delete-link at filepos: %lu",
  707.     (ulong) next_link);
  708. DBUG_RETURN(1);
  709.       }
  710.       if (*buff != '')
  711.       {
  712. if (test_flag & T_VERBOSE) puts("");
  713. print_error("Record at pos: %lu is not remove-marked",
  714.     (ulong) next_link);
  715. goto wrong;
  716.       }
  717.       if (info->s->base.options & HA_OPTION_PACK_RECORD)
  718.       {
  719. next_link=uint4korr(buff+4);
  720. empty+=uint3korr(buff+1);
  721.       }
  722.       else
  723.       {
  724. record_checksum+=next_link;
  725. next_link=uint4korr(buff+1);
  726. empty+=info->s->base.reclength;
  727.       }
  728.       if (next_link == (uint32) ~0) /* Fix for 64 bit long */
  729. next_link=NI_POS_ERROR;
  730.     }
  731.     if (empty != info->s->state.empty)
  732.     {
  733.       if (test_flag & T_VERBOSE) puts("");
  734.       print_warning("Not used space is supposed to be: %lu but is: %lu",
  735.     (ulong) info->s->state.empty,(ulong) empty);
  736.       info->s->state.empty=empty;
  737.     }
  738.     if (i != 0 || next_link != NI_POS_ERROR)
  739.       goto wrong;
  740.     if (test_flag & T_VERBOSE) puts("n");
  741.   }
  742.   DBUG_RETURN(0);
  743. wrong:
  744.   if (test_flag & T_VERBOSE) puts("");
  745.   print_error("delete-link-chain corrupted");
  746.   DBUG_RETURN(1);
  747. } /* chk_del */
  748. /* Kontrollerar l{nkarna i nyckelfilen */
  749. static int check_k_link(info,nr)
  750. register N_INFO *info;
  751. uint nr;
  752. {
  753.   ulong next_link,records;
  754.   DBUG_ENTER("check_k_link");
  755.   if (testflag & T_VERBOSE)
  756.     printf("index %2d:       ",nr+1);
  757.   next_link=info->s->state.key_del[nr];
  758.   records= (info->s->state.key_file_length /
  759.     info->s->keyinfo[nr].base.block_length);
  760.   while (next_link != NI_POS_ERROR && records > 0)
  761.   {
  762.     if (testflag & T_VERBOSE) printf("%10lu",next_link);
  763.     if (next_link > info->s->state.key_file_length ||
  764. next_link & (info->s->blocksize-1))
  765.       DBUG_RETURN(1);
  766.     if (my_pread(info->s->kfile,(char*) &next_link,sizeof(long),next_link,
  767.  MYF(MY_NABP)))
  768.       DBUG_RETURN(1);
  769.     records--;
  770.     key_file_blocks+=info->s->keyinfo[nr].base.block_length;
  771.   }
  772.   if (testflag & T_VERBOSE)
  773.   {
  774.     if (next_link != NI_POS_ERROR)
  775.       printf("%10lun",next_link);
  776.     else
  777.       puts("");
  778.   }
  779.   DBUG_RETURN (next_link != NI_POS_ERROR);
  780. } /* check_k_link */
  781. /* Kontrollerar storleken p} filerna */
  782. static int chk_size(register N_INFO *info)
  783. {
  784.   int error=0;
  785.   register my_off_t skr,size;
  786.   DBUG_ENTER("chk_size");
  787.   if (!(testflag & T_SILENT)) puts("- check file-size");
  788.   size=my_seek(info->s->kfile,0L,MY_SEEK_END,MYF(0));
  789.   if ((skr=(my_off_t) info->s->state.key_file_length) != size)
  790.   {
  791.     if (skr > size)
  792.     {
  793.       error=1;
  794.       print_error("Size of indexfile is: %-8lu        Should be: %lu",
  795.   (ulong) size, (ulong)  skr);
  796.     }
  797.     else
  798.       print_warning("Size of indexfile is: %-8lu      Should be: %lu",
  799.     (ulong) size,(ulong) skr);
  800.   }
  801.   if (!(testflag & T_VERY_SILENT) &&
  802.       ! (info->s->base.options & HA_OPTION_COMPRESS_RECORD) &&
  803.       info->s->state.key_file_length >
  804.       (ulong) (ulong_to_double(info->s->base.max_key_file_length)*0.9))
  805.     print_warning("Keyfile is almost full, %10lu of %10lu used",
  806.   info->s->state.key_file_length,
  807.   info->s->base.max_key_file_length-1);
  808.   size=my_seek(info->dfile,0L,MY_SEEK_END,MYF(0));
  809.   skr=(my_off_t) info->s->state.data_file_length;
  810.   if (info->s->base.options & HA_OPTION_COMPRESS_RECORD)
  811.     skr+= MEMMAP_EXTRA_MARGIN;
  812. #ifdef USE_RELOC
  813.   if (info->data_file_type == STATIC_RECORD &&
  814.       skr < (my_off_t) info->s->base.reloc*info->s->base.min_pack_length)
  815.     skr=(my_off_t) info->s->base.reloc*info->s->base.min_pack_length;
  816. #endif
  817.   if (skr != size)
  818.   {
  819.     info->s->state.data_file_length=(ulong) size; /* Skipp other errors */
  820.     if (skr > size && skr != size + MEMMAP_EXTRA_MARGIN)
  821.     {
  822.       error=1;
  823.       print_error("Size of datafile is: %-8lu         Should be: %lu",
  824.   (ulong) size,(ulong) skr);
  825.     }
  826.     else
  827.     {
  828.       print_warning("Size of datafile is: %-8lu       Should be: %lu",
  829.     (ulong) size,(ulong) skr);
  830.     }
  831.   }
  832.   if (!(testflag & T_VERY_SILENT) &&
  833.       !(info->s->base.options & HA_OPTION_COMPRESS_RECORD) &&
  834.       info->s->state.data_file_length >
  835.       (ulong) (ulong_to_double(info->s->base.max_data_file_length)*0.9))
  836.     print_warning("Datafile is almost full, %10lu of %10lu used",
  837.   info->s->state.data_file_length,
  838.   info->s->base.max_data_file_length-1);
  839.   DBUG_RETURN(error);
  840. } /* chk_size */
  841. /* Kontrollerar nycklarna */
  842. static int chk_key(info)
  843. register N_INFO *info;
  844. {
  845.   uint key;
  846.   ulong keys,all_keydata,all_totaldata,key_totlength,length,
  847. init_checksum,old_record_checksum;
  848.   ISAM_SHARE *share=info->s;
  849.   N_KEYDEF *keyinfo;
  850.   DBUG_ENTER("chk_key");
  851.   if (!(testflag & T_SILENT)) puts("- check index reference");
  852.   all_keydata=all_totaldata=key_totlength=old_record_checksum=0;
  853.   init_checksum=record_checksum;
  854.   if (!(share->base.options &
  855. (HA_OPTION_PACK_RECORD | HA_OPTION_COMPRESS_RECORD)))
  856.     old_record_checksum=calc_checksum(share->state.records+share->state.del-1)*
  857.       share->base.reclength;
  858.   for (key= 0,keyinfo= &share->keyinfo[0]; key < share->state.keys ;
  859.        key++,keyinfo++)
  860.   {
  861.     record_checksum=init_checksum;
  862.     unique_count=0L;
  863.     if ((!(testflag & T_SILENT)) && share->state.keys >1)
  864.       printf ("- check data record references index: %dn",key+1);
  865.     if (share->state.key_root[key] == NI_POS_ERROR &&
  866. share->state.records == 0)
  867.       continue;
  868.     if (!_nisam_fetch_keypage(info,keyinfo,share->state.key_root[key],info->buff,
  869.    0))
  870.     {
  871.       print_error("Can't read indexpage from filepos: %lu",
  872.   (ulong) share->state.key_root[key]);
  873.       DBUG_RETURN(-1);
  874.     }
  875.     key_file_blocks+=keyinfo->base.block_length;
  876.     keys=keydata=totaldata=key_blocks=0; max_level=0;
  877.     if (chk_index(info,keyinfo,share->state.key_root[key],info->buff,&keys,1))
  878.       DBUG_RETURN(-1);
  879.     if (keys != share->state.records)
  880.     {
  881.       print_error("Found %lu keys of %lu",(ulong) keys,
  882.   (ulong) share->state.records);
  883.       DBUG_RETURN(-1);
  884.     }
  885.     if (!key && (share->base.options &
  886.  (HA_OPTION_PACK_RECORD | HA_OPTION_COMPRESS_RECORD)))
  887.       old_record_checksum=record_checksum;
  888.     else if (old_record_checksum != record_checksum)
  889.     {
  890.       if (key)
  891. print_error("Key %u doesn't point at same records that key 1",
  892.     key+1);
  893.       else
  894. print_error("Key 1 doesn't point at all records");
  895.       DBUG_RETURN(-1);
  896.     }
  897.     length=(ulong) isam_key_length(info,keyinfo)*keys + key_blocks*2;
  898.     if (testflag & T_INFO && totaldata != 0L && keys != 0L)
  899.       printf("Key: %2d:  Keyblocks used: %3d%%  Packed: %4d%%  Max levels: %2dn",
  900.      key+1,
  901.      (int) (keydata*100.0/totaldata),
  902.      (int) ((long) (length-keydata)*100.0/(double) length),
  903.      max_level);
  904.     all_keydata+=keydata; all_totaldata+=totaldata; key_totlength+=length;
  905.     share->base.rec_per_key[key]=
  906.       unique_count ? ((share->state.records+unique_count/2)/
  907.       unique_count) : 1L;
  908.   }
  909.   if (testflag & T_INFO)
  910.   {
  911.     if (all_totaldata != 0L && share->state.keys != 1)
  912.       printf("Total:    Keyblocks used: %3d%%  Packed: %4d%%nn",
  913.      (int) (all_keydata*100.0/all_totaldata),
  914.      (int) ((long) (key_totlength-all_keydata)*100.0/
  915.     (double) key_totlength));
  916.     else if (all_totaldata != 0L && share->state.keys)
  917.       puts("");
  918.   }
  919.   if (key_file_blocks != share->state.key_file_length)
  920.     print_warning("Some data are unreferenced in keyfile");
  921.   record_checksum-=init_checksum; /* Remove delete links */
  922.   if (testflag & T_STATISTICS)
  923.     DBUG_RETURN(update_state_info(info,UPDATE_STAT));
  924.   DBUG_RETURN(0);
  925. } /* chk_key */
  926. /* Check if index is ok */
  927. static int chk_index(info,keyinfo,page,buff,keys,level)
  928. N_INFO *info;
  929. N_KEYDEF *keyinfo;
  930. ulong page,*keys;
  931. uchar *buff;
  932. uint level;
  933. {
  934.   int flag;
  935.   uint used_length,comp_flag,nod_flag;
  936.   uchar key[N_MAX_POSSIBLE_KEY_BUFF],*temp_buff,*keypos,*endpos;
  937.   ulong next_page,record;
  938.   DBUG_ENTER("chk_index");
  939.   DBUG_DUMP("buff",(byte*) buff,getint(buff));
  940.   if (!(temp_buff=(uchar*) my_alloca((uint) keyinfo->base.block_length)))
  941.   {
  942.     print_error("Not Enough memory");
  943.     DBUG_RETURN(-1);
  944.   }
  945.   if (keyinfo->base.flag & HA_NOSAME)
  946.     comp_flag=SEARCH_FIND; /* Not dupplicates */
  947.   else
  948.     comp_flag=SEARCH_SAME; /* Keys in positionorder */
  949.   nod_flag=test_if_nod(buff);
  950.   used_length=getint(buff);
  951.   keypos=buff+2+nod_flag;
  952.   endpos=buff+used_length;
  953.   keydata+=used_length; totaldata+=keyinfo->base.block_length; /* INFO */
  954.   key_blocks++;
  955.   if (level > max_level)
  956.     max_level=level;
  957.   if (used_length > keyinfo->base.block_length)
  958.   {
  959.     print_error("Wrong pageinfo at page: %lu",(ulong) page);
  960.     goto err;
  961.   }
  962.   for ( ;; )
  963.   {
  964.     if (nod_flag)
  965.     {
  966.       next_page=_nisam_kpos(nod_flag,keypos);
  967.       if (next_page > info->s->state.key_file_length ||
  968.   (nod_flag && (next_page & (info->s->blocksize -1))))
  969.       {
  970. my_off_t max_length=my_seek(info->s->kfile,0L,MY_SEEK_END,MYF(0));
  971. print_error("Wrong pagepointer: %lu at page: %lu",
  972.     (ulong) next_page,(ulong) page);
  973. if (next_page+info->s->blocksize > max_length)
  974.   goto err;
  975. info->s->state.key_file_length=(ulong) (max_length &
  976. ~ (my_off_t)
  977. (info->s->blocksize-1));
  978.       }
  979.       if (!_nisam_fetch_keypage(info,keyinfo,next_page,temp_buff,0))
  980.       {
  981. print_error("Can't read key from filepos: %lu",(ulong) next_page);
  982. goto err;
  983.       }
  984.       key_file_blocks+=keyinfo->base.block_length;
  985.       if (chk_index(info,keyinfo,next_page,temp_buff,keys,level+1))
  986. goto err;
  987.     }
  988.     if (keypos >= endpos ||
  989. (*keyinfo->get_key)(keyinfo,nod_flag,&keypos,key) == 0)
  990.       break;
  991.     if ((*keys)++ &&
  992. (flag=_nisam_key_cmp(keyinfo->seg,info->lastkey,key,0,comp_flag)) >=0)
  993.     {
  994.       DBUG_DUMP("old",(byte*) info->lastkey,
  995. _nisam_keylength(keyinfo,info->lastkey));
  996.       DBUG_DUMP("new",(byte*) key,_nisam_keylength(keyinfo,key));
  997.       if (comp_flag == SEARCH_FIND && flag == 0)
  998. print_error("Found dupplicated key at page %lu",(ulong) page);
  999.       else
  1000. print_error("Key in wrong position at page %lu",(ulong) page);
  1001.       goto err;
  1002.     }
  1003.     if (testflag & T_STATISTICS)
  1004.     {
  1005.       if (*keys == 1L ||
  1006.   _nisam_key_cmp(keyinfo->seg,info->lastkey,key,0,SEARCH_FIND))
  1007. unique_count++;
  1008.     }
  1009.     VOID(_nisam_move_key(keyinfo,(uchar*) info->lastkey,key));
  1010.     record= _nisam_dpos(info,nod_flag,keypos);
  1011.     if (record >= info->s->state.data_file_length)
  1012.     {
  1013.       print_error("Found key at page %lu that points to record outside datafile",page);
  1014.       DBUG_PRINT("test",("page: %lu  record: %lu  filelength: %lu",
  1015.  (ulong) page,(ulong) record,
  1016.  (ulong) info->s->state.data_file_length));
  1017.       DBUG_DUMP("key",(byte*) info->lastkey,info->s->base.max_key_length);
  1018.       goto err;
  1019.     }
  1020.     record_checksum+=record;
  1021.   }
  1022.   if (keypos != endpos)
  1023.   {
  1024.     print_error("Keyblock size at page %lu is not correct.  Block length: %d  key length: %d",(ulong) page, used_length, (keypos - buff));
  1025.     goto err;
  1026.   }
  1027.   my_afree((byte*) temp_buff);
  1028.   DBUG_RETURN(0);
  1029.  err:
  1030.   my_afree((byte*) temp_buff);
  1031.   DBUG_RETURN(1);
  1032. } /* chk_index */
  1033. /* Calculate a checksum of 1+2+3+4...N = N*(N+1)/2 without overflow */
  1034. static ulong calc_checksum(count)
  1035. ulong count;
  1036. {
  1037.   ulong sum,a,b;
  1038.   DBUG_ENTER("calc_checksum");
  1039.   sum=0;
  1040.   a=count; b=count+1;
  1041.   if (a & 1)
  1042.     b>>=1;
  1043.   else
  1044.     a>>=1;
  1045.   while (b)
  1046.   {
  1047.     if (b & 1)
  1048.       sum+=a;
  1049.     a<<=1; b>>=1;
  1050.   }
  1051.   DBUG_PRINT("exit",("sum: %lx",sum));
  1052.   DBUG_RETURN(sum);
  1053. } /* calc_checksum */
  1054. /* Calc length of key in normal isam */
  1055. static uint isam_key_length(info,keyinfo)
  1056. N_INFO *info;
  1057. reg1 N_KEYDEF *keyinfo;
  1058. {
  1059.   uint length;
  1060.   N_KEYSEG *keyseg;
  1061.   DBUG_ENTER("isam_key_length");
  1062.   length= info->s->rec_reflength;
  1063.   for (keyseg=keyinfo->seg ; keyseg->base.type ; keyseg++)
  1064.     length+= keyseg->base.length;
  1065.   DBUG_PRINT("exit",("length: %d",length));
  1066.   DBUG_RETURN(length);
  1067. } /* key_length */
  1068. /* Check that record-link is ok */
  1069. static int chk_data_link(info,extend)
  1070. reg1 N_INFO *info;
  1071. int extend;
  1072. {
  1073.   int error,got_error,flag;
  1074.   uint key,left_length,b_type;
  1075.   ulong records,del_blocks,used,empty,pos,splitts,start_recpos,
  1076. del_length,link_used,intern_record_checksum,start_block;
  1077.   byte *record,*to;
  1078.   N_KEYDEF *keyinfo;
  1079.   BLOCK_INFO block_info;
  1080.   DBUG_ENTER("chk_data_link");
  1081.   if (! (info->s->base.options & (HA_OPTION_PACK_RECORD |
  1082.        HA_OPTION_COMPRESS_RECORD)) &&
  1083.       ! extend)
  1084.     DBUG_RETURN(0);
  1085.   if (!(testflag & T_SILENT))
  1086.   {
  1087.     if (extend)
  1088.       puts("- check records and index references");
  1089.     else
  1090.       puts("- check record links");
  1091.   }
  1092.   if (!(record= (byte*) my_alloca(info->s->base.reclength)))
  1093.   {
  1094.     print_error("Not Enough memory");
  1095.     DBUG_RETURN(-1);
  1096.   }
  1097.   records=used=link_used=splitts=del_blocks=del_length=
  1098.     intern_record_checksum=crc=0L;
  1099.   LINT_INIT(left_length);  LINT_INIT(start_recpos);  LINT_INIT(to);
  1100.   got_error=error=0;
  1101.   empty=pos=info->s->pack.header_length;
  1102.   while (pos < info->s->state.data_file_length)
  1103.   {
  1104.     switch (info->s->data_file_type) {
  1105.     case STATIC_RECORD:
  1106.       if (my_b_read(&read_cache,(byte*) record,info->s->base.reclength))
  1107. goto err;
  1108.       start_recpos=pos;
  1109.       pos+=info->s->base.reclength;
  1110.       splitts++;
  1111.       if (*record == '')
  1112.       {
  1113. del_blocks++;
  1114. del_length+=info->s->base.reclength;
  1115. continue; /* Record removed */
  1116.       }
  1117.       used+=info->s->base.reclength;
  1118.       break;
  1119.     case DYNAMIC_RECORD:
  1120.       flag=block_info.second_read=0;
  1121.       block_info.next_filepos=pos;
  1122.       do
  1123.       {
  1124. if (_nisam_read_cache(&read_cache,(byte*) block_info.header,
  1125.   (start_block=block_info.next_filepos),
  1126.   sizeof(block_info.header),test(! flag) | 2))
  1127.   goto err;
  1128. b_type=_nisam_get_block_info(&block_info,-1,start_block);
  1129. if (b_type & (BLOCK_DELETED | BLOCK_ERROR | BLOCK_SYNC_ERROR |
  1130.       BLOCK_FATAL_ERROR))
  1131. {
  1132.   if (b_type & BLOCK_SYNC_ERROR)
  1133.   {
  1134.     if (flag)
  1135.     {
  1136.       print_error("Unexpected byte: %d at link: %lu",
  1137.   (int) block_info.header[0],(ulong) start_block);
  1138.       goto err2;
  1139.     }
  1140.     pos=block_info.filepos+block_info.block_len;
  1141.     goto next;
  1142.   }
  1143.   if (b_type & BLOCK_DELETED)
  1144.   {
  1145.     if (block_info.block_len < info->s->base.min_block_length ||
  1146. block_info.block_len-4 > (uint) info->s->base.max_pack_length)
  1147.     {
  1148.       print_error("Deleted block with impossible length %u at %lu",
  1149.  block_info.block_len,(ulong) pos);
  1150.       goto err2;
  1151.     }
  1152.     del_blocks++;
  1153.     del_length+=block_info.block_len;
  1154.     pos=block_info.filepos+block_info.block_len;
  1155.     splitts++;
  1156.     goto next;
  1157.   }
  1158.   print_error("Wrong bytesec: %d-%d-%d at linkstart: %lu",
  1159.       block_info.header[0],block_info.header[1],
  1160.       block_info.header[2],(ulong) start_block);
  1161.   goto err2;
  1162. }
  1163. if (info->s->state.data_file_length < block_info.filepos+
  1164.     block_info.block_len)
  1165. {
  1166.   print_error("Recordlink that points outside datafile at %lu",
  1167.       (ulong) pos);
  1168.   got_error=1;
  1169.   break;
  1170. }
  1171. splitts++;
  1172. if (!flag++) /* First block */
  1173. {
  1174.   start_recpos=pos;
  1175.   pos=block_info.filepos+block_info.block_len;
  1176.   if (block_info.rec_len > (uint) info->s->base.max_pack_length)
  1177.   {
  1178.     print_error("Found too long record at %lu",(ulong) start_recpos);
  1179.     got_error=1;
  1180.     break;
  1181.   }
  1182.   if (info->s->base.blobs)
  1183.   {
  1184.     if (!(to=fix_rec_buff_for_blob(info,block_info.rec_len)))
  1185.     {
  1186.       print_error("Not enough memory for blob at %lu",
  1187.   (ulong) start_recpos);
  1188.       got_error=1;
  1189.       break;
  1190.     }
  1191.   }
  1192.   else
  1193.     to= info->rec_buff;
  1194.   left_length=block_info.rec_len;
  1195. }
  1196. if (left_length < block_info.data_len)
  1197. {
  1198.   print_error("Found too long record at %lu",(ulong) start_recpos);
  1199.   got_error=1; break;
  1200. }
  1201. if (_nisam_read_cache(&read_cache,(byte*) to,block_info.filepos,
  1202.   (uint) block_info.data_len, test(flag == 1)))
  1203.   goto err;
  1204. to+=block_info.data_len;
  1205. link_used+= block_info.filepos-start_block;
  1206. used+= block_info.filepos - start_block + block_info.data_len;
  1207. empty+=block_info.block_len-block_info.data_len;
  1208. left_length-=block_info.data_len;
  1209. if (left_length)
  1210. {
  1211.   if (b_type & BLOCK_LAST)
  1212.   {
  1213.     print_error("Record link to short for record at %lu",
  1214. (ulong) start_recpos);
  1215.     got_error=1;
  1216.     break;
  1217.   }
  1218.   if (info->s->state.data_file_length < block_info.next_filepos)
  1219.   {
  1220.     print_error("Found next-recordlink that points outside datafile at %lu",
  1221. (ulong) block_info.filepos);
  1222.     got_error=1;
  1223.     break;
  1224.   }
  1225. }
  1226.       } while (left_length);
  1227.       if (! got_error)
  1228.       {
  1229. if (_nisam_rec_unpack(info,record,info->rec_buff,block_info.rec_len) ==
  1230.     MY_FILE_ERROR)
  1231. {
  1232.   print_error("Found wrong record at %lu",(ulong) start_recpos);
  1233.   got_error=1;
  1234. }
  1235. if (testflag & (T_EXTEND | T_VERBOSE))
  1236. {
  1237.   if (_nisam_rec_check(info,record))
  1238.   {
  1239.     print_error("Found wrong packed record at %lu",
  1240. (ulong) start_recpos);
  1241.     got_error=1;
  1242.   }
  1243. }
  1244.       }
  1245.       else if (!flag)
  1246. pos=block_info.filepos+block_info.block_len;
  1247.       break;
  1248.     case COMPRESSED_RECORD:
  1249.       if (_nisam_read_cache(&read_cache,(byte*) block_info.header,pos, 3,1))
  1250. goto err;
  1251.       start_recpos=pos;
  1252.       splitts++;
  1253.       VOID(_nisam_pack_get_block_info(&block_info,info->s->pack.ref_length,-1,
  1254.    start_recpos));
  1255.       pos=start_recpos+info->s->pack.ref_length+block_info.rec_len;
  1256.       if (block_info.rec_len < (uint) info->s->min_pack_length ||
  1257.   block_info.rec_len > (uint) info->s->max_pack_length)
  1258.       {
  1259. print_error("Found block with wrong recordlength: %d at %lu",
  1260.     block_info.rec_len,(ulong) start_recpos);
  1261. got_error=1;
  1262. break;
  1263.       }
  1264.       if (_nisam_read_cache(&read_cache,(byte*) info->rec_buff,
  1265. block_info.filepos, block_info.rec_len,1))
  1266. goto err;
  1267.       if (_nisam_pack_rec_unpack(info,record,info->rec_buff,block_info.rec_len))
  1268.       {
  1269. print_error("Found wrong record at %lu",(ulong) start_recpos);
  1270. got_error=1;
  1271.       }
  1272.       crc^=checksum(record,info->s->base.reclength);
  1273.       link_used+=info->s->pack.ref_length;
  1274.       used+=block_info.rec_len+info->s->pack.ref_length;
  1275.     }
  1276.     if (! got_error)
  1277.     {
  1278.       intern_record_checksum+=start_recpos;
  1279.       records++;
  1280.       if (testflag & T_WRITE_LOOP && records % WRITE_COUNT == 0)
  1281.       {
  1282. printf("%lur",(ulong) records); VOID(fflush(stdout));
  1283.       }
  1284.       if (extend)
  1285.       {
  1286. for (key=0,keyinfo= info->s->keyinfo; key<info->s->state.keys;
  1287.      key++,keyinfo++)
  1288. {
  1289.   VOID(_nisam_make_key(info,key,info->lastkey,record,start_recpos));
  1290.   if (_nisam_search(info,keyinfo,info->lastkey,0,SEARCH_SAME,
  1291.  info->s->state.key_root[key]))
  1292.   {
  1293.     print_error("Record at: %10lu  Can't find key for index: %2d",
  1294. start_recpos,key+1);
  1295.     if (error++ > MAXERR || !(testflag & T_VERBOSE))
  1296.       goto err2;
  1297.   }
  1298. }
  1299.       }
  1300.     }
  1301.     else
  1302.     {
  1303.       got_error=0;
  1304.       if (error++ > MAXERR || !(testflag & T_VERBOSE))
  1305. goto err2;
  1306.     }
  1307.   next:; /* Next record */
  1308.   }
  1309.   if (testflag & T_WRITE_LOOP)
  1310.   {
  1311.     VOID(fputs("          r",stdout)); VOID(fflush(stdout));
  1312.   }
  1313.   if (records != info->s->state.records)
  1314.   {
  1315.     print_error("Record-count is not ok; is %-10lu   Should be: %lu",
  1316. (ulong) records,(ulong) info->s->state.records);
  1317.     error=1;
  1318.   }
  1319.   else if (record_checksum != intern_record_checksum && info->s->state.keys)
  1320.   {
  1321.     print_error("Keypointers and records don't match");
  1322.     error=1;
  1323.   }
  1324.   if (used+empty+del_length != info->s->state.data_file_length)
  1325.   {
  1326.     print_warning("Found %lu record-data and %lu unused data and %lu deleted-datanTotal %lu, Should be: %lu",
  1327.   (ulong) used,(ulong) empty,(ulong) del_length,
  1328.   (ulong) (used+empty+del_length),
  1329.   (ulong) info->s->state.data_file_length);
  1330.   }
  1331.   if (del_blocks != info->s->state.del)
  1332.   {
  1333.     print_warning("Found %10lu deleted blocks       Should be: %lu",
  1334.   (ulong) del_blocks,(ulong) info->s->state.del);
  1335.   }
  1336.   if (splitts != info->s->state.splitt)
  1337.   {
  1338.     print_warning("Found %10lu parts                Should be: %lu parts",
  1339.   (ulong) splitts,(ulong) info->s->state.splitt);
  1340.   }
  1341.   if ((info->s->base.options & HA_OPTION_COMPRESS_RECORD) &&
  1342.       crc != info->s->state.uniq)
  1343.     print_warning("Wrong checksum for records; Restore uncompressed table");
  1344.   if (testflag & T_INFO)
  1345.   {
  1346.     if (warning_printed || error_printed)
  1347.       puts("");
  1348.     if (used != 0 && ! error_printed)
  1349.     {
  1350.       printf("Records:%17lu    M.recordlength:%8lu   Packed:%14.0f%%n",
  1351.      records, (used-link_used)/records,
  1352.      (info->s->base.blobs ? 0 :
  1353.       (ulong_to_double(info->s->base.reclength*records)-used)/
  1354.       ulong_to_double(info->s->base.reclength*records)*100.0));
  1355.       printf("Recordspace used:%8.0f%%   Empty space:%11d%%  Blocks/Record: %6.2fn",
  1356.      (ulong_to_double(used-link_used)/ulong_to_double(used-link_used+empty)*100.0),
  1357.      (!records ? 100 : (int) (ulong_to_double(del_length+empty)/used*100.0)),
  1358.      ulong_to_double(splitts - del_blocks) / records);
  1359.     }
  1360.     printf("Record blocks:%12lu    Delete blocks:%10lun",
  1361.    splitts-del_blocks,del_blocks);
  1362.     printf("Record data:  %12lu    Deleted data :%10lun",
  1363.    used-link_used,del_length);
  1364.     printf("Lost space:   %12lu    Linkdata:    %10lun",
  1365.    empty,link_used);
  1366.   }
  1367.   my_afree((gptr) record);
  1368.   DBUG_RETURN (error);
  1369.  err:
  1370.   print_error("got error: %d when reading datafile",my_errno);
  1371.  err2:
  1372.   my_afree((gptr) record);
  1373.   DBUG_RETURN(1);
  1374. } /* chk_data_link */
  1375. /* Recover old table by reading each record and writing all keys */
  1376. /* Save new datafile-name in temp_filename */
  1377. static int rep(info,name)
  1378. reg1 N_INFO *info;
  1379. my_string name;
  1380. {
  1381.   int error,got_error;
  1382.   uint i;
  1383.   ulong start_records,new_header_length,del;
  1384.   File new_file;
  1385.   ISAM_SHARE *share=info->s;
  1386.   DBUG_ENTER("rep");
  1387.   start_records=share->state.records;
  1388.   new_header_length=(testflag & T_UNPACK) ? 0L : share->pack.header_length;
  1389.   got_error=1;
  1390.   new_file= -1;
  1391.   if (!(testflag & T_SILENT))
  1392.   {
  1393.     printf("- recovering ISAM-table '%s'n",name);
  1394.     printf("Data records: %lun",(ulong) share->state.records);
  1395.   }
  1396.   VOID(init_key_cache(use_buffers,NEAD_MEM));
  1397.   if (init_io_cache(&read_cache,info->dfile,(uint) read_buffer_length,
  1398.    READ_CACHE,share->pack.header_length,1,MYF(MY_WME)))
  1399.     goto err;
  1400.   if (!rep_quick)
  1401.     if (init_io_cache(&info->rec_cache,-1,(uint) write_buffer_length,
  1402.       WRITE_CACHE, new_header_length, 1,
  1403.       MYF(MY_WME | MY_WAIT_IF_FULL)))
  1404.       goto err;
  1405.   info->opt_flag|=WRITE_CACHE_USED;
  1406.   sort_info.start_recpos=0;
  1407.   sort_info.buff=0; sort_info.buff_length=0;
  1408.   if (!(sort_info.record=(byte*) my_alloca((uint) share->base.reclength)))
  1409.   {
  1410.     print_error("Not Enough memory");
  1411.     goto err;
  1412.   }
  1413.   if (!rep_quick)
  1414.   {
  1415.     if ((new_file=my_create(fn_format(temp_filename,name,"",DATA_TMP_EXT,
  1416.       2+4),
  1417.     0,tmpfile_createflag,MYF(0))) < 0)
  1418.     {
  1419.       print_error("Can't create new tempfile: '%s'",temp_filename);
  1420.       goto err;
  1421.     }
  1422.     if (filecopy(new_file,info->dfile,0L,new_header_length,"datafile-header"))
  1423.       goto err;
  1424.     share->state.dellink= NI_POS_ERROR;
  1425.     info->rec_cache.file=new_file;
  1426.     if (testflag & T_UNPACK)
  1427.       share->base.options&= ~HA_OPTION_COMPRESS_RECORD;
  1428.   }
  1429.   sort_info.info=info;
  1430.   sort_info.pos=sort_info.max_pos=share->pack.header_length;
  1431.   sort_info.filepos=new_header_length;
  1432.   read_cache.end_of_file=sort_info.filelength=(ulong)
  1433.     my_seek(info->dfile,0L,MY_SEEK_END,MYF(0));
  1434.   sort_info.dupp=0;
  1435.   sort_info.fix_datafile= (my_bool) (! rep_quick);
  1436.   sort_info.max_records=LONG_MAX;
  1437.   if ((sort_info.new_data_file_type=share->data_file_type) ==
  1438.       COMPRESSED_RECORD && testflag & T_UNPACK)
  1439.   {
  1440.     if (share->base.options & HA_OPTION_PACK_RECORD)
  1441.       sort_info.new_data_file_type = DYNAMIC_RECORD;
  1442.     else
  1443.       sort_info.new_data_file_type = STATIC_RECORD;
  1444.   }
  1445.   del=share->state.del;
  1446.   share->state.records=share->state.del=share->state.empty=
  1447.     share->state.splitt=0;
  1448.   info->update= (short) (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  1449.   for (i=0 ; i < N_MAXKEY ; i++)
  1450.     share->state.key_del[i]=share->state.key_root[i]= NI_POS_ERROR;
  1451.   share->state.key_file_length=share->base.keystart;
  1452.   lock_memory(); /* Everything is alloced */
  1453.   while (!(error=sort_get_next_record()))
  1454.   {
  1455.     if (writekeys(info,(byte*) sort_info.record,sort_info.filepos))
  1456.     {
  1457.       if (my_errno != HA_ERR_FOUND_DUPP_KEY) goto err;
  1458.       DBUG_DUMP("record",(byte*) sort_info.record,share->base.pack_reclength);
  1459.       print_info("Dupplicate key %2d for record at %10lu against new record at %10lu",info->errkey+1,sort_info.start_recpos,info->int_pos);
  1460.       if (testflag & T_VERBOSE)
  1461.       {
  1462. VOID(_nisam_make_key(info,(uint) info->errkey,info->lastkey,
  1463.      sort_info.record,0L));
  1464. _nisam_print_key(stdout,share->keyinfo[info->errkey].seg,info->lastkey);
  1465.       }
  1466.       sort_info.dupp++;
  1467.       if (rep_quick == 1)
  1468.       {
  1469. error_printed=1;
  1470. goto err;
  1471.       }
  1472.       continue;
  1473.     }
  1474.     if (sort_write_record())
  1475.       goto err;
  1476.   }
  1477.   if (error > 0 || write_data_suffix(info) ||
  1478.       flush_io_cache(&info->rec_cache) || read_cache.error < 0)
  1479.     goto err;
  1480.   if (testflag & T_WRITE_LOOP)
  1481.   {
  1482.     VOID(fputs("          r",stdout)); VOID(fflush(stdout));
  1483.   }
  1484.   if (my_chsize(share->kfile,share->state.key_file_length,MYF(0)))
  1485.   {
  1486.     print_warning("Can't change size of indexfile, error: %d",my_errno);
  1487.     goto err;
  1488.   }
  1489.   if (rep_quick && del+sort_info.dupp != share->state.del)
  1490.   {
  1491.     print_error("Couldn't fix table with quick recovery: Found wrong number of deleted records");
  1492.     print_error("Run recovery again without -q");
  1493.     got_error=1;
  1494.     goto err;
  1495.   }
  1496.   if (!rep_quick)
  1497.   {
  1498.     info->dfile=new_file;
  1499.     share->state.data_file_length=sort_info.filepos;
  1500.     share->state.splitt=share->state.records; /* Only hole records */
  1501.     out_flag|=O_NEW_DATA; /* Data in new file */
  1502.     share->state.version=(ulong) time((time_t*) 0); /* Force reopen */
  1503.   }
  1504.   else
  1505.     share->state.data_file_length=sort_info.max_pos;
  1506.   if (!(testflag & T_SILENT))
  1507.   {
  1508.     if (start_records != share->state.records)
  1509.       printf("Data records: %lun",(ulong) share->state.records);
  1510.     if (sort_info.dupp)
  1511.       print_warning("%lu records have been removed",(ulong) sort_info.dupp);
  1512.   }
  1513.   got_error=0;
  1514. err:
  1515.   if (got_error)
  1516.   {
  1517.     if (! error_printed)
  1518.       print_error("%d for record at pos %lu",my_errno,
  1519.   (ulong) sort_info.start_recpos);
  1520.     if (new_file >= 0)
  1521.     {
  1522.       VOID(my_close(new_file,MYF(0)));
  1523.       VOID(my_delete(temp_filename,MYF(MY_WME)));
  1524.     }
  1525.   }
  1526.   if (sort_info.record)
  1527.   {
  1528.     my_afree(sort_info.record);
  1529.   }
  1530.   my_free(sort_info.buff,MYF(MY_ALLOW_ZERO_PTR));
  1531.   VOID(end_io_cache(&read_cache));
  1532.   info->opt_flag&= ~(READ_CACHE_USED | WRITE_CACHE_USED);
  1533.   VOID(end_io_cache(&info->rec_cache));
  1534.   got_error|=flush_blocks(share->kfile);
  1535.   if (!got_error && testflag & T_UNPACK)
  1536.   {
  1537.     share->state.header.options[0]&= (uchar) ~HA_OPTION_COMPRESS_RECORD;
  1538.     share->pack.header_length=0;
  1539.     share->data_file_type=sort_info.new_data_file_type;
  1540.   }
  1541.   DBUG_RETURN(got_error);
  1542. } /* rep */
  1543. /* Uppdaterar nyckelfilen i samband med reparation */
  1544. static int writekeys(register N_INFO *info,byte *buff,ulong filepos)
  1545. {
  1546.   register uint i;
  1547.   uchar *key;
  1548.   DBUG_ENTER("writekeys");
  1549.   key=info->lastkey+info->s->base.max_key_length;
  1550.   for (i=0 ; i < info->s->state.keys ; i++)
  1551.   {
  1552.     VOID(_nisam_make_key(info,i,key,buff,filepos));
  1553.     if (_nisam_ck_write(info,i,key)) goto err;
  1554.   }
  1555.   DBUG_RETURN(0);
  1556.  err:
  1557.   if (my_errno == HA_ERR_FOUND_DUPP_KEY)
  1558.   {
  1559.     info->errkey=(int) i; /* This key was found */
  1560.     while ( i-- > 0 )
  1561.     {
  1562.       VOID(_nisam_make_key(info,i,key,buff,filepos));
  1563.       if (_nisam_ck_delete(info,i,key)) break;
  1564.     }
  1565.   }
  1566.   DBUG_PRINT("error",("errno: %d",my_errno));
  1567.   DBUG_RETURN(-1);
  1568. } /* writekeys */
  1569.  /* Write info about table */
  1570. static void descript(info,name)
  1571. reg1 N_INFO *info;
  1572. my_string name;
  1573. {
  1574.   uint key,field,start,len;
  1575.   reg3 N_KEYDEF *keyinfo;
  1576.   reg2 N_KEYSEG *keyseg;
  1577.   reg4 const char *text;
  1578.   char buff[40],length[10],*pos,*end;
  1579.   enum en_fieldtype type;
  1580.   ISAM_SHARE *share=info->s;
  1581.   DBUG_ENTER("describe");
  1582.   printf("nISAM file:     %sn",name);
  1583.   if (testflag & T_VERBOSE)
  1584.   {
  1585.     printf("Isam-version:  %dn",(int) share->state.header.file_version[3]);
  1586.     if (share->base.create_time)
  1587.     {
  1588.       get_date(buff,1,share->base.create_time);
  1589.       printf("Creation time: %sn",buff);
  1590.     }
  1591.     if (share->base.isamchk_time)
  1592.     {
  1593.       get_date(buff,1,share->base.isamchk_time);
  1594.       printf("Recover time:  %sn",buff);
  1595.     }
  1596.   }
  1597.   printf("Data records:        %10lu  Deleted blocks:     %10lun",
  1598.  share->state.records,share->state.del);
  1599.   if (testflag & T_SILENT)
  1600.     DBUG_VOID_RETURN; /* This is enough */
  1601.   if (testflag & T_VERBOSE)
  1602.   {
  1603. #ifdef USE_RELOC
  1604.     printf("Init-relocation:     %10lun",share->base.reloc);
  1605. #endif
  1606.     printf("Datafile  Parts:     %10lu  Deleted data:       %10lun",
  1607.    share->state.splitt,share->state.empty);
  1608.     printf("Datafile pointer (bytes):%6d  Keyfile pointer (bytes):%6dn",
  1609.    share->rec_reflength,share->base.key_reflength);
  1610.     if (info->s->base.reloc == 1L && info->s->base.records == 1L)
  1611.       puts("This is a one-record table");
  1612.     else
  1613.     {
  1614.       if (share->base.max_data_file_length != NI_POS_ERROR ||
  1615.   share->base.max_key_file_length != NI_POS_ERROR)
  1616. printf("Max datafile length: %10lu  Max keyfile length: %10lun",
  1617.        share->base.max_data_file_length-1,
  1618.        share->base.max_key_file_length-1);
  1619.     }
  1620.   }
  1621.   printf("Recordlength:        %10dn",(int) share->base.reclength);
  1622.   VOID(fputs("Record format: ",stdout));
  1623.   if (share->base.options & HA_OPTION_COMPRESS_RECORD)
  1624.     puts("Compressed");
  1625.   else if (share->base.options & HA_OPTION_PACK_RECORD)
  1626.     puts("Packed");
  1627.   else
  1628.     puts("Fixed length");
  1629.   if (share->state.keys != share->base.keys)
  1630.     printf("Using only %d keys of %d possibly keysn",share->state.keys,
  1631.    share->base.keys);
  1632.   puts("ntable description:");
  1633.   printf("Key Start Len Index   Type");
  1634.   if (testflag & T_VERBOSE)
  1635.     printf("                       Root  Blocksize    Rec/key");
  1636.   VOID(putchar('n'));
  1637.   for (key=0, keyinfo= &share->keyinfo[0] ; key < share->base.keys;
  1638.        key++,keyinfo++)
  1639.   {
  1640.     keyseg=keyinfo->seg;
  1641.     if (keyinfo->base.flag & HA_NOSAME) text="unique ";
  1642.     else text="multip.";
  1643.     pos=buff;
  1644.     if (keyseg->base.flag & HA_REVERSE_SORT)
  1645.       *pos++ = '-';
  1646.     pos=strmov(pos,type_names[keyseg->base.type]);
  1647.     *pos++ = ' ';
  1648.     *pos=0;
  1649.     if (keyinfo->base.flag & HA_PACK_KEY)
  1650.       pos=strmov(pos,packed_txt);
  1651.     if (keyseg->base.flag & HA_SPACE_PACK)
  1652.       pos=strmov(pos,diff_txt);
  1653.     printf("%-4d%-6d%-3d %-8s%-21s",
  1654.    key+1,keyseg->base.start+1,keyseg->base.length,text,buff);
  1655.     if (testflag & T_VERBOSE)
  1656.       printf(" %9ld  %9d  %9ld",
  1657.      share->state.key_root[key],keyinfo->base.block_length,
  1658.      share->base.rec_per_key[key]);
  1659.     VOID(putchar('n'));
  1660.     while ((++keyseg)->base.type)
  1661.     {
  1662.       pos=buff;
  1663.       if (keyseg->base.flag & HA_REVERSE_SORT)
  1664. *pos++ = '-';
  1665.       pos=strmov(pos,type_names[keyseg->base.type]);
  1666.       *pos++= ' ';
  1667.       if (keyseg->base.flag & HA_SPACE_PACK)
  1668. pos=strmov(pos,diff_txt);
  1669.       *pos=0;
  1670.       printf("    %-6d%-3d         %-24sn",
  1671.      keyseg->base.start+1,keyseg->base.length,buff);
  1672.     }
  1673.   }
  1674.   if (verbose > 1)
  1675.   {
  1676.     printf("nField Start Length Type");
  1677.     if (share->base.options & HA_OPTION_COMPRESS_RECORD)
  1678.       printf("                         Huff tree  Bits");
  1679.     VOID(putchar('n'));
  1680.     start=1;
  1681.     for (field=0 ; field < share->base.fields ; field++)
  1682.     {
  1683.       if (share->base.options & HA_OPTION_COMPRESS_RECORD)
  1684. type=share->rec[field].base_type;
  1685.       else
  1686. type=(enum en_fieldtype) share->rec[field].base.type;
  1687.       end=strmov(buff,field_pack[type]);
  1688. #ifndef NOT_PACKED_DATABASES
  1689.       if (share->base.options & HA_OPTION_COMPRESS_RECORD)
  1690.       {
  1691. if (share->rec[field].pack_type & PACK_TYPE_SELECTED)
  1692.   end=strmov(end,", not_always");
  1693. if (share->rec[field].pack_type & PACK_TYPE_SPACE_FIELDS)
  1694.   end=strmov(end,", no empty");
  1695. if (share->rec[field].pack_type & PACK_TYPE_ZERO_FILL)
  1696. {
  1697.   sprintf(end,", zerofill(%d)",share->rec[field].space_length_bits);
  1698.   end=strend(end);
  1699. }
  1700.       }
  1701.       if (buff[0] == ',')
  1702. strmov(buff,buff+2);
  1703. #endif
  1704.       len=(uint) (int2str((long) share->rec[field].base.length,length,10) -
  1705.   length);
  1706.       if (type == FIELD_BLOB)
  1707.       {
  1708. length[len]='+';
  1709. VOID(int2str((long) sizeof(char*),length+len+1,10));
  1710.       }
  1711.       printf("%-6d%-6d%-7s%-35s",field+1,start,length,buff);
  1712. #ifndef NOT_PACKED_DATABASES
  1713.       if (share->base.options & HA_OPTION_COMPRESS_RECORD)
  1714.       {
  1715. if (share->rec[field].huff_tree)
  1716.   printf("%3d    %2d",
  1717.  (uint) (share->rec[field].huff_tree-share->decode_trees)+1,
  1718.  share->rec[field].huff_tree->quick_table_bits);
  1719.       }
  1720. #endif
  1721.       VOID(putchar('n'));
  1722.       start+=share->rec[field].base.length;
  1723.       if (type == FIELD_BLOB)
  1724. start+=sizeof(char*);
  1725.     }
  1726.   }
  1727.   DBUG_VOID_RETURN;
  1728. } /* describe */
  1729. /* Change all key-pointers that points to a records */
  1730. static int movepoint(info,record,oldpos,newpos,prot_key)
  1731. register N_INFO *info;
  1732. byte *record;
  1733. ulong oldpos,newpos;
  1734. uint prot_key;
  1735. {
  1736.   register uint i;
  1737.   uchar *key;
  1738.   DBUG_ENTER("movepoint");
  1739.   key=info->lastkey+info->s->base.max_key_length;
  1740.   for (i=0 ; i < info->s->state.keys; i++)
  1741.   {
  1742.     if (i != prot_key)
  1743.     {
  1744.       VOID(_nisam_make_key(info,i,key,record,oldpos));
  1745.       if (info->s->keyinfo[i].base.flag & HA_NOSAME)
  1746.       { /* Change pointer direct */
  1747. uint nod_flag;
  1748. N_KEYDEF *keyinfo;
  1749. keyinfo=info->s->keyinfo+i;
  1750. if (_nisam_search(info,keyinfo,key,USE_HOLE_KEY,
  1751.        (uint) (SEARCH_SAME | SEARCH_SAVE_BUFF),
  1752.        info->s->state.key_root[i]))
  1753.   DBUG_RETURN(-1);
  1754. nod_flag=test_if_nod(info->buff);
  1755. _nisam_dpointer(info,info->int_keypos-nod_flag-
  1756.      info->s->rec_reflength,newpos);
  1757. if (_nisam_write_keypage(info,keyinfo,info->int_pos,info->buff))
  1758.   DBUG_RETURN(-1);
  1759.       }
  1760.       else
  1761.       { /* Change old key to new */
  1762. if (_nisam_ck_delete(info,i,key))
  1763.   DBUG_RETURN(-1);
  1764. VOID(_nisam_make_key(info,i,key,record,newpos));
  1765. if (_nisam_ck_write(info,i,key))
  1766.   DBUG_RETURN(-1);
  1767.       }
  1768.     }
  1769.   }
  1770.   DBUG_RETURN(0);
  1771. } /* movepoint */
  1772. /* Tell system that we want all memory for our cache */
  1773. static void lock_memory(void)
  1774. {
  1775. #ifdef SUN_OS /* Key-cacheing thrases on sun 4.1 */
  1776.   int success;
  1777.   success = mlockall(MCL_CURRENT); /* or plock(DATLOCK); */
  1778.   if (geteuid() == 0 && success != 0)
  1779.     print_warning("Failed to lock memory. errno %d",my_errno);
  1780. #endif
  1781. } /* lock_memory */
  1782. /* Flush all changed blocks to disk */
  1783. static int flush_blocks(file)
  1784. File file;
  1785. {
  1786.   if (flush_key_blocks(file,FLUSH_RELEASE))
  1787.   {
  1788.     print_error("%d when trying to write bufferts",my_errno);
  1789.     return(1);
  1790.   }
  1791.   end_key_cache();
  1792.   return 0;
  1793. } /* flush_blocks */
  1794. /* Sort records according to one key */
  1795. static int sort_records(info,name,sort_key,write_info)
  1796. register N_INFO *info;
  1797. my_string name;
  1798. uint sort_key;
  1799. int write_info;
  1800. {
  1801.   int got_error;
  1802.   uint key;
  1803.   N_KEYDEF *keyinfo;
  1804.   File new_file;
  1805.   uchar *temp_buff;
  1806.   ulong old_record_count;
  1807.   ISAM_SHARE *share=info->s;
  1808.   DBUG_ENTER("sort_records");
  1809.   keyinfo= &share->keyinfo[sort_key];
  1810.   got_error=1;
  1811.   temp_buff=0; record_buff=0;
  1812.   new_file= -1;
  1813.   if (sort_key >= share->state.keys)
  1814.   {
  1815.     print_error("Can't sort table '%s' on key %d. It has only %d keys",
  1816. name,sort_key+1,share->state.keys);
  1817.     error_printed=0;
  1818.     DBUG_RETURN(-1);
  1819.   }
  1820.   if (!(testflag & T_SILENT))
  1821.   {
  1822.     printf("- Sorting records in ISAM-table '%s'n",name);
  1823.     if (write_info)
  1824.       printf("Data records: %7lu   Deleted: %7lun",
  1825.      share->state.records,share->state.del);
  1826.   }
  1827.   if (share->state.key_root[sort_key] == NI_POS_ERROR)
  1828.     DBUG_RETURN(0); /* Nothing to do */
  1829.   init_key_cache(use_buffers,NEAD_MEM);
  1830.   if (init_io_cache(&info->rec_cache,-1,(uint) write_buffer_length,
  1831.    WRITE_CACHE,share->pack.header_length,1,
  1832.    MYF(MY_WME | MY_WAIT_IF_FULL)))
  1833.     goto err;
  1834.   info->opt_flag|=WRITE_CACHE_USED;
  1835.   if (!(temp_buff=(uchar*) my_alloca((uint) keyinfo->base.block_length)))
  1836.   {
  1837.     print_error("Not Enough memory");
  1838.     goto err;
  1839.   }
  1840.   if (!(record_buff=(byte*) my_alloca((uint) share->base.reclength)))
  1841.   {
  1842.     print_error("Not Enough memory");
  1843.     goto err;
  1844.   }
  1845.   if ((new_file=my_create(fn_format(temp_filename,name,"",DATA_TMP_EXT,2+4),
  1846.   0,tmpfile_createflag,MYF(0))) <= 0)
  1847.   {
  1848.     print_error("Can't create new tempfile: '%s'",temp_filename);
  1849.     goto err;
  1850.   }
  1851.   if (filecopy(new_file,info->dfile,0L,share->pack.header_length,
  1852.        "datafile-header"))
  1853.     goto err;
  1854.   info->rec_cache.file=new_file; /* Use this file for cacheing*/
  1855.   lock_memory();
  1856.   for (key=0 ; key < share->state.keys ; key++)
  1857.     share->keyinfo[key].base.flag|= HA_SORT_ALLOWS_SAME;
  1858.   if (my_pread(share->kfile,(byte*) temp_buff,
  1859.        (uint) keyinfo->base.block_length,
  1860.        share->state.key_root[sort_key],
  1861.        MYF(MY_NABP+MY_WME)))
  1862.   {
  1863.     print_error("Can't read indexpage from filepos: %lu",
  1864. (ulong) share->state.key_root[sort_key]);
  1865.     goto err;
  1866.   }
  1867.   /* Setup param for sort_write_record */
  1868.   bzero((char*) &sort_info,sizeof(sort_info));
  1869.   sort_info.info=info;
  1870.   sort_info.new_data_file_type=share->data_file_type;
  1871.   sort_info.fix_datafile=1;
  1872.   sort_info.filepos=share->pack.header_length;
  1873.   sort_info.record=record_buff;
  1874.   old_record_count=share->state.records;
  1875.   share->state.records=0;
  1876.   if (sort_record_index(info,keyinfo,share->state.key_root[sort_key],temp_buff,
  1877. sort_key,new_file) ||
  1878.       write_data_suffix(info) ||
  1879.       flush_io_cache(&info->rec_cache))
  1880.     goto err;
  1881.   if (share->state.records != old_record_count)
  1882.   {
  1883.     print_error("found %lu of %lu records",
  1884. (ulong) share->state.records,(ulong) old_record_count);
  1885.     goto err;
  1886.   }
  1887. /* Put same locks as old file */
  1888.   if (lock_file(new_file,0L,F_WRLCK,"tempfile",temp_filename))
  1889.     goto err;
  1890.   VOID(lock_file(info->dfile,0L,F_UNLCK,"datafile of",name));
  1891.   VOID(my_close(info->dfile,MYF(MY_WME)));
  1892.   out_flag|=O_NEW_DATA; /* Data in new file */
  1893.   info->dfile=new_file; /* Use new indexfile */
  1894.   share->state.del=share->state.empty=0;
  1895.   share->state.dellink= NI_POS_ERROR;
  1896.   share->state.data_file_length=sort_info.filepos;
  1897.   share->state.splitt=share->state.records; /* Only hole records */
  1898.   share->state.version=(ulong) time((time_t*) 0);
  1899.   info->update= (short) (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  1900.   if (testflag & T_WRITE_LOOP)
  1901.   {
  1902.     VOID(fputs("          r",stdout)); VOID(fflush(stdout));
  1903.   }
  1904.   got_error=0;
  1905. err:
  1906.   if (got_error && new_file >= 0)
  1907.   {
  1908.     VOID(my_close(new_file,MYF(MY_WME)));
  1909.     VOID(my_delete(temp_filename,MYF(MY_WME)));
  1910.   }
  1911.   if (temp_buff)
  1912.   {
  1913.     my_afree((gptr) temp_buff);
  1914.   }
  1915.   if (record_buff)
  1916.   {
  1917.     my_afree(record_buff);
  1918.   }
  1919.   info->opt_flag&= ~(READ_CACHE_USED | WRITE_CACHE_USED);
  1920.   VOID(end_io_cache(&info->rec_cache));
  1921.   share->base.sortkey=sort_key;
  1922.   DBUG_RETURN(flush_blocks(share->kfile) | got_error);
  1923. } /* sort_records */
  1924.  /* Sort records recursive using one index */
  1925. static int sort_record_index(info,keyinfo,page,buff,sort_key,new_file)
  1926. N_INFO *info;
  1927. N_KEYDEF *keyinfo;
  1928. ulong page;
  1929. uchar *buff;
  1930. uint sort_key;
  1931. File new_file;
  1932. {
  1933.   uint nod_flag,used_length;
  1934.   uchar *temp_buff,*keypos,*endpos;
  1935.   ulong next_page,rec_pos;
  1936.   uchar lastkey[N_MAX_KEY_BUFF];
  1937.   DBUG_ENTER("sort_record_index");
  1938.   nod_flag=test_if_nod(buff);
  1939.   temp_buff=0;
  1940.   if (nod_flag)
  1941.   {
  1942.     if (!(temp_buff=(uchar*) my_alloca((uint) keyinfo->base.block_length)))
  1943.     {
  1944.       print_error("Not Enough memory");
  1945.       DBUG_RETURN(-1);
  1946.     }
  1947.   }
  1948.   used_length=getint(buff);
  1949.   keypos=buff+2+nod_flag;
  1950.   endpos=buff+used_length;
  1951.   for ( ;; )
  1952.   {
  1953.     _sanity(__FILE__,__LINE__);
  1954.     if (nod_flag)
  1955.     {
  1956.       next_page=_nisam_kpos(nod_flag,keypos);
  1957.       if (my_pread(info->s->kfile,(byte*) temp_buff,
  1958.   (uint) keyinfo->base.block_length, next_page,
  1959.    MYF(MY_NABP+MY_WME)))
  1960.       {
  1961. print_error("Can't read keys from filepos: %lu",(ulong) next_page);
  1962. goto err;
  1963.       }
  1964.       if (sort_record_index(info,keyinfo,next_page,temp_buff,sort_key,
  1965.     new_file))
  1966. goto err;
  1967.     }
  1968.     _sanity(__FILE__,__LINE__);
  1969.     if (keypos >= endpos ||
  1970. (*keyinfo->get_key)(keyinfo,nod_flag,&keypos,lastkey) == 0)
  1971.       break;
  1972.     rec_pos= _nisam_dpos(info,nod_flag,keypos);
  1973.     if ((*info->s->read_rnd)(info,record_buff,rec_pos,0))
  1974.     {
  1975.       print_error("%d when reading datafile",my_errno);
  1976.       goto err;
  1977.     }
  1978.     if (rec_pos != sort_info.filepos)
  1979.     {
  1980.       _nisam_dpointer(info,keypos-nod_flag-info->s->rec_reflength,
  1981.    sort_info.filepos);
  1982.       if (movepoint(info,record_buff,rec_pos,sort_info.filepos,sort_key))
  1983.       {
  1984. print_error("%d when updating key-pointers",my_errno);
  1985. goto err;
  1986.       }
  1987.     }
  1988.     if (sort_write_record())
  1989.       goto err;
  1990.   }
  1991.   bzero((byte*) buff+used_length,keyinfo->base.block_length-used_length);
  1992.   if (my_pwrite(info->s->kfile,(byte*) buff,(uint) keyinfo->base.block_length,
  1993. page,MYF_RW))
  1994.   {
  1995.     print_error("%d when updating keyblock",my_errno);
  1996.     goto err;
  1997.   }
  1998.   if (temp_buff)
  1999.     my_afree((gptr) temp_buff);
  2000.   DBUG_RETURN(0);
  2001. err:
  2002.   if (temp_buff)
  2003.     my_afree((gptr) temp_buff);
  2004.   DBUG_RETURN(1);
  2005. } /* sort_record_index */
  2006. /* Sort index for more efficent reads */
  2007. static int sort_index(info,name)
  2008. register N_INFO *info;
  2009. my_string name;
  2010. {
  2011.   reg2 uint key;
  2012.   reg1 N_KEYDEF *keyinfo;
  2013.   File new_file;
  2014.   ulong index_pos[N_MAXKEY];
  2015.   DBUG_ENTER("sort_index");
  2016.   if (!(testflag & T_SILENT))
  2017.     printf("- Sorting index for ISAM-table '%s'n",name);
  2018.   if ((new_file=my_create(fn_format(temp_filename,name,"",INDEX_TMP_EXT,2+4),
  2019.   0,tmpfile_createflag,MYF(0))) <= 0)
  2020.   {
  2021.     print_error("Can't create new tempfile: '%s'",temp_filename);
  2022.     DBUG_RETURN(-1);
  2023.   }
  2024.   if (filecopy(new_file,info->s->kfile,0L,(ulong) info->s->base.keystart,
  2025.        "headerblock"))
  2026.     goto err;
  2027.   new_file_pos=info->s->base.keystart;
  2028.   for (key= 0,keyinfo= &info->s->keyinfo[0]; key < info->s->state.keys ;
  2029.        key++,keyinfo++)
  2030.   {
  2031.     if (info->s->state.key_root[key] != NI_POS_ERROR)
  2032.     {
  2033.       index_pos[key]=new_file_pos; /* Write first block here */
  2034.       if (!_nisam_fetch_keypage(info,keyinfo,info->s->state.key_root[key],
  2035.      info->buff,0))
  2036.       {
  2037. print_error("Can't read indexpage from filepos: %lu",
  2038.     (ulong) info->s->state.key_root[key]);
  2039. goto err;
  2040.       }
  2041.       if (sort_one_index(info,keyinfo,info->buff,new_file))
  2042. goto err;
  2043.     }
  2044.     else
  2045.       index_pos[key]= NI_POS_ERROR; /* No blocks */
  2046.   }
  2047. /* Put same locks as old file */
  2048.   if (lock_file(new_file,0L,F_WRLCK,"tempfile",temp_filename))
  2049.     goto err;
  2050.   info->s->state.version=(ulong) time((time_t*) 0);
  2051.   VOID(_nisam_writeinfo(info,1)); /* This unlocks table */
  2052.   VOID(my_close(info->s->kfile,MYF(MY_WME)));
  2053.   out_flag|=O_NEW_INDEX; /* Data in new file */
  2054.   info->s->kfile=new_file;
  2055.   info->s->state.key_file_length=new_file_pos;
  2056.   info->update= (short) (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  2057.   for (key=0 ; key < info->s->state.keys ; key++)
  2058.   {
  2059.     info->s->state.key_root[key]=index_pos[key];
  2060.     info->s->state.key_del[key]= NI_POS_ERROR;
  2061.   }
  2062.   DBUG_RETURN(0);
  2063. err:
  2064.   VOID(my_close(new_file,MYF(MY_WME)));
  2065.   VOID(my_delete(temp_filename,MYF(MY_WME)));
  2066.   DBUG_RETURN(-1);
  2067. } /* sort_index */
  2068.  /* Sort records recursive using one index */
  2069. static int sort_one_index(info,keyinfo,buff,new_file)
  2070. N_INFO *info;
  2071. N_KEYDEF *keyinfo;
  2072. uchar *buff;
  2073. File new_file;
  2074. {
  2075.   uint length,nod_flag,used_length;
  2076.   uchar *temp_buff,*keypos,*endpos;
  2077.   ulong new_page_pos,next_page;
  2078.   DBUG_ENTER("sort_one_index");
  2079.   temp_buff=0;
  2080.   new_page_pos=new_file_pos;
  2081.   new_file_pos+=keyinfo->base.block_length;
  2082.   if ((nod_flag=test_if_nod(buff)))
  2083.   {
  2084.     if (!(temp_buff=(uchar*) my_alloca((uint) keyinfo->base.block_length)))
  2085.     {
  2086.       print_error("Not Enough memory");
  2087.       DBUG_RETURN(-1);
  2088.     }
  2089.     used_length=getint(buff);
  2090.     keypos=buff+2+nod_flag;
  2091.     endpos=buff+used_length;
  2092.     for ( ;; )
  2093.     {
  2094.       if (nod_flag)
  2095.       {
  2096. next_page=_nisam_kpos(nod_flag,keypos);
  2097. _nisam_kpointer(info,keypos-nod_flag,new_file_pos); /* Save new pos */
  2098. if (!_nisam_fetch_keypage(info,keyinfo,next_page,temp_buff,0))
  2099. {
  2100.   print_error("Can't read keys from filepos: %lu",
  2101.       (ulong) next_page);
  2102.   goto err;
  2103. }
  2104. if (sort_one_index(info,keyinfo,temp_buff,new_file))
  2105.   goto err;
  2106.       }
  2107.       if (keypos >= endpos ||
  2108.   ((*keyinfo->get_key)(keyinfo,nod_flag,&keypos,info->lastkey)) == 0)
  2109. break;
  2110.     }
  2111.     my_afree((gptr) temp_buff);
  2112.   }
  2113. /* Fill block with zero and write it to new file */
  2114.   length=getint(buff);
  2115.   bzero((byte*) buff+length,keyinfo->base.block_length-length);
  2116.   if (my_pwrite(new_file,(byte*) buff,(uint) keyinfo->base.block_length,
  2117. new_page_pos,MYF(MY_NABP | MY_WAIT_IF_FULL)))
  2118.   {
  2119.     print_error("Can't write indexblock, error: %d",my_errno);
  2120.     goto err;
  2121.   }
  2122.   DBUG_RETURN(0);
  2123. err:
  2124.   if (temp_buff)
  2125.     my_afree((gptr) temp_buff);
  2126.   DBUG_RETURN(1);
  2127. } /* sort_one_index */
  2128. /* Change to use new file */
  2129. /* Copy stats from old file to new file, deletes orginal and */
  2130. /* changes new file name to old file name */
  2131. static int change_to_newfile(filename,old_ext,new_ext)
  2132. const char *filename,*old_ext,*new_ext;
  2133. {
  2134.   char old_filename[FN_REFLEN],new_filename[FN_REFLEN];
  2135.   return my_redel(fn_format(old_filename,filename,"",old_ext,2+4),
  2136.   fn_format(new_filename,filename,"",new_ext,2+4),
  2137.   MYF(MY_WME+MY_LINK_WARNING));
  2138. } /* change_to_newfile */
  2139. /* Locks a hole file */
  2140. /* Gives error-message if file can't be locked */
  2141. static int lock_file(file,start,lock_type,filetype,filename)
  2142. File file;
  2143. ulong start;
  2144. int lock_type;
  2145. const char *filetype,*filename;
  2146. {
  2147. #ifndef NO_LOCKING
  2148.   if (my_lock(file,lock_type,start,F_TO_EOF,
  2149.       testflag & T_WAIT_FOREVER ? MYF(MY_SEEK_NOT_DONE) :
  2150.       MYF(MY_SEEK_NOT_DONE |  MY_DONT_WAIT)))
  2151.   {
  2152.     print_error(" %d when %s %s '%s'",my_errno,
  2153. lock_type == F_UNLCK ? "unlocking": "locking",
  2154. filetype,filename);
  2155.     error_printed=2; /* Don't give that data is crashed */
  2156.     return 1;
  2157.   }
  2158. #endif
  2159.   return 0;
  2160. } /* lock_file */
  2161. /* Copy a block between two files */
  2162. static int filecopy(File to,File from,ulong start,ulong length,
  2163.     const char *type)
  2164. {
  2165.   char tmp_buff[IO_SIZE],*buff;
  2166.   ulong buff_length;
  2167.   DBUG_ENTER("filecopy");
  2168.   buff_length=min(write_buffer_length,length);
  2169.   if (!(buff=my_malloc(buff_length,MYF(0))))
  2170.   {
  2171.     buff=tmp_buff; buff_length=IO_SIZE;
  2172.   }
  2173.   VOID(my_seek(from,start,MY_SEEK_SET,MYF(0)));
  2174.   while (length > buff_length)
  2175.   {
  2176.     if (my_read(from,(byte*) buff,buff_length,MYF(MY_NABP)) ||
  2177. my_write(to,(byte*) buff,buff_length,MYF(MY_NABP | MY_WAIT_IF_FULL)))
  2178.       goto err;
  2179.     length-= buff_length;
  2180.   }
  2181.   if (my_read(from,(byte*) buff,(uint) length,MYF(MY_NABP)) ||
  2182.       my_write(to,(byte*) buff,(uint) length,MYF(MY_NABP | MY_WAIT_IF_FULL)))
  2183.     goto err;
  2184.   if (buff != tmp_buff)
  2185.     my_free(buff,MYF(0));
  2186.   DBUG_RETURN(0);
  2187. err:
  2188.   if (buff != tmp_buff)
  2189.     my_free(buff,MYF(0));
  2190.   print_error("Can't copy %s to tempfile, error %d",type,my_errno);
  2191.   DBUG_RETURN(1);
  2192. }
  2193. /* Fix table using sorting */
  2194. /* saves new table in temp_filename */
  2195. static int rep_by_sort(info,name)
  2196. reg1 N_INFO *info;
  2197. my_string name;
  2198. {
  2199.   int got_error;
  2200.   uint i,length;
  2201.   ulong start_records,new_header_length,del;
  2202.   File new_file;
  2203.   SORT_PARAM sort_param;
  2204.   ISAM_SHARE *share=info->s;
  2205.   DBUG_ENTER("rep_by_sort");
  2206.   start_records=share->state.records;
  2207.   got_error=1;
  2208.   new_file= -1;
  2209.   new_header_length=(testflag & T_UNPACK) ? 0 : share->pack.header_length;
  2210.   if (!(testflag & T_SILENT))
  2211.   {
  2212.     printf("- recovering ISAM-table '%s'n",name);
  2213.     printf("Data records: %lun",(ulong) start_records);
  2214.   }
  2215.   bzero((char*) &sort_info,sizeof(sort_info));
  2216.   if (!(sort_info.key_block=alloc_key_blocks((uint) sort_key_blocks,
  2217.      share->base.max_block))
  2218.       || init_io_cache(&read_cache,info->dfile,(uint) read_buffer_length,
  2219.       READ_CACHE,share->pack.header_length,1,MYF(MY_WME)) ||
  2220.       (! rep_quick &&
  2221.        init_io_cache(&info->rec_cache,info->dfile,(uint) write_buffer_length,
  2222.     WRITE_CACHE,new_header_length,1,
  2223.     MYF(MY_WME | MY_WAIT_IF_FULL))))
  2224.     goto err;
  2225.   sort_info.key_block_end=sort_info.key_block+sort_key_blocks;
  2226.   info->opt_flag|=WRITE_CACHE_USED;
  2227.   info->rec_cache.file=info->dfile; /* for sort_delete_record */
  2228.   if (!(sort_info.record=(byte*) my_alloca((uint) share->base.reclength)))
  2229.   {
  2230.     print_error("Not enough memory for extra record");
  2231.     goto err;
  2232.   }
  2233.   if (!rep_quick)
  2234.   {
  2235.     if ((new_file=my_create(fn_format(temp_filename,name,"",DATA_TMP_EXT,
  2236.       2+4),
  2237.     0,tmpfile_createflag,MYF(0))) < 0)
  2238.     {
  2239.       print_error("Can't create new tempfile: '%s'",temp_filename);
  2240.       goto err;
  2241.     }
  2242.     if (filecopy(new_file,info->dfile,0L,new_header_length,"datafile-header"))
  2243.       goto err;
  2244.     if (testflag & T_UNPACK)
  2245.       share->base.options&= ~HA_OPTION_COMPRESS_RECORD;
  2246.     share->state.dellink= NI_POS_ERROR;
  2247.     info->rec_cache.file=new_file;
  2248.   }
  2249.   info->update= (short) (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  2250.   for (i=0 ; i < N_MAXKEY ; i++)
  2251.     share->state.key_del[i]=share->state.key_root[i]= NI_POS_ERROR;
  2252.   share->state.key_file_length=share->base.keystart;
  2253.   sort_info.info=info;
  2254.   if ((sort_info.new_data_file_type=share->data_file_type) ==
  2255.       COMPRESSED_RECORD && testflag & T_UNPACK)
  2256.   {
  2257.     if (share->base.options & HA_OPTION_PACK_RECORD)
  2258.       sort_info.new_data_file_type = DYNAMIC_RECORD;
  2259.     else
  2260.       sort_info.new_data_file_type = STATIC_RECORD;
  2261.   }
  2262.   sort_info.filepos=new_header_length;
  2263.   sort_info.dupp=0;
  2264.   read_cache.end_of_file=sort_info.filelength=
  2265.     (ulong) my_seek(read_cache.file,0L,MY_SEEK_END,MYF(0));
  2266.   if (share->data_file_type == DYNAMIC_RECORD)
  2267.     length=max(share->base.min_pack_length+1,share->base.min_block_length);
  2268.   else if (share->data_file_type == COMPRESSED_RECORD)
  2269.     length=share->base.min_block_length;
  2270.   else
  2271.     length=share->base.reclength;
  2272.   sort_param.max_records=sort_info.max_records=sort_info.filelength/length+1;
  2273.   sort_param.key_cmp=sort_key_cmp;
  2274.   sort_param.key_write=sort_key_write;
  2275.   sort_param.key_read=sort_key_read;
  2276.   sort_param.lock_in_memory=lock_memory;
  2277.   del=share->state.del;
  2278.   for (sort_info.key=0 ; sort_info.key < share->state.keys ; sort_info.key++)
  2279.   {
  2280.     if ((!(testflag & T_SILENT)))
  2281.       printf ("- Fixing index %dn",sort_info.key+1);
  2282.     sort_info.max_pos=sort_info.pos=share->pack.header_length;
  2283.     sort_info.keyinfo=share->keyinfo+sort_info.key;
  2284.     sort_info.keyseg=sort_info.keyinfo->seg;
  2285.     sort_info.fix_datafile= (my_bool) (sort_info.key == 0 && ! rep_quick);
  2286.     sort_info.unique=0;
  2287.     sort_param.key_length=share->rec_reflength;
  2288.     for (i=0 ; sort_info.keyseg[i].base.type ; i++)
  2289.       sort_param.key_length+=sort_info.keyseg[i].base.length+
  2290. (sort_info.keyseg[i].base.flag & HA_SPACE_PACK ? 1 : 0);
  2291.     share->state.records=share->state.del=share->state.empty=share->state.splitt=0;
  2292.     if (_create_index_by_sort(&sort_param,
  2293.       (pbool) (!(testflag & T_VERBOSE)),
  2294.       (uint) sort_buffer_length))
  2295.       goto err;
  2296. /* Set for next loop */
  2297.     sort_param.max_records=sort_info.max_records=share->state.records;
  2298.     share->base.rec_per_key[sort_info.key]=
  2299.       sort_info.unique ? ((sort_info.max_records+sort_info.unique/2)/
  2300.    sort_info.unique)
  2301.       : 1L;
  2302.     if (sort_info.fix_datafile)
  2303.     {
  2304.       info->dfile=new_file;
  2305.       share->state.data_file_length=sort_info.filepos;
  2306.       share->state.splitt=share->state.records; /* Only hole records */
  2307.       share->state.version=(ulong) time((time_t*) 0);
  2308.       out_flag|=O_NEW_DATA; /* Data in new file */
  2309.       read_cache.end_of_file=sort_info.filepos;
  2310.       if (write_data_suffix(info) || end_io_cache(&info->rec_cache))
  2311. goto err;
  2312.       share->data_file_type=sort_info.new_data_file_type;
  2313.       share->pack.header_length=new_header_length;
  2314.     }
  2315.     else
  2316.       share->state.data_file_length=sort_info.max_pos;
  2317.     if (flush_pending_blocks())
  2318.       goto err;
  2319.     read_cache.file=info->dfile; /* re-init read cache */
  2320.     reinit_io_cache(&read_cache,READ_CACHE,share->pack.header_length,1,1);
  2321.   }
  2322.   if (testflag & T_WRITE_LOOP)
  2323.   {
  2324.     VOID(fputs("          r",stdout)); VOID(fflush(stdout));
  2325.   }
  2326.   if (rep_quick && del+sort_info.dupp != share->state.del)
  2327.   {
  2328.     print_error("Couldn't fix table with quick recovery: Found wrong number of deleted records");
  2329.     print_error("Run recovery again without -q");
  2330.     got_error=1;
  2331.     goto err;
  2332.   }
  2333.   if (rep_quick != 1)
  2334.   {
  2335.     ulong skr=share->state.data_file_length+
  2336.       (share->base.options & HA_OPTION_COMPRESS_RECORD ?
  2337.        MEMMAP_EXTRA_MARGIN : 0);
  2338. #ifdef USE_RELOC
  2339.     if (share->data_file_type == STATIC_RECORD &&
  2340. skr < share->base.reloc*share->base.min_pack_length)
  2341.       skr=share->base.reloc*share->base.min_pack_length;
  2342. #endif
  2343.     if (skr != sort_info.filelength)
  2344.       if (my_chsize(info->dfile,skr,MYF(0)))
  2345. print_warning("Can't change size of datafile,  error: %d",my_errno);
  2346.   }
  2347.   if (my_chsize(share->kfile,share->state.key_file_length,MYF(0)))
  2348.     print_warning("Can't change size of indexfile, error: %d",my_errno);
  2349.   if (!(testflag & T_SILENT))
  2350.   {
  2351.     if (start_records != share->state.records)
  2352.       printf("Data records: %lun",(ulong) share->state.records);
  2353.     if (sort_info.dupp)
  2354.       print_warning("%lu records have been removed",(ulong) sort_info.dupp);
  2355.   }
  2356.   got_error=0;
  2357. err:
  2358.   if (got_error)
  2359.   {
  2360.     if (! error_printed)
  2361.       print_error("%d when fixing table",my_errno);
  2362.     if (new_file >= 0)
  2363.     {
  2364.       VOID(end_io_cache(&info->rec_cache));
  2365.       VOID(my_close(new_file,MYF(0)));
  2366.       VOID(my_delete(temp_filename,MYF(MY_WME)));
  2367.     }
  2368.   }
  2369.   if (sort_info.key_block)
  2370.     my_free((gptr) sort_info.key_block,MYF(0));
  2371.   if (sort_info.record)
  2372.   {
  2373.     my_afree(sort_info.record);
  2374.   }
  2375.   VOID(end_io_cache(&read_cache));
  2376.   VOID(end_io_cache(&info->rec_cache));
  2377.   info->opt_flag&= ~(READ_CACHE_USED | WRITE_CACHE_USED);
  2378.   if (!got_error && testflag & T_UNPACK)
  2379.   {
  2380.     share->state.header.options[0]&= (uchar) ~HA_OPTION_COMPRESS_RECORD;
  2381.     share->pack.header_length=0;
  2382.   }
  2383.   DBUG_RETURN(got_error);
  2384. } /* rep_by_sort */
  2385. /* Read next record and return next key */
  2386. static int sort_key_read(key)
  2387. void *key;
  2388. {
  2389.   int error;
  2390.   N_INFO *info;
  2391.   DBUG_ENTER("sort_key_read");
  2392.   info=sort_info.info;
  2393.   if ((error=sort_get_next_record()))
  2394.     DBUG_RETURN(error);
  2395.   if (info->s->state.records == sort_info.max_records)
  2396.   {
  2397.     print_error("Found too many records; Can`t continue");
  2398.     DBUG_RETURN(1);
  2399.   }
  2400.   VOID(_nisam_make_key(info,sort_info.key,key,sort_info.record,
  2401.     sort_info.filepos));
  2402.   DBUG_RETURN(sort_write_record());
  2403. } /* sort_key_read */
  2404. /* Read next record from file using parameters in sort_info */
  2405. /* Return -1 if end of file, 0 if ok and > 0 if error */
  2406. static int sort_get_next_record()
  2407. {
  2408.   int searching;
  2409.   uint found_record,b_type,left_length;
  2410.   ulong pos;
  2411.   byte *to;
  2412.   BLOCK_INFO block_info;
  2413.   N_INFO *info;
  2414.   ISAM_SHARE *share;
  2415.   DBUG_ENTER("sort_get_next_record");
  2416.   info=sort_info.info;
  2417.   share=info->s;
  2418.   switch (share->data_file_type) {
  2419.   case STATIC_RECORD:
  2420.     for (;;)
  2421.     {
  2422.       if (my_b_read(&read_cache,sort_info.record,share->base.reclength))
  2423. DBUG_RETURN(-1);
  2424.       sort_info.start_recpos=sort_info.pos;
  2425.       if (!sort_info.fix_datafile)
  2426. sort_info.filepos=sort_info.pos;
  2427.       sort_info.max_pos=(sort_info.pos+=share->base.reclength);
  2428.       share->state.splitt++;
  2429.       if (*sort_info.record)
  2430. DBUG_RETURN(0);
  2431.       if (!sort_info.fix_datafile)
  2432.       {
  2433. share->state.del++;
  2434. share->state.empty+=share->base.reclength;
  2435.       }
  2436.     }
  2437.   case DYNAMIC_RECORD:
  2438.     LINT_INIT(to);
  2439.     pos=sort_info.pos;
  2440.     searching=(sort_info.fix_datafile && (testflag & T_EXTEND));
  2441.     for (;;)
  2442.     {
  2443.       found_record=block_info.second_read= 0;
  2444.       left_length=1;
  2445.       do
  2446.       {
  2447. if (pos > sort_info.max_pos)
  2448.   sort_info.max_pos=pos;
  2449. if (found_record && pos == search_after_block)
  2450.   print_info("Block: %lu used by record at %lu",
  2451.      search_after_block,
  2452.      sort_info.start_recpos);
  2453. if (_nisam_read_cache(&read_cache,(byte*) block_info.header,pos,
  2454.   BLOCK_INFO_HEADER_LENGTH, test(! found_record) | 2))
  2455. {
  2456.   if (found_record)
  2457.   {
  2458.     print_info("Can't read whole record at %lu (errno: %d)",
  2459.        (ulong) sort_info.start_recpos,errno);
  2460.     goto try_next;
  2461.   }
  2462.   DBUG_RETURN(-1);
  2463. }
  2464. if (searching && ! sort_info.fix_datafile)
  2465. {
  2466.   error_printed=1;
  2467.   DBUG_RETURN(1); /* Something wrong with data */
  2468. }
  2469. if (((b_type=_nisam_get_block_info(&block_info,-1,pos)) &
  2470.      (BLOCK_ERROR | BLOCK_FATAL_ERROR)) ||
  2471.     ((b_type & BLOCK_FIRST) &&
  2472.      (block_info.rec_len < (uint) share->base.min_pack_length ||
  2473.       block_info.rec_len > (uint) share->base.max_pack_length)))
  2474. {
  2475.   uint i;
  2476.   if (testflag & T_VERBOSE || searching == 0)
  2477.     print_info("Wrong bytesec: %3d-%3d-%3d at %10lu; Skipped",
  2478.        block_info.header[0],block_info.header[1],
  2479.        block_info.header[2],pos);
  2480.   if (found_record)
  2481.     goto try_next;
  2482.   block_info.second_read=0;
  2483.   searching=1;
  2484.   for (i=1 ; i < 11 ; i++) /* Skipp from read string */
  2485.     if (block_info.header[i] >= 1 && block_info.header[i] <= 16)
  2486.       break;
  2487.   pos+=(ulong) i;
  2488.   continue;
  2489. }
  2490. if (block_info.block_len+ (uint) (block_info.filepos-pos) <
  2491.     share->base.min_block_length ||
  2492.     block_info.block_len-4 > (uint) share->base.max_pack_length)
  2493. {
  2494.   if (!searching)
  2495.     print_info("Found block with impossible length %u at %lu; Skipped",
  2496.        block_info.block_len+ (uint) (block_info.filepos-pos),
  2497.        (ulong) pos);
  2498.   if (found_record)
  2499.     goto try_next;
  2500.   searching=1;
  2501.   pos++;
  2502.   block_info.second_read=0;
  2503.   continue;
  2504. }
  2505. if (b_type & (BLOCK_DELETED | BLOCK_SYNC_ERROR))
  2506. {
  2507.   if (!sort_info.fix_datafile && (b_type & BLOCK_DELETED))
  2508.   {
  2509.     share->state.empty+=block_info.block_len;
  2510.     share->state.del++;
  2511.     share->state.splitt++;
  2512.   }
  2513.   if (found_record)
  2514.     goto try_next;
  2515.   /* Check if impossible big deleted block */
  2516.   if (block_info.block_len > share->base.max_pack_length +4)
  2517.     searching=1;
  2518.   if (searching)
  2519.     pos++;
  2520.   else
  2521.     pos=block_info.filepos+block_info.block_len;
  2522.   block_info.second_read=0;
  2523.   continue;
  2524. }
  2525. share->state.splitt++;
  2526. if (! found_record++)
  2527. {
  2528.   sort_info.find_length=left_length=block_info.rec_len;
  2529.   sort_info.start_recpos=pos;
  2530.   if (!sort_info.fix_datafile)
  2531.     sort_info.filepos=sort_info.start_recpos;
  2532.   if (sort_info.fix_datafile && (testflag & T_EXTEND))
  2533.     sort_info.pos=block_info.filepos+1;
  2534.   else
  2535.     sort_info.pos=block_info.filepos+block_info.block_len;
  2536.   if (share->base.blobs)
  2537.   {
  2538.     if (!(to=fix_rec_buff_for_blob(info,block_info.rec_len)))
  2539.     {
  2540.       print_error("Not enough memory for blob at %lu",
  2541.   (ulong) sort_info.start_recpos);
  2542.       DBUG_RETURN(-1);
  2543.     }
  2544.   }
  2545.   else
  2546.     to= info->rec_buff;
  2547. }
  2548. if (left_length < block_info.data_len || ! block_info.data_len)
  2549. {
  2550.   print_info("Found block with too small length at %lu; Skipped",
  2551.      (ulong) sort_info.start_recpos);
  2552.   goto try_next;
  2553. }
  2554. if (block_info.filepos + block_info.data_len > read_cache.end_of_file)
  2555. {
  2556.   print_info("Found block that points outside data file at %lu",
  2557.      (ulong) sort_info.start_recpos);
  2558.   goto try_next;
  2559. }
  2560. if (_nisam_read_cache(&read_cache,to,block_info.filepos,
  2561.    block_info.data_len, test(found_record == 1)))
  2562. {
  2563.   print_info("Read error for block at: %lu (error: %d); Skipped",
  2564.      (ulong) block_info.filepos,my_errno);
  2565.   goto try_next;
  2566. }
  2567. left_length-=block_info.data_len;
  2568. to+=block_info.data_len;
  2569. pos=block_info.next_filepos;
  2570. if (pos == NI_POS_ERROR && left_length)
  2571. {
  2572.   print_info("Wrong block with wrong total length starting at %lu",
  2573.      (ulong) sort_info.start_recpos);
  2574.   goto try_next;
  2575. }
  2576. if (pos + BLOCK_INFO_HEADER_LENGTH > read_cache.end_of_file)
  2577. {
  2578.   print_info("Found link that points at %lu (outside data file) at %lu",
  2579.      (ulong) pos,(ulong) sort_info.start_recpos);
  2580.   goto try_next;
  2581. }
  2582.       } while (left_length);
  2583.       if (_nisam_rec_unpack(info,sort_info.record,info->rec_buff,
  2584.  sort_info.find_length) != MY_FILE_ERROR)
  2585.       {
  2586. if (read_cache.error < 0)
  2587.   DBUG_RETURN(1);
  2588. if ((testflag & (T_EXTEND | T_REP)) || searching)
  2589. {
  2590.   if (_nisam_rec_check(info, sort_info.record))
  2591.   {
  2592.     print_info("Found wrong packed record at %lu",
  2593.        (ulong) sort_info.start_recpos);
  2594.     goto try_next;
  2595.   }
  2596. }
  2597. DBUG_RETURN(0);
  2598.       }
  2599.     try_next:
  2600.       pos=sort_info.start_recpos+1;
  2601.       searching=1;
  2602.     }
  2603.   case COMPRESSED_RECORD:
  2604.     for (searching=0 ;; searching=1, sort_info.pos++)
  2605.     {
  2606.       if (_nisam_read_cache(&read_cache,(byte*) block_info.header,sort_info.pos,
  2607. share->pack.ref_length,1))
  2608. DBUG_RETURN(-1);
  2609.       if (searching && ! sort_info.fix_datafile)
  2610.       {
  2611. error_printed=1;
  2612. DBUG_RETURN(1); /* Something wrong with data */
  2613.       }
  2614.       sort_info.start_recpos=sort_info.pos;
  2615.       VOID(_nisam_pack_get_block_info(&block_info,share->pack.ref_length,-1,
  2616.    sort_info.pos));
  2617.       if (!block_info.rec_len &&
  2618.   sort_info.pos + MEMMAP_EXTRA_MARGIN == read_cache.end_of_file)
  2619. DBUG_RETURN(-1);
  2620.       if (block_info.rec_len < (uint) share->min_pack_length ||
  2621.   block_info.rec_len > (uint) share->max_pack_length)
  2622.       {
  2623. if (! searching)
  2624.   print_info("Found block with wrong recordlength: %d at %lun",
  2625.      block_info.rec_len, (ulong) sort_info.pos);
  2626. continue;
  2627.       }
  2628.       if (_nisam_read_cache(&read_cache,(byte*) info->rec_buff,
  2629. block_info.filepos, block_info.rec_len,1))
  2630.       {
  2631. if (! searching)
  2632.   print_info("Couldn't read hole record from %lu",
  2633.      (ulong) sort_info.pos);
  2634. continue;
  2635.       }
  2636.       if (_nisam_pack_rec_unpack(info,sort_info.record,info->rec_buff,
  2637.       block_info.rec_len))
  2638.       {
  2639. if (! searching)
  2640.   print_info("Found wrong record at %lu",(ulong) sort_info.pos);
  2641. continue;
  2642.       }
  2643.       if (!sort_info.fix_datafile)
  2644. sort_info.filepos=sort_info.pos;
  2645.       sort_info.max_pos=(sort_info.pos+=share->pack.ref_length+
  2646.  block_info.rec_len);
  2647.       share->state.splitt++;
  2648.       info->packed_length=block_info.rec_len;
  2649.       DBUG_RETURN(0);
  2650.     }
  2651.   }
  2652.   DBUG_RETURN(1); /* Impossible */
  2653. }
  2654. /* Write record to new file */
  2655. static int sort_write_record()
  2656. {
  2657.   int flag;
  2658.   uint block_length,reclength;
  2659.   byte *from;
  2660.   uchar *block_buff[3];
  2661.   N_INFO *info;
  2662.   ISAM_SHARE *share;
  2663.   DBUG_ENTER("sort_write_record");
  2664.   info=sort_info.info;
  2665.   share=info->s;
  2666.   if (sort_info.fix_datafile)
  2667.   {
  2668.     switch (sort_info.new_data_file_type) {
  2669.     case STATIC_RECORD:
  2670.       if (my_b_write(&info->rec_cache,sort_info.record, share->base.reclength))
  2671.       {
  2672. print_error("%d when writing to datafile",my_errno);
  2673. DBUG_RETURN(1);
  2674.       }
  2675.       sort_info.filepos+=share->base.reclength;
  2676.       break;
  2677.     case DYNAMIC_RECORD:
  2678.       if (! info->blobs)
  2679. from=info->rec_buff;
  2680.       else
  2681.       {
  2682. /* must be sure that local buffer is big enough */
  2683. reclength=info->s->base.pack_reclength+
  2684.   _calc_total_blob_length(info,sort_info.record)+
  2685.   ALIGN_SIZE(MAX_DYN_BLOCK_HEADER)+N_SPLITT_LENGTH+
  2686.   DYN_DELETE_BLOCK_HEADER;
  2687. if (sort_info.buff_length < reclength)
  2688. {
  2689.   if (!(sort_info.buff=my_realloc(sort_info.buff, (uint) reclength,
  2690.   MYF(MY_FREE_ON_ERROR |
  2691.       MY_ALLOW_ZERO_PTR))))
  2692.     DBUG_RETURN(1);
  2693.   sort_info.buff_length=reclength;
  2694. }
  2695. from=sort_info.buff+ALIGN_SIZE(MAX_DYN_BLOCK_HEADER);
  2696.       }
  2697.       reclength=_nisam_rec_pack(info,from,sort_info.record);
  2698.       block_length=reclength+ 3 +test(reclength > 65532L);
  2699.       if (block_length < share->base.min_block_length)
  2700. block_length=share->base.min_block_length;
  2701.       flag=0;
  2702.       info->update|=HA_STATE_WRITE_AT_END;
  2703.       if (_nisam_write_part_record(info,0L,block_length,NI_POS_ERROR,
  2704. &from,&reclength,&flag))
  2705.       {
  2706. print_error("%d when writing to datafile",my_errno);
  2707. DBUG_RETURN(1);
  2708.       }
  2709.       sort_info.filepos+=block_length;
  2710.       break;
  2711.     case COMPRESSED_RECORD:
  2712.       reclength=info->packed_length;
  2713.       save_integer((byte*) block_buff,share->pack.ref_length,reclength);
  2714.       if (my_b_write(&info->rec_cache,(byte*) block_buff,share->pack.ref_length)
  2715.   || my_b_write(&info->rec_cache,(byte*) info->rec_buff,reclength))
  2716.       {
  2717. print_error("%d when writing to datafile",my_errno);
  2718. DBUG_RETURN(1);
  2719.       }
  2720.       sort_info.filepos+=reclength+share->pack.ref_length;
  2721.       break;
  2722.     }
  2723.   }
  2724.   share->state.records++;
  2725.   if (testflag & T_WRITE_LOOP && share->state.records % WRITE_COUNT == 0)
  2726.   {
  2727.     printf("%lur",(ulong) share->state.records); VOID(fflush(stdout));
  2728.   }
  2729.   DBUG_RETURN(0);
  2730. } /* sort_write_record */
  2731. /* Compare two keys from _create_index_by_sort */
  2732. static int sort_key_cmp(const void *not_used __attribute__((unused)),
  2733. const void *a,const void *b)
  2734. {
  2735.   return (_nisam_key_cmp(sort_info.keyseg,*((uchar**) a),*((uchar**) b),0,
  2736.       SEARCH_SAME));
  2737. } /* sort_key_cmp */
  2738. static int sort_key_write(a)
  2739. const void *a;
  2740. {
  2741.   int cmp=sort_info.key_block->inited ?
  2742.     _nisam_key_cmp(sort_info.keyseg,sort_info.key_block->lastkey,(uchar*) a,
  2743.        0,SEARCH_FIND) : -1L;
  2744.   if ((sort_info.keyinfo->base.flag & HA_NOSAME) &&
  2745.       cmp == 0)
  2746.   {
  2747.     sort_info.dupp++;
  2748.     print_warning("Dupplicate key for record at %10lu against record at %10lu",
  2749.   sort_info.info->lastpos=get_record_for_key(sort_info.info,
  2750.      sort_info.keyinfo,
  2751.      (uchar*) a),
  2752.   get_record_for_key(sort_info.info,sort_info.keyinfo,
  2753.      sort_info.key_block->lastkey));
  2754.     if (testflag & T_VERBOSE)
  2755.       _nisam_print_key(stdout,sort_info.keyseg,(uchar*) a);
  2756.     return(sort_delete_record());
  2757.   }
  2758.   if (cmp)
  2759.     sort_info.unique++;
  2760. #ifndef DBUG_OFF
  2761.   if (cmp > 0)
  2762.   {
  2763.     print_error("Fatal intern error: Keys are not in order from sort");
  2764.     return(1);
  2765.   }
  2766. #endif
  2767.   return (sort_insert_key(sort_info.key_block,(uchar*) a,NI_POS_ERROR));
  2768. } /* sort_key_write */
  2769. /* get pointer to record from a key */
  2770. static ulong get_record_for_key(info,keyinfo,key)
  2771. N_INFO *info;
  2772. N_KEYDEF *keyinfo;
  2773. uchar *key;
  2774. {
  2775.   return _nisam_dpos(info,0,key+_nisam_keylength(keyinfo,key));
  2776. } /* get_record_for_key */
  2777. /* Insert a key in sort-key-blocks */
  2778. static int sort_insert_key(key_block,key,prev_block)
  2779. reg1 SORT_KEY_BLOCKS *key_block;
  2780. uchar *key;
  2781. ulong prev_block;
  2782. {
  2783.   uint a_length,t_length,nod_flag;
  2784.   ulong filepos;
  2785.   uchar *anc_buff,*lastkey;
  2786.   S_PARAM s_temp;
  2787.   N_INFO *info;
  2788.   DBUG_ENTER("sort_insert_key");
  2789.   anc_buff=key_block->buff;
  2790.   info=sort_info.info;
  2791.   lastkey=key_block->lastkey;
  2792.   nod_flag= (key_block == sort_info.key_block ? 0 :
  2793.      sort_info.info->s->base.key_reflength);
  2794.   if (!key_block->inited)
  2795.   {
  2796.     key_block->inited=1;
  2797.     if (key_block == sort_info.key_block_end)
  2798.     {
  2799.       print_error("To many keyblocklevels; Try increasing sort_key_blocks");
  2800.       DBUG_RETURN(1);
  2801.     }
  2802.     a_length=2+nod_flag;
  2803.     key_block->end_pos=anc_buff+2;
  2804.     lastkey=0; /* No previous key in block */
  2805.   }
  2806.   else
  2807.     a_length=getint(anc_buff);
  2808. /* Save pointer to previous block */
  2809.   if (nod_flag)
  2810.     _nisam_kpointer(info,key_block->end_pos,prev_block);
  2811.   t_length=_nisam_get_pack_key_length(sort_info.keyinfo,nod_flag,
  2812.    (uchar*) 0,lastkey,key,&s_temp);
  2813.   _nisam_store_key(sort_info.keyinfo,key_block->end_pos+nod_flag,&s_temp);
  2814.   a_length+=t_length;
  2815.   putint(anc_buff,a_length,nod_flag);
  2816.   key_block->end_pos+=t_length;
  2817.   if (a_length <= sort_info.keyinfo->base.block_length)
  2818.   {
  2819.     VOID(_nisam_move_key(sort_info.keyinfo,key_block->lastkey,key));
  2820.     key_block->last_length=a_length-t_length;
  2821.     DBUG_RETURN(0);
  2822.   }
  2823. /* Fill block with end-zero and write filled block */
  2824.   putint(anc_buff,key_block->last_length,nod_flag);
  2825.   bzero((byte*) anc_buff+key_block->last_length,
  2826. sort_info.keyinfo->base.block_length- key_block->last_length);
  2827.   if ((filepos=_nisam_new(info,sort_info.keyinfo)) == NI_POS_ERROR)
  2828.     return 1;
  2829.   if (my_pwrite(info->s->kfile,(byte*) anc_buff,
  2830. (uint) sort_info.keyinfo->base.block_length,filepos,MYF_RW))
  2831.     DBUG_RETURN(1);
  2832.   DBUG_DUMP("buff",(byte*) anc_buff,getint(anc_buff));
  2833. /* Write separator-key to block in next level */
  2834.   if (sort_insert_key(key_block+1,key_block->lastkey,filepos))
  2835.     DBUG_RETURN(1);
  2836. /* clear old block and write new key in it */
  2837.   key_block->inited=0;
  2838.   DBUG_RETURN(sort_insert_key(key_block,key,prev_block));
  2839. } /* sort_insert_key */
  2840. /* Delete record when we found a dupplicated key */
  2841. static int sort_delete_record()
  2842. {
  2843.   uint i;
  2844.   int old_file,error;
  2845.   uchar *key;
  2846.   N_INFO *info;
  2847.   DBUG_ENTER("sort_delete_record");
  2848.   if (rep_quick == 1)
  2849.   {
  2850.     VOID(fputs("Quick-recover aborted; Run recovery without switch 'q' or with switch -qqn",stderr));
  2851.     error_printed=1;
  2852.     DBUG_RETURN(1);
  2853.   }
  2854.   info=sort_info.info;
  2855.   if (info->s->base.options & HA_OPTION_COMPRESS_RECORD)
  2856.   {
  2857.     VOID(fputs("Recover aborted; Can't run standard recovery on compressed tablesnwith errors in data-filenUse switch '--safe-recover' to fix itn",stderr));
  2858.     error_printed=1;
  2859.     DBUG_RETURN(1);
  2860.   }
  2861.   old_file=info->dfile;
  2862.   info->dfile=info->rec_cache.file;
  2863.   if (sort_info.key)
  2864.   {
  2865.     key=info->lastkey+info->s->base.max_key_length;
  2866.     if ((*info->s->read_rnd)(info,sort_info.record,info->lastpos,0) < 0)
  2867.     {
  2868.       print_error("Can't read record to be removed");
  2869.       info->dfile=old_file;
  2870.       DBUG_RETURN(1);
  2871.     }
  2872.     for (i=0 ; i < sort_info.key ; i++)
  2873.     {
  2874.       VOID(_nisam_make_key(info,i,key,sort_info.record,info->lastpos));
  2875.       if (_nisam_ck_delete(info,i,key))
  2876.       {
  2877. print_error("Can't delete key %d from record to be removed",i+1);
  2878. info->dfile=old_file;
  2879. DBUG_RETURN(1);
  2880.       }
  2881.     }
  2882.   }
  2883.   error=flush_io_cache(&info->rec_cache) || (*info->s->delete_record)(info);
  2884.   info->dfile=old_file; /* restore actual value */
  2885.   info->s->state.records--;
  2886.   DBUG_RETURN(error);
  2887. } /* sort_delete_record */
  2888. /* Fix all pending blocks and flush everything to disk */
  2889. static int flush_pending_blocks()
  2890. {
  2891.   uint nod_flag,length;
  2892.   ulong filepos;
  2893.   N_INFO *info;
  2894.   SORT_KEY_BLOCKS *key_block;
  2895.   DBUG_ENTER("flush_pending_blocks");
  2896.   filepos= NI_POS_ERROR; /* if empty file */
  2897.   info=sort_info.info;
  2898.   nod_flag=0;
  2899.   for (key_block=sort_info.key_block ; key_block->inited ; key_block++)
  2900.   {
  2901.     key_block->inited=0;
  2902.     length=getint(key_block->buff);
  2903.     if (nod_flag)
  2904.       _nisam_kpointer(info,key_block->end_pos,filepos);
  2905.     if ((filepos=_nisam_new(info,sort_info.keyinfo)) == NI_POS_ERROR)
  2906.       DBUG_RETURN(1);
  2907.     bzero((byte*) key_block->buff+length,
  2908.   sort_info.keyinfo->base.block_length-length);
  2909.     if (my_pwrite(info->s->kfile,(byte*) key_block->buff,
  2910.  (uint) sort_info.keyinfo->base.block_length,filepos,MYF_RW))
  2911.       DBUG_RETURN(1);
  2912.     DBUG_DUMP("buff",(byte*) key_block->buff,length);
  2913.     nod_flag=1;
  2914.   }
  2915.   info->s->state.key_root[sort_info.key]=filepos; /* Last is root for tree */
  2916.   DBUG_RETURN(0);
  2917. } /* flush_pending_blocks */
  2918. /* alloc space and pointers for key_blocks */
  2919. static SORT_KEY_BLOCKS *alloc_key_blocks(blocks,buffer_length)
  2920. uint blocks,buffer_length;
  2921. {
  2922.   reg1 uint i;
  2923.   SORT_KEY_BLOCKS *block;
  2924.   DBUG_ENTER("alloc_key_blocks");
  2925.   if (!(block=(SORT_KEY_BLOCKS*) my_malloc((sizeof(SORT_KEY_BLOCKS)+
  2926.     buffer_length+IO_SIZE)*blocks,
  2927.    MYF(0))))
  2928.   {
  2929.     print_error("Not Enough memory for sort-key-blocks");
  2930.     return(0);
  2931.   }
  2932.   for (i=0 ; i < blocks ; i++)
  2933.   {
  2934.     block[i].inited=0;
  2935.     block[i].buff=(uchar*) (block+blocks)+(buffer_length+IO_SIZE)*i;
  2936.   }
  2937.   DBUG_RETURN(block);
  2938. } /* alloc_key_blocks */
  2939. /* print warnings and errors */
  2940. /* VARARGS */
  2941. static void print_info(const char * fmt,...)
  2942. {
  2943.   va_list args;
  2944.   va_start(args,fmt);
  2945.   VOID(vfprintf(stdout, fmt, args));
  2946.   VOID(fputc('n',stdout));
  2947.   va_end(args);
  2948.   return;
  2949. }
  2950. /* VARARGS */
  2951. static void print_warning(const char * fmt,...)
  2952. {
  2953.   va_list args;
  2954.   DBUG_ENTER("print_warning");
  2955.   if (!warning_printed && !error_printed)
  2956.   {
  2957.     fflush(stdout);
  2958.     if (testflag & T_SILENT)
  2959.       fprintf(stderr,"%s: ISAM file %sn",my_progname,isam_file_name);
  2960.   }
  2961.   warning_printed=1;
  2962.   va_start(args,fmt);
  2963.   fprintf(stderr,"%s: warning: ",my_progname);
  2964.   VOID(vfprintf(stderr, fmt, args));
  2965.   VOID(fputc('n',stderr));
  2966.   va_end(args);
  2967.   DBUG_VOID_RETURN;
  2968. }
  2969. /* VARARGS */
  2970. void print_error(const char *fmt,...)
  2971. {
  2972.   va_list args;
  2973.   DBUG_ENTER("print_error");
  2974.   DBUG_PRINT("enter",("format: %s",fmt));
  2975.   if (!warning_printed && !error_printed)
  2976.   {
  2977.     fflush(stdout);
  2978.     if (testflag & T_SILENT)
  2979.       fprintf(stderr,"%s: ISAM file %sn",my_progname,isam_file_name);
  2980.   }
  2981.   error_printed|=1;
  2982.   va_start(args,fmt);
  2983.   fprintf(stderr,"%s: error: ",my_progname);
  2984.   VOID(vfprintf(stderr, fmt, args));
  2985.   VOID(fputc('n',stderr));
  2986.   va_end(args);
  2987.   DBUG_VOID_RETURN;
  2988. }
  2989. /* Check if file is almost full */
  2990. static int test_if_almost_full(info)
  2991. N_INFO *info;
  2992. {
  2993.   double diff= 0.9;
  2994.   if (info->s->base.options & HA_OPTION_COMPRESS_RECORD)
  2995.   { /* Fix problem with pack_isam */
  2996.     diff=1.0;
  2997.     if (info->s->base.rec_reflength == 4)
  2998.       info->s->base.max_data_file_length= (uint32) ~0L;
  2999.     else
  3000.       info->s->base.max_data_file_length=
  3001. 1L << (info->s->base.rec_reflength);
  3002.   }
  3003.   return (my_seek(info->s->kfile,0L,MY_SEEK_END,MYF(0)) >
  3004.   (ulong) (info->s->base.max_key_file_length*diff) ||
  3005.    my_seek(info->dfile,0L,MY_SEEK_END,MYF(0)) >
  3006.    (ulong) (info->s->base.max_data_file_length*diff));
  3007. }
  3008. /* Recreate table with bigger more alloced record-data */
  3009. static int recreate_database(org_info,filename)
  3010. N_INFO **org_info;
  3011. char *filename;
  3012. {
  3013.   int error;
  3014.   N_INFO info;
  3015.   ISAM_SHARE share;
  3016.   N_KEYDEF *keyinfo;
  3017.   N_RECINFO *recinfo,*rec,*end;
  3018.   uint unpack;
  3019.   ulong max_records;
  3020.   char name[FN_REFLEN];
  3021.   error=1; /* Default error */
  3022.   info= **org_info;
  3023.   share= *(*org_info)->s;
  3024.   unpack= (share.base.options & HA_OPTION_COMPRESS_RECORD) &&
  3025.     (testflag & T_UNPACK);
  3026.   if (!(keyinfo=(N_KEYDEF*) my_alloca(sizeof(N_KEYDEF)*share.base.keys)))
  3027.     return 0;
  3028.   memcpy((byte*) keyinfo,(byte*) share.keyinfo,
  3029.  (size_t) (sizeof(N_KEYDEF)*share.base.keys));
  3030.   if (!(recinfo=(N_RECINFO*)
  3031. my_alloca(sizeof(N_RECINFO)*(share.base.fields+1))))
  3032.   {
  3033.     my_afree((gptr) keyinfo);
  3034.     return 1;
  3035.   }
  3036.   memcpy((byte*) recinfo,(byte*) share.rec,
  3037.  (size_t) (sizeof(N_RECINFO)*(share.base.fields+1)));
  3038.   for (rec=recinfo,end=recinfo+share.base.fields; rec != end ; rec++)
  3039.   {
  3040.     if (rec->base.type == (int) FIELD_BLOB)
  3041.       rec->base.length+=sizeof(char*);
  3042.     else if (unpack && !(share.base.options & HA_OPTION_PACK_RECORD))
  3043.       rec->base.type=(int) FIELD_NORMAL;
  3044.   }
  3045.   if (share.base.options & HA_OPTION_COMPRESS_RECORD)
  3046.     share.base.records=max_records=share.state.records;
  3047.   else if (share.base.min_pack_length)
  3048.     max_records=(ulong) (my_seek(info.dfile,0L,MY_SEEK_END,MYF(0)) /
  3049.  (ulong) share.base.min_pack_length);
  3050.   else
  3051.     max_records=0;
  3052.   unpack= (share.base.options & HA_OPTION_COMPRESS_RECORD) &&
  3053.     (testflag & T_UNPACK);
  3054.   share.base.options&= ~HA_OPTION_TEMP_COMPRESS_RECORD;
  3055.   VOID(nisam_close(*org_info));
  3056.   if (nisam_create(fn_format(name,filename,"",N_NAME_IEXT,
  3057.   4+ (opt_follow_links ? 16 : 0)),
  3058.    share.base.keys,keyinfo,recinfo,
  3059.    max(max_records,share.base.records),share.base.reloc,
  3060.    HA_DONT_TOUCH_DATA,
  3061.    share.base.options |
  3062.    (unpack ? HA_OPTION_TEMP_COMPRESS_RECORD
  3063.     : 0),
  3064.    (ulong) my_seek(info.dfile,0L,MY_SEEK_END,MYF(0))))
  3065.   {
  3066.     print_error("Got error %d when trying to recreate indexfile",my_errno);
  3067.     goto end;
  3068.   }
  3069.   *org_info=nisam_open(name,O_RDWR,
  3070. (testflag & T_WAIT_FOREVER) ? HA_OPEN_WAIT_IF_LOCKED :
  3071. (testflag & T_DESCRIPT) ? HA_OPEN_IGNORE_IF_LOCKED :
  3072. HA_OPEN_ABORT_IF_LOCKED);
  3073.   if (!*org_info)
  3074.   {
  3075.     print_error("Got error %d when trying to open re-created indexfile",
  3076. my_errno);
  3077.     goto end;
  3078.   }
  3079.   /* We are modifing */
  3080.   (*org_info)->s->base.options&= ~HA_OPTION_READ_ONLY_DATA;
  3081.   VOID(_nisam_readinfo(*org_info,F_WRLCK,0));
  3082.   (*org_info)->s->state.records=share.state.records;
  3083.   if (share.base.create_time)
  3084.     (*org_info)->s->base.create_time=share.base.create_time;
  3085.   (*org_info)->s->state.uniq=(*org_info)->this_uniq=
  3086.     share.state.uniq;
  3087.   (*org_info)->s->state.del=share.state.del;
  3088.   (*org_info)->s->state.dellink=share.state.dellink;
  3089.   (*org_info)->s->state.empty=share.state.empty;
  3090.   (*org_info)->s->state.data_file_length=share.state.data_file_length;
  3091.   if (update_state_info(*org_info,UPDATE_TIME | UPDATE_STAT))
  3092.     goto end;
  3093.   error=0;
  3094. end:
  3095.   my_afree((gptr) keyinfo);
  3096.   my_afree((gptr) recinfo);
  3097.   return error;
  3098. }
  3099. /* Store long in 1,2,3 or 4 bytes */
  3100. static void save_integer(pos,pack_length,value)
  3101. byte *pos;
  3102. uint pack_length;
  3103. ulong value;
  3104. {
  3105.   switch (pack_length) {
  3106.   case 4: int4store(pos,value); break;
  3107.   case 3: int3store(pos,value); break;
  3108.   case 2: int2store(pos,(uint) value); break;
  3109.   case 1: pos[0]= (char) (uchar) value; break;
  3110.   default: break;
  3111.   }
  3112.   return;
  3113. }
  3114. /* write suffix to data file if neaded */
  3115. static int write_data_suffix(info)
  3116. N_INFO *info;
  3117. {
  3118.   if (info->s->base.options & HA_OPTION_COMPRESS_RECORD &&
  3119.       sort_info.fix_datafile)
  3120.   {
  3121.     char buff[MEMMAP_EXTRA_MARGIN];
  3122.     bzero(buff,sizeof(buff));
  3123.     if (my_b_write(&info->rec_cache,buff,sizeof(buff)))
  3124.     {
  3125.       print_error("%d when writing to datafile",my_errno);
  3126.       return 1;
  3127.     }
  3128.     read_cache.end_of_file+=sizeof(buff);
  3129.   }
  3130.   return 0;
  3131. }
  3132. /* Update state and isamchk_time of indexfile */
  3133. static int update_state_info(info,update)
  3134. N_INFO *info;
  3135. uint update;
  3136. {
  3137.   ISAM_SHARE *share=info->s;
  3138.   uint base_pos=uint2korr(info->s->state.header.base_pos);
  3139.   if (update & (UPDATE_STAT | UPDATE_SORT | UPDATE_TIME))
  3140.   {
  3141.     if (offsetof(N_BASE_INFO,rec_per_key) >
  3142. uint2korr(share->state.header.base_info_length))
  3143.     {
  3144.       VOID(fputs("Internal error: Trying to change base of old tablen",
  3145.  stderr));
  3146.     }
  3147.     else
  3148.     {
  3149.       if (update & UPDATE_TIME)
  3150.       {
  3151. share->base.isamchk_time= (long) time((time_t*) 0);
  3152. if (!share->base.create_time)
  3153.   share->base.create_time=share->base.isamchk_time;
  3154. if (my_pwrite(share->kfile,(gptr) &share->base.create_time,
  3155.       sizeof(long)*2,
  3156.       base_pos+offsetof(N_BASE_INFO,create_time),
  3157.       MYF(MY_NABP)))
  3158.   goto err;
  3159.       }
  3160.       if (update & (UPDATE_STAT | UPDATE_SORT))
  3161.       {
  3162. if (my_pwrite(share->kfile,(gptr) share->base.rec_per_key,
  3163.       sizeof(long)*share->state.keys+sizeof(uint),
  3164.       base_pos+offsetof(N_BASE_INFO,rec_per_key),
  3165.       MYF(MY_NABP)))
  3166.   goto err;
  3167.       }
  3168.     }
  3169.   }
  3170.   { /* Force update of status */
  3171.     int error;
  3172.     uint r_locks=share->r_locks,w_locks=share->w_locks;
  3173.     share->r_locks=share->w_locks=0;
  3174.     error=_nisam_writeinfo(info,2);
  3175.     share->r_locks=r_locks; share->w_locks=w_locks;
  3176.     if (!error)
  3177.       return 0;
  3178.   }
  3179. err:
  3180.   print_error("%d when updateing keyfile",my_errno);
  3181.   return 1;
  3182. }