문제

This is a program that I wrote to check bytes between a file and a disk.

#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;
}

Please don't ask why I'm comparing sdz and a file. This is exactly what I wanted to do: write a file directly to a disk and read it back.

sdz is a loop back device, with is a link to /dev/loop0. For now It doesn't matter if file and disk differ, but I want my program to work. By some debugging, I have found where the segmentation fault is happening, but I couldn't figure out why.

Long story short: Why this gives me segmentation fault?

Thanks in advance

도움이 되었습니까?

해결책

These are writing to random locations in memory:

read(device, buff_device, 1);
read(file, buff_file, 1);

as buff_device and buff_file are uninitialized pointers. Use a char type and pass their addresses instead.

char buff_device;
char buff_file;

/* Check return value of read before using variables. */
if (1 == read(device, &buff_device, 1) &&
    1 == read(file, &buff_file, 1))
{
    if (buff_device == buff_file)
    /* snip */
}
else
{
    /* Report read failure. */
}

다른 팁

Change :

char *buff_device, *buff_file;

to

char buff_device[1], buff_file[1];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top