这是我编写的用于检查文件和磁盘之间的字节的程序。
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#define BYTES_TO_READ 64
int main(int argc, char **argv)
{
int device = open("/dev/sdz", O_RDWR);
if(device < 0)
{
printf("Device opening error\n");
return 1;
}
int file = open("test.txt", O_RDONLY);
if(file < 0)
{
printf("File opening error\n");
return 2;
}
int byte, device_loc, file_loc;
char *buff_device, *buff_file;
for(byte = 0; byte<BYTES_TO_READ; byte++)
{
device_loc = lseek(device, byte, SEEK_SET); /* SEG FAULT */
file_loc = lseek(file, byte, SEEK_SET);
printf("File location\t%d",file_loc);
printf("Device location\t%d",device_loc);
read(device, buff_device, 1);
read(file, buff_file, 1);
if( (*buff_device) == (*buff_file) )
{
printf("Byte %d same", byte);
}
else
{
printf("Bytes %d differ: device\t%d\tfile\t%d\n",byte, *buff_device, *buff_file);
}
}
return 0;
}
请不要问我为什么要比较sdz
和一个文件。这正是我想做的:将文件直接写入磁盘并读回。
sdz
是一个环回设备,其中是一个链接到/dev/loop0
. 现在文件和磁盘是否不同并不重要,但我希望我的程序能够工作。通过一些调试,我发现了分段错误发生在哪里,但我不知道为什么。
长话短说:为什么这给了我分段错误?
提前致谢