bzip2recover.c
上传用户:zswatin
上传日期:2007-01-06
资源大小:440k
文件大小:12k
源码类别:

压缩解压

开发平台:

C/C++

  1. /*-----------------------------------------------------------*/
  2. /*--- Block recoverer program for bzip2                   ---*/
  3. /*---                                      bzip2recover.c ---*/
  4. /*-----------------------------------------------------------*/
  5. /*--
  6.   This program is bzip2recover, a program to attempt data 
  7.   salvage from damaged files created by the accompanying
  8.   bzip2-0.9.0c program.
  9.   Copyright (C) 1996-1998 Julian R Seward.  All rights reserved.
  10.   Redistribution and use in source and binary forms, with or without
  11.   modification, are permitted provided that the following conditions
  12.   are met:
  13.   1. Redistributions of source code must retain the above copyright
  14.      notice, this list of conditions and the following disclaimer.
  15.   2. The origin of this software must not be misrepresented; you must 
  16.      not claim that you wrote the original software.  If you use this 
  17.      software in a product, an acknowledgment in the product 
  18.      documentation would be appreciated but is not required.
  19.   3. Altered source versions must be plainly marked as such, and must
  20.      not be misrepresented as being the original software.
  21.   4. The name of the author may not be used to endorse or promote 
  22.      products derived from this software without specific prior written 
  23.      permission.
  24.   THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  25.   OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  26.   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27.   ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  28.   DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29.   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  30.   GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  31.   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  32.   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  33.   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  34.   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  35.   Julian Seward, Guildford, Surrey, UK.
  36.   jseward@acm.org
  37.   bzip2/libbzip2 version 0.9.0c of 18 October 1998
  38. --*/
  39. /*--
  40.   This program is a complete hack and should be rewritten
  41.   properly.  It isn't very complicated.
  42. --*/
  43. #include <stdio.h>
  44. #include <errno.h>
  45. #include <stdlib.h>
  46. #include <string.h>
  47. typedef  unsigned int   UInt32;
  48. typedef  int            Int32;
  49. typedef  unsigned char  UChar;
  50. typedef  char           Char;
  51. typedef  unsigned char  Bool;
  52. #define True    ((Bool)1)
  53. #define False   ((Bool)0)
  54. Char inFileName[2000];
  55. Char outFileName[2000];
  56. Char progName[2000];
  57. UInt32 bytesOut = 0;
  58. UInt32 bytesIn  = 0;
  59. /*---------------------------------------------------*/
  60. /*--- I/O errors                                  ---*/
  61. /*---------------------------------------------------*/
  62. /*---------------------------------------------*/
  63. void readError ( void )
  64. {
  65.    fprintf ( stderr,
  66.              "%s: I/O error reading `%s', possible reason follows.n",
  67.             progName, inFileName );
  68.    perror ( progName );
  69.    fprintf ( stderr, "%s: warning: output file(s) may be incomplete.n",
  70.              progName );
  71.    exit ( 1 );
  72. }
  73. /*---------------------------------------------*/
  74. void writeError ( void )
  75. {
  76.    fprintf ( stderr,
  77.              "%s: I/O error reading `%s', possible reason follows.n",
  78.             progName, inFileName );
  79.    perror ( progName );
  80.    fprintf ( stderr, "%s: warning: output file(s) may be incomplete.n",
  81.              progName );
  82.    exit ( 1 );
  83. }
  84. /*---------------------------------------------*/
  85. void mallocFail ( Int32 n )
  86. {
  87.    fprintf ( stderr,
  88.              "%s: malloc failed on request for %d bytes.n",
  89.             progName, n );
  90.    fprintf ( stderr, "%s: warning: output file(s) may be incomplete.n",
  91.              progName );
  92.    exit ( 1 );
  93. }
  94. /*---------------------------------------------------*/
  95. /*--- Bit stream I/O                              ---*/
  96. /*---------------------------------------------------*/
  97. typedef
  98.    struct {
  99.       FILE*  handle;
  100.       Int32  buffer;
  101.       Int32  buffLive;
  102.       Char   mode;
  103.    }
  104.    BitStream;
  105. /*---------------------------------------------*/
  106. BitStream* bsOpenReadStream ( FILE* stream )
  107. {
  108.    BitStream *bs = malloc ( sizeof(BitStream) );
  109.    if (bs == NULL) mallocFail ( sizeof(BitStream) );
  110.    bs->handle = stream;
  111.    bs->buffer = 0;
  112.    bs->buffLive = 0;
  113.    bs->mode = 'r';
  114.    return bs;
  115. }
  116. /*---------------------------------------------*/
  117. BitStream* bsOpenWriteStream ( FILE* stream )
  118. {
  119.    BitStream *bs = malloc ( sizeof(BitStream) );
  120.    if (bs == NULL) mallocFail ( sizeof(BitStream) );
  121.    bs->handle = stream;
  122.    bs->buffer = 0;
  123.    bs->buffLive = 0;
  124.    bs->mode = 'w';
  125.    return bs;
  126. }
  127. /*---------------------------------------------*/
  128. void bsPutBit ( BitStream* bs, Int32 bit )
  129. {
  130.    if (bs->buffLive == 8) {
  131.       Int32 retVal = putc ( (UChar) bs->buffer, bs->handle );
  132.       if (retVal == EOF) writeError();
  133.       bytesOut++;
  134.       bs->buffLive = 1;
  135.       bs->buffer = bit & 0x1;
  136.    } else {
  137.       bs->buffer = ( (bs->buffer << 1) | (bit & 0x1) );
  138.       bs->buffLive++;
  139.    };
  140. }
  141. /*---------------------------------------------*/
  142. /*--
  143.    Returns 0 or 1, or 2 to indicate EOF.
  144. --*/
  145. Int32 bsGetBit ( BitStream* bs )
  146. {
  147.    if (bs->buffLive > 0) {
  148.       bs->buffLive --;
  149.       return ( ((bs->buffer) >> (bs->buffLive)) & 0x1 );
  150.    } else {
  151.       Int32 retVal = getc ( bs->handle );
  152.       if ( retVal == EOF ) {
  153.          if (errno != 0) readError();
  154.          return 2;
  155.       }
  156.       bs->buffLive = 7;
  157.       bs->buffer = retVal;
  158.       return ( ((bs->buffer) >> 7) & 0x1 );
  159.    }
  160. }
  161. /*---------------------------------------------*/
  162. void bsClose ( BitStream* bs )
  163. {
  164.    Int32 retVal;
  165.    if ( bs->mode == 'w' ) {
  166.       while ( bs->buffLive < 8 ) {
  167.          bs->buffLive++;
  168.          bs->buffer <<= 1;
  169.       };
  170.       retVal = putc ( (UChar) (bs->buffer), bs->handle );
  171.       if (retVal == EOF) writeError();
  172.       bytesOut++;
  173.       retVal = fflush ( bs->handle );
  174.       if (retVal == EOF) writeError();
  175.    }
  176.    retVal = fclose ( bs->handle );
  177.    if (retVal == EOF) {
  178.       if (bs->mode == 'w') writeError(); else readError();
  179.    }
  180.    free ( bs );
  181. }
  182. /*---------------------------------------------*/
  183. void bsPutUChar ( BitStream* bs, UChar c )
  184. {
  185.    Int32 i;
  186.    for (i = 7; i >= 0; i--)
  187.       bsPutBit ( bs, (((UInt32) c) >> i) & 0x1 );
  188. }
  189. /*---------------------------------------------*/
  190. void bsPutUInt32 ( BitStream* bs, UInt32 c )
  191. {
  192.    Int32 i;
  193.    for (i = 31; i >= 0; i--)
  194.       bsPutBit ( bs, (c >> i) & 0x1 );
  195. }
  196. /*---------------------------------------------*/
  197. Bool endsInBz2 ( Char* name )
  198. {
  199.    Int32 n = strlen ( name );
  200.    if (n <= 4) return False;
  201.    return
  202.       (name[n-4] == '.' &&
  203.        name[n-3] == 'b' &&
  204.        name[n-2] == 'z' &&
  205.        name[n-1] == '2');
  206. }
  207. /*---------------------------------------------------*/
  208. /*---                                             ---*/
  209. /*---------------------------------------------------*/
  210. #define BLOCK_HEADER_HI  0x00003141UL
  211. #define BLOCK_HEADER_LO  0x59265359UL
  212. #define BLOCK_ENDMARK_HI 0x00001772UL
  213. #define BLOCK_ENDMARK_LO 0x45385090UL
  214. Int32 main ( Int32 argc, Char** argv )
  215. {
  216.    FILE*       inFile;
  217.    FILE*       outFile;
  218.    BitStream*  bsIn, *bsWr;
  219.    Int32       currBlock, b, wrBlock;
  220.    UInt32      bitsRead;
  221.    UInt32      bStart[20000];
  222.    UInt32      bEnd[20000];
  223.    UInt32      rbStart[20000];
  224.    UInt32      rbEnd[20000];
  225.    Int32       rbCtr;
  226.    UInt32      buffHi, buffLo, blockCRC;
  227.    Char*       p;
  228.    strcpy ( progName, argv[0] );
  229.    inFileName[0] = outFileName[0] = 0;
  230.    fprintf ( stderr, "bzip2recover v0.9.0c: extracts blocks from damaged .bz2 files.n" );
  231.    if (argc != 2) {
  232.       fprintf ( stderr, "%s: usage is `%s damaged_file_name'.n",
  233.                         progName, progName );
  234.       exit(1);
  235.    }
  236.    strcpy ( inFileName, argv[1] );
  237.    inFile = fopen ( inFileName, "rb" );
  238.    if (inFile == NULL) {
  239.       fprintf ( stderr, "%s: can't read `%s'n", progName, inFileName );
  240.       exit(1);
  241.    }
  242.    bsIn = bsOpenReadStream ( inFile );
  243.    fprintf ( stderr, "%s: searching for block boundaries ...n", progName );
  244.    bitsRead = 0;
  245.    buffHi = buffLo = 0;
  246.    currBlock = 0;
  247.    bStart[currBlock] = 0;
  248.    rbCtr = 0;
  249.    while (True) {
  250.       b = bsGetBit ( bsIn );
  251.       bitsRead++;
  252.       if (b == 2) {
  253.          if (bitsRead >= bStart[currBlock] &&
  254.             (bitsRead - bStart[currBlock]) >= 40) {
  255.             bEnd[currBlock] = bitsRead-1;
  256.             if (currBlock > 0)
  257.                fprintf ( stderr, "   block %d runs from %d to %d (incomplete)n",
  258.                          currBlock,  bStart[currBlock], bEnd[currBlock] );
  259.          } else
  260.             currBlock--;
  261.          break;
  262.       }
  263.       buffHi = (buffHi << 1) | (buffLo >> 31);
  264.       buffLo = (buffLo << 1) | (b & 1);
  265.       if ( ( (buffHi & 0x0000ffff) == BLOCK_HEADER_HI 
  266.              && buffLo == BLOCK_HEADER_LO)
  267.            || 
  268.            ( (buffHi & 0x0000ffff) == BLOCK_ENDMARK_HI 
  269.              && buffLo == BLOCK_ENDMARK_LO)
  270.          ) {
  271.          if (bitsRead > 49)
  272.             bEnd[currBlock] = bitsRead-49; else
  273.             bEnd[currBlock] = 0;
  274.          if (currBlock > 0 &&
  275.      (bEnd[currBlock] - bStart[currBlock]) >= 130) {
  276.             fprintf ( stderr, "   block %d runs from %d to %dn",
  277.                       rbCtr+1,  bStart[currBlock], bEnd[currBlock] );
  278.             rbStart[rbCtr] = bStart[currBlock];
  279.             rbEnd[rbCtr] = bEnd[currBlock];
  280.             rbCtr++;
  281.          }
  282.          currBlock++;
  283.          bStart[currBlock] = bitsRead;
  284.       }
  285.    }
  286.    bsClose ( bsIn );
  287.    /*-- identified blocks run from 1 to rbCtr inclusive. --*/
  288.    if (rbCtr < 1) {
  289.       fprintf ( stderr,
  290.                 "%s: sorry, I couldn't find any block boundaries.n",
  291.                 progName );
  292.       exit(1);
  293.    };
  294.    fprintf ( stderr, "%s: splitting into blocksn", progName );
  295.    inFile = fopen ( inFileName, "rb" );
  296.    if (inFile == NULL) {
  297.       fprintf ( stderr, "%s: can't open `%s'n", progName, inFileName );
  298.       exit(1);
  299.    }
  300.    bsIn = bsOpenReadStream ( inFile );
  301.    /*-- placate gcc's dataflow analyser --*/
  302.    blockCRC = 0; bsWr = 0;
  303.    bitsRead = 0;
  304.    outFile = NULL;
  305.    wrBlock = 0;
  306.    while (True) {
  307.       b = bsGetBit(bsIn);
  308.       if (b == 2) break;
  309.       buffHi = (buffHi << 1) | (buffLo >> 31);
  310.       buffLo = (buffLo << 1) | (b & 1);
  311.       if (bitsRead == 47+rbStart[wrBlock]) 
  312.          blockCRC = (buffHi << 16) | (buffLo >> 16);
  313.       if (outFile != NULL && bitsRead >= rbStart[wrBlock]
  314.                           && bitsRead <= rbEnd[wrBlock]) {
  315.          bsPutBit ( bsWr, b );
  316.       }
  317.       bitsRead++;
  318.       if (bitsRead == rbEnd[wrBlock]+1) {
  319.          if (outFile != NULL) {
  320.             bsPutUChar ( bsWr, 0x17 ); bsPutUChar ( bsWr, 0x72 );
  321.             bsPutUChar ( bsWr, 0x45 ); bsPutUChar ( bsWr, 0x38 );
  322.             bsPutUChar ( bsWr, 0x50 ); bsPutUChar ( bsWr, 0x90 );
  323.             bsPutUInt32 ( bsWr, blockCRC );
  324.             bsClose ( bsWr );
  325.          }
  326.          if (wrBlock >= rbCtr) break;
  327.          wrBlock++;
  328.       } else
  329.       if (bitsRead == rbStart[wrBlock]) {
  330.          outFileName[0] = 0;
  331.          sprintf ( outFileName, "rec%4d", wrBlock+1 );
  332.          for (p = outFileName; *p != 0; p++) if (*p == ' ') *p = '0';
  333.          strcat ( outFileName, inFileName );
  334.          if ( !endsInBz2(outFileName)) strcat ( outFileName, ".bz2" );
  335.          fprintf ( stderr, "   writing block %d to `%s' ...n",
  336.                            wrBlock+1, outFileName );
  337.          outFile = fopen ( outFileName, "wb" );
  338.          if (outFile == NULL) {
  339.             fprintf ( stderr, "%s: can't write `%s'n",
  340.                       progName, outFileName );
  341.             exit(1);
  342.          }
  343.          bsWr = bsOpenWriteStream ( outFile );
  344.          bsPutUChar ( bsWr, 'B' ); bsPutUChar ( bsWr, 'Z' );
  345.          bsPutUChar ( bsWr, 'h' ); bsPutUChar ( bsWr, '9' );
  346.          bsPutUChar ( bsWr, 0x31 ); bsPutUChar ( bsWr, 0x41 );
  347.          bsPutUChar ( bsWr, 0x59 ); bsPutUChar ( bsWr, 0x26 );
  348.          bsPutUChar ( bsWr, 0x53 ); bsPutUChar ( bsWr, 0x59 );
  349.       }
  350.    }
  351.    fprintf ( stderr, "%s: finishedn", progName );
  352.    return 0;
  353. }
  354. /*-----------------------------------------------------------*/
  355. /*--- end                                  bzip2recover.c ---*/
  356. /*-----------------------------------------------------------*/