一个简单的C程序可以模仿默认的“ xxd”命令,使其差异输出返回0吗?

时间:2019-02-03 06:55:03

标签: c hex diff hexdump xxd

我正在尝试编写一个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);
}

1 个答案:

答案 0 :(得分:2)

您的代码存在多个问题,包括:

  • 您不会检查要打开的文件名。
  • 您无需检查是否打开了名为的文件。
  • 您没有一种机制来处理输出中的偏移量,因此第一个块之后的行首地址是错误的。
  • 您的代码将测试零字节,并在遇到一个字节时静默退出。这很糟糕-两次。一次是因为要处理二进制数据的程序必须处理零字节以及1..255中的值;一次是因为静默退出(并声称成功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和换行符)的文件进行了检查;那里的输出也一样。然后,我使用自己的二进制文件对其进行了检查-发现并修复了零字节和未通知的提前退出问题。