home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / PRG6_8.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-19  |  4.7 KB  |  169 lines

  1. /*Program 6_8 - Sector Read
  2.    by Stephen R. Davis, 1987
  3.  
  4.   Read sectors by logical sector number using interrupt 0x25.
  5.   This can be used to inspect a hard disk or floppy.
  6. */
  7.  
  8. #include <stdio.h>
  9. #include <ctype.h>
  10. #include <dos.h>
  11. #include <conio.h>
  12. #include <string.h>
  13.  
  14. #define sector_size 512
  15. #define chars_per_line 16
  16. #define max_disk 5
  17.  
  18. /*prototype definitions*/
  19. void main (void);
  20. unsigned readsector (unsigned, unsigned, char *);
  21. void disperr (unsigned);
  22. void display (char *, unsigned, unsigned);
  23. void disphex (char *, unsigned);
  24. void dispascii (char *, unsigned);
  25. unsigned getval (char *);
  26.  
  27. /*global data*/
  28. char buffer [sector_size];
  29. union REGS reg;
  30. char *drives [] = {"A", "B", "C", "D", "E", "F"};
  31.  
  32. /*Main - prompt the user for input and read the indicated sector*/
  33. void main (void)
  34. {
  35.      unsigned diskno, sector;
  36.      char character;
  37.  
  38.      /*program preamble*/
  39.      printf ("Disk examiner -\n"
  40.              "   Enter disk and sector number to start (both hex);\n"
  41.              "   thereafter, just enter + and - to move one sector.\n"
  42.              "   Anything else returns to disk/sector question.\n"
  43.              "   Exit by entering a drive number greater\n"
  44.              "   than %d\n", max_disk);
  45.  
  46.      /*read the disk number to examine*/
  47.      for (;;) {
  48.           diskno = getval ("Enter disk number (0 = A, 1 = B, etc)");
  49.           if (diskno > max_disk)
  50.                break;
  51.           sector = getval ("Enter new sector number (0 relative)");
  52.  
  53.           /*keep spitting out sectors as long as enters '+' or '-'*/
  54.           for (;;) {
  55.                if (readsector (diskno, sector, buffer))
  56.                     break;
  57.  
  58.                printf ("\nDrive = %s, Sector = %4.4x\n",
  59.                               drives [diskno], sector);
  60.                display (buffer, sector_size, chars_per_line);
  61.  
  62.                character = getche ();
  63.                if (character == '-')
  64.                     sector--;
  65.                else
  66.                     if (character == '+')
  67.                          sector++;
  68.                     else
  69.                          break;
  70.           }
  71.      }
  72. }
  73.  
  74. /*Getval - display a prompt and input the response*/
  75. unsigned getval (prompt)
  76.      char *prompt;
  77. {
  78.      unsigned value;
  79.  
  80.      printf ("%s - ", prompt);
  81.      scanf ("%x", &value);
  82.      return value;
  83. }
  84.  
  85. /*Read - read a sector from the specified disk.  Return a 0
  86.          if successful, else display the error*/
  87. unsigned readsector (diskno, sector, bufptr)
  88.      unsigned diskno, sector;
  89.      char *bufptr;
  90. {
  91.      reg.h.al = diskno;
  92.      reg.x.bx = (unsigned)bufptr;
  93.      reg.x.cx = 1;
  94.      reg.x.dx = sector;
  95.      int86 (0x25, ®, ®);
  96.  
  97.      if (reg.x.cflag)
  98.           disperr (reg.h.al);
  99.      return reg.x.cflag;
  100. }
  101.  
  102. /*Disperror - display the error from DOS disk read*/
  103. char *errlist [] = {"Attempt to write on write-protected disk",
  104.                     "Unknown unit",
  105.                     "Drive not ready",
  106.                     "Unknown command",
  107.                     "CRC error",
  108.                     "Bad drive request structure length",
  109.                     "Seek error",
  110.                     "Unknown media type",
  111.                     "Sector not found",
  112.                     "Printer out of paper",
  113.                     "Write fault",
  114.                     "Read fault",
  115.                     "General failure"};
  116.  
  117. void disperr (errnum)
  118.      unsigned errnum;
  119. {
  120.      printf ("\n%s\n", errlist [errnum]);
  121. }
  122.  
  123. /*Display - display a buffer on the user's screen in both hex
  124.             and ASCII format.  Suppress displaying a line if it
  125.             is the same as its predecessor.*/
  126. void display (bufptr, number, per_line)
  127.      char *bufptr;
  128.      unsigned number, per_line;
  129. {
  130.      unsigned count;
  131.      char *oldptr;
  132.  
  133.      count = 0;
  134.      oldptr = "something very unlikely";
  135.      while (count < number) {
  136.           if (strncmp (oldptr, bufptr, per_line)) {
  137.                printf ("%4x: ", count);
  138.                disphex (bufptr, per_line);
  139.                printf (" - ");
  140.                dispascii (bufptr, per_line);
  141.                printf ("\n");
  142.           }
  143.           oldptr = bufptr;
  144.           bufptr += per_line;
  145.           count += per_line;
  146.      }
  147. }
  148.  
  149. /*Disphex - display data in hex format*/
  150. void disphex (bufptr, count)
  151.      char *bufptr;
  152.      unsigned count;
  153. {
  154.      for (; count; count--)
  155.            printf ("%2.2x ", 0xff & *bufptr++);
  156. }
  157.  
  158. /*Dispascii - display data in ASCII format*/
  159. void dispascii (bufptr, count)
  160.      char *bufptr;
  161.      unsigned count;
  162. {
  163.      for (; count; bufptr++, count--)
  164.           if (isprint (*bufptr))
  165.                printf ("%c", *bufptr);
  166.           else
  167.                printf ("%c", '.');
  168. }
  169.