home *** CD-ROM | disk | FTP | other *** search
- /*Program 6_8 - Sector Read
- by Stephen R. Davis, 1987
-
- Read sectors by logical sector number using interrupt 0x25.
- This can be used to inspect a hard disk or floppy.
- */
-
- #include <stdio.h>
- #include <ctype.h>
- #include <dos.h>
- #include <conio.h>
- #include <string.h>
-
- #define sector_size 512
- #define chars_per_line 16
- #define max_disk 5
-
- /*prototype definitions*/
- void main (void);
- unsigned readsector (unsigned, unsigned, char *);
- void disperr (unsigned);
- void display (char *, unsigned, unsigned);
- void disphex (char *, unsigned);
- void dispascii (char *, unsigned);
- unsigned getval (char *);
-
- /*global data*/
- char buffer [sector_size];
- union REGS reg;
- char *drives [] = {"A", "B", "C", "D", "E", "F"};
-
- /*Main - prompt the user for input and read the indicated sector*/
- void main (void)
- {
- unsigned diskno, sector;
- char character;
-
- /*program preamble*/
- printf ("Disk examiner -\n"
- " Enter disk and sector number to start (both hex);\n"
- " thereafter, just enter + and - to move one sector.\n"
- " Anything else returns to disk/sector question.\n"
- " Exit by entering a drive number greater\n"
- " than %d\n", max_disk);
-
- /*read the disk number to examine*/
- for (;;) {
- diskno = getval ("Enter disk number (0 = A, 1 = B, etc)");
- if (diskno > max_disk)
- break;
- sector = getval ("Enter new sector number (0 relative)");
-
- /*keep spitting out sectors as long as enters '+' or '-'*/
- for (;;) {
- if (readsector (diskno, sector, buffer))
- break;
-
- printf ("\nDrive = %s, Sector = %4.4x\n",
- drives [diskno], sector);
- display (buffer, sector_size, chars_per_line);
-
- character = getche ();
- if (character == '-')
- sector--;
- else
- if (character == '+')
- sector++;
- else
- break;
- }
- }
- }
-
- /*Getval - display a prompt and input the response*/
- unsigned getval (prompt)
- char *prompt;
- {
- unsigned value;
-
- printf ("%s - ", prompt);
- scanf ("%x", &value);
- return value;
- }
-
- /*Read - read a sector from the specified disk. Return a 0
- if successful, else display the error*/
- unsigned readsector (diskno, sector, bufptr)
- unsigned diskno, sector;
- char *bufptr;
- {
- reg.h.al = diskno;
- reg.x.bx = (unsigned)bufptr;
- reg.x.cx = 1;
- reg.x.dx = sector;
- int86 (0x25, ®, ®);
-
- if (reg.x.cflag)
- disperr (reg.h.al);
- return reg.x.cflag;
- }
-
- /*Disperror - display the error from DOS disk read*/
- char *errlist [] = {"Attempt to write on write-protected disk",
- "Unknown unit",
- "Drive not ready",
- "Unknown command",
- "CRC error",
- "Bad drive request structure length",
- "Seek error",
- "Unknown media type",
- "Sector not found",
- "Printer out of paper",
- "Write fault",
- "Read fault",
- "General failure"};
-
- void disperr (errnum)
- unsigned errnum;
- {
- printf ("\n%s\n", errlist [errnum]);
- }
-
- /*Display - display a buffer on the user's screen in both hex
- and ASCII format. Suppress displaying a line if it
- is the same as its predecessor.*/
- void display (bufptr, number, per_line)
- char *bufptr;
- unsigned number, per_line;
- {
- unsigned count;
- char *oldptr;
-
- count = 0;
- oldptr = "something very unlikely";
- while (count < number) {
- if (strncmp (oldptr, bufptr, per_line)) {
- printf ("%4x: ", count);
- disphex (bufptr, per_line);
- printf (" - ");
- dispascii (bufptr, per_line);
- printf ("\n");
- }
- oldptr = bufptr;
- bufptr += per_line;
- count += per_line;
- }
- }
-
- /*Disphex - display data in hex format*/
- void disphex (bufptr, count)
- char *bufptr;
- unsigned count;
- {
- for (; count; count--)
- printf ("%2.2x ", 0xff & *bufptr++);
- }
-
- /*Dispascii - display data in ASCII format*/
- void dispascii (bufptr, count)
- char *bufptr;
- unsigned count;
- {
- for (; count; bufptr++, count--)
- if (isprint (*bufptr))
- printf ("%c", *bufptr);
- else
- printf ("%c", '.');
- }