我正在尝试编写一个C可执行文件,该文件将产生与默认xxd
命令相同的输出。例如,假设我有一个名为test.txt
的相当小的文本文件和一个名为myxxd
因此,我首先使用以下方法作为比较基准:
$ touch correct-xxdoutput.txt test-output.txt
$ xxd test.txt > correct-xxdoutput.txt
然后使用我的可执行文件执行相同的操作,但将其用于不同的输出文件:
$ ./myxxd test.txt > test-output.txt
$ diff correct-xxdoutput.txt test-output.txt
$
我的猜测很接近,但是我的格式总是以某种方式出错,而且我并没有真正理解xxd
是如何生成hexDumps的。感觉就像我在这里采用了完全错误的方法一样,但是也许就我目前的C知识水平而言,这项工作超出了我的潜力。
我的代码(另请参见:https://pastebin.com/Vjkm8Wb4):
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define SIZE 256
//Prototypes
void hexDump(void*, int);
int main(int argc, char *argv[])
{
//Create and open filestream
FILE *myfile;
myfile =fopen(argv[1],"rb");
for ( ; ; )
{
unsigned char buffer[SIZE];
size_t n = fread(buffer, 1, SIZE, myfile);
if (n > 0)
hexDump(buffer, n);
if (n < SIZE)
break;
}
fclose(myfile);
return 0;
}
void hexDump (void *addr, int len)
{
int i;
unsigned char bufferLine[17];
unsigned char *pc = (unsigned char*)addr;
for (i = 0; i < len; i++)
{
if ((i % 16) == 0)
{
if (i != 0)
printf (" %s\n", bufferLine);
if (pc[i] == 0x00) exit(0);
printf ("%08x: ", i);
}
// Prints Hexcdoes that represent each chars.
printf ("%02x", pc[i]);
if ((i % 2) == 1)
printf (" ");
if ((pc[i] < 0x20) || (pc[i] > 0x7e))
{
bufferLine[i % 16] = '.';
}
else
{
bufferLine[i % 16] = pc[i];
}
bufferLine[(i % 16) + 1] = '\0'; //Clears the next array buffLine
}
while ((i % 16) != 0)
{
printf (" ");
i++;
}
printf (" %s\n", bufferLine);
}
答案 0 :(得分:2)
您的代码存在多个问题,包括:
exit(0)
引导)是不好的。您应该报告该问题(针对标准错误,而不是标准输出),并以错误状态(非零状态)退出。核心格式似乎基本没问题;在文件末尾填充短行数据也存在问题。
我想出了这段代码,它与您的代码紧密相关(但经过重新格式化以至少适合我的某些风格偏见-但我的风格在大多数情况下与您的风格相距不远):
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define SIZE 256
void hexDump(size_t, void *, int);
int main(int argc, char *argv[])
{
if (argc != 2)
{
fprintf(stderr, "Usage: %s file\n", argv[0]);
exit(EXIT_FAILURE);
}
FILE *myfile = fopen(argv[1], "rb");
if (myfile == 0)
{
fprintf(stderr, "%s: failed to open file '%s' for reading\n", argv[0], argv[1]);
exit(EXIT_FAILURE);
}
unsigned char buffer[SIZE];
size_t n;
size_t offset = 0;
while ((n = fread(buffer, 1, SIZE, myfile)) > 0)
{
hexDump(offset, buffer, n);
if (n < SIZE)
break;
offset += n;
}
fclose(myfile);
return 0;
}
void hexDump(size_t offset, void *addr, int len)
{
int i;
unsigned char bufferLine[17];
unsigned char *pc = (unsigned char *)addr;
for (i = 0; i < len; i++)
{
if ((i % 16) == 0)
{
if (i != 0)
printf(" %s\n", bufferLine);
// Bogus test for zero bytes!
//if (pc[i] == 0x00)
// exit(0);
printf("%08zx: ", offset);
offset += (i % 16 == 0) ? 16 : i % 16;
}
printf("%02x", pc[i]);
if ((i % 2) == 1)
printf(" ");
if ((pc[i] < 0x20) || (pc[i] > 0x7e))
{
bufferLine[i % 16] = '.';
}
else
{
bufferLine[i % 16] = pc[i];
}
bufferLine[(i % 16) + 1] = '\0';
}
while ((i % 16) != 0)
{
printf(" ");
if (i % 2 == 1)
putchar(' ');
i++;
}
printf(" %s\n", bufferLine);
}
在原始源代码上运行并与系统xxd
的输出进行比较时,没有区别。我还对照只有16个字符(abcdefghijklmno
和换行符)的文件进行了检查;那里的输出也一样。然后,我使用自己的二进制文件对其进行了检查-发现并修复了零字节和未通知的提前退出问题。