以下代码有什么问题

时间:2012-03-09 11:29:41

标签: c malloc md5 collision fingerprint

以下函数从 rabin_polynomial 结构中获取文件偏移量,打开 input_file 以生成md5指纹并将结果写入 fpfile

我的问题是它似乎使用相同的 chunk_buffer 内容,因为它会为具有不同legth的块生成类似的指纹。

可能是什么原因?

我已经分别使用其他输入测试了md5函数,并生成了正确的摘要。

   int write_rabin_fingerprints_to_binary_file(FILE *fpfile,FILE *input_file,
    struct rabin_polynomial *head)
{        
    struct rabin_polynomial *poly=head;
    unsigned char fing_print[33]={'\0'};
    size_t bytes_read;
      while(poly != NULL)
        {    
       char *chunk_buffer;
       chunk_buffer = (char*) malloc ((poly->length));  
       bytes_read=fread (chunk_buffer,1, poly->length,input_file);          
               if(bytes_read!=poly->length)
                {
                   printf("Error reading from%s ",input_file);
                   return -1;
                }
       strncpy((char*)fing_print,md5(chunk_buffer).c_str(),32);     
       size_t ret_val=fprintf(fpfile, "%llu\t%lu\t%s\n",poly->start,
                                       poly->length,fing_print);

              if(ret_val == 0)
               {
                  fprintf(stderr, "Could not write rabin polynomials to file.");
                  return -1;
               }

         poly=poly->next_polynomial;
      free(chunk_buffer);
        }

   return 0;
}

编辑:

我正在使用visual studio 2010运行此程序。可以在 malloc()行中对 char * 进行类型转换会产生问题吗?

读取的字节数与参数中指定的一样。

2 个答案:

答案 0 :(得分:1)

代码中没有任何错误导致此类错误。我发现它发生的原因是零长度字符串,它们也被称为文件孔

答案 1 :(得分:0)

   int write_rabin_fingerprints_to_binary_file(FILE *fpfile,FILE *input_file
     , struct rabin_polynomial *head)
{        
    struct rabin_polynomial *poly;
    unsigned char fing_print[33];

    for (poly=head; poly != NULL;poly=poly->next_polynomial )   {    
       char *chunk_buffer;
       int retval;

       chunk_buffer = malloc (1+poly->length);  
       retval = fread (chunk_buf,1, poly->length,input_file);

            /* check retval here */

       chunk_buff[poly->length] = 0;     
       strncpy(fing_print,md5(chunk_buffer).c_str(), sizeof fing_print);
       fing_print[sizeof fing_print -1] = 0;
       retval = fprintf(fpfile, "%llu\t%lu\t%s\n"
                      ,poly->start, poly->length, fing_print);

              if(retval <= 0)
               {
                  fprintf(stderr, "Could not write rabin polynomials to file.");
                  return -1;
               }
        free(chunk_buffer);
        }

   return 0;
}