TECHINFO.TXT
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:9k
源码类别:

操作系统开发

开发平台:

C/C++

  1. Technical Info on FIPS
  2. ----------------------
  3. FIPS was written in C++ V2.0 with the Turbo C++ 1.0 and Borland C++ 3.1
  4. compilers.
  5. It should compile with any newer C++ compiler (perhaps after minor changes
  6. to the BIOS calls).
  7. If you're a C++ wizard, don't look too closely at the code, this is my first
  8. C++ program, so it is far from acceptable (too much public data, some ini-
  9. tializers and assignment operators are missing etc.). Constructive critizism
  10. is always welcome however.
  11. How FIPS works:
  12. FIPS uses the BIOS interrupts 13h 00h (reset disks), 13h 02h (read sector),
  13. 13h 08h (get drive parameters), 13h 03h (write sector) and 13h 04h (verify
  14. sector).
  15. Here is the sequence of function calls in main:
  16. evaluate_argument_vector
  17.   read the commandline arguments and set the global variables accordingly
  18. notice
  19.   display copyright notice and version number
  20. ask_for_drive_number
  21.   let the user choose the drive (if more than 1)
  22. harddrive.reset
  23.   reset harddrive
  24. harddrive.rootsector->read
  25.   read the sector 0,0,1 of the chosen drive into an array of unsigned char
  26. hd.partition_table().get
  27.   extract the necessary information from the root sector (see below - The
  28.   root sector)
  29. hd.print_partition_table
  30.   print the information
  31. hd.check
  32.   check if everything is ok (see below - The root sector)
  33. ask_for_partition_number
  34.   let the user choose the partition
  35. partition->bootsector->read
  36.   read the first sector of the chosen partition to another array
  37. partition->bpb().get
  38.   extract info from the boot sector (see below - The boot sector)
  39. partition->print_bpb
  40.   print the info
  41. partition->info().get
  42.   calculate no. of clusters, starting sector of FATs etc.
  43. partition->check
  44.   check boot sector (see below - The boot sector)
  45. fat1.check_against(fat2)
  46.   check if FAT 1 is identical to FAT 2 (see below - The FAT)
  47. save_root_and_boot
  48.   write root- and boot sector to floppy disk (optional)
  49. ask_for_new_start_cylinder
  50.   ask the user for the first cylinder of the new partition
  51. fat2.check_empty
  52.   check if chosen part of partition is empty (see below - The FAT)
  53. hd.calculate_new_root
  54.   from the chosen start cylinder calculate the new partition table
  55.   Note that the partition entries will be moved to the beginning of the par- 
  56.   tition table, so that the new partition will be the last one and the drive
  57.   names will not change.
  58. hd.partition_table.put
  59.   write the new partition table into the root sector buffer
  60. hd.partition_table.get,hd.print_partition_table,hd.check
  61.   check if new root sector is ok
  62. partition->calculate_new_boot
  63.   put new number of sectors in boot sector info
  64. partition->bpb()->put
  65.   write new boot sector info into boot sector buffer
  66. partition->bpb()->get,partition->print_bpb,partition->check
  67.   check if new boot sector is ok
  68. ask_for_write_permission
  69.   ask if user wants to proceed
  70. harddrive.rootsector->write
  71.   write the changed root sector to the disk
  72. partition->bootsector->write
  73.   write the changed boot sector to the disk
  74. The root sector
  75. ---------------
  76. The root sector is the first sector on every hard disk. It contains the
  77. program that loads the boot sector of the bootable partition and the
  78. partition table. The last two bytes of the root sector must be 55 aa (hex).
  79. The partition table begins at 1be. It contains 4 * 16 Bytes for the four
  80. possible partitions.
  81. All numbers are zero based except the start/end-sector number (may be 1-63).
  82. One partition entry contains the following:
  83. 1 Byte - Bootable Flag. Must be 0 (not bootable) or 80h (bootable).
  84.  At most one Partition may be bootable at a time.
  85.  (somewhere I read the bootable flag may also be 81h for the
  86.  second drive - does anybody know anything about that?)
  87. 1 Byte - Start Head. The number of the head of the first sector of the
  88.  partition.
  89. 2 Bytes - Start Sector + Cylinder. The Bits are as follows:
  90. CCSSSSSS CCCCCCCC
  91.   where the first byte contains the sector number (1 - 63), and
  92.   the high two bits of the cylinder number. The second byte con-
  93.   tains the low eight bits of the cylinder number.
  94. 1 Byte - System Indicator. For DOS this may be:
  95. 1 - 12-bit FAT, 16-bit sector number
  96. 4 - 16-bit FAT, 16-bit sector number
  97. 5 - Extended Partition
  98. 6 - 16-bit FAT, 32-bit sector number
  99. 1 Byte - End Head. Head Number of the last sector of the partition
  100. 2 Bytes - End Sector + Cylinder. Same format as Start Sector + Cylinder
  101. 4 Bytes - First Sector. Number of the first sector of the partition. This
  102.   corresponds to the Start Head, Sector + Cylinder. High Byte
  103.   comes first.
  104. 4 Bytes - Total number of Sectors.
  105. The function check_rootsector_validity checks the following:
  106. - Signature Bytes (55 aa) in the last two bytes of the sector
  107. - not more than one bootable partition
  108. - Bootable flag is 0 or 80h
  109. - Start/End sector of a partition is not 0
  110. - Start/End sector & head are not greater than drive geometry allows
  111. - Start cylinder * sectors * heads + start head * sectors + start sector - 1
  112.   = first sector (where sectors is no. of sectors per track, heads is
  113.   no. of heads of the drive)
  114. - End cylinder * sectors * heads + end head * sector + end sector = first
  115.   sector + number of sectors
  116. - if System Indicator is 0, all other bytes of partition entry are 0
  117. - all partitions except the first begin on cylinder boundaries (head = 0,
  118.   sectors = 1)
  119. - all partition end on cylinder boundaries
  120. - partitions don't overlap
  121. - no free space between partitions
  122. The boot sector
  123. ---------------
  124. The boot sector is the first sector of every partition. It contains the
  125. program that boots the operating system and the bios parameter block.
  126. The last two bytes must again contain 55 aa. The information in the
  127. boot sector is the following:
  128. 00  3 bytes  jump instruction ('eb xx 90' or 'e9 xx xx')
  129. 03  8 bytes  OEM name and version - e.g. MSDOS5.0
  130. 0b  2 bytes  bytes per sector - should be 512
  131. 0d  1 byte   sectors per cluster - power of two
  132. 0e  2 bytes  reserved sectors - typically 1 (boot sector)
  133. 10  1 byte   number of FATs - must be 2
  134. 11  2 bytes  number of rootdirectory entries - typically 512
  135. 13  2 bytes  number of sectors (short) - 0, if BIGDOS partition
  136. 15  1 byte   media descriptor - typically f8h
  137. 16  2 bytes  sectors per FAT - varies
  138. 18  2 bytes  sectors per track
  139. 1a  2 bytes  number of heads
  140. 1c  2 bytes  number of hidden sectors (low)
  141. - extended BPB since DOS 4.0 -
  142. 1e  2 bytes  number of hidden sectors (high)
  143. 20  4 bytes  number of sectors (long)
  144. 24  1 byte   physical drive number - 80h or 81h
  145. 25  1 byte   reserved
  146. 26  1 byte   signature - 29h
  147. The function check_bootsector_validity checks the following:
  148. - correct jump instruction
  149. - signature bytes 55 aa in the last two bytes of the sector
  150. - bytes per sector = 512
  151. - sectors per cluster is power of two
  152. - reserved sectors = 1
  153. - number of FATs = 2
  154. - number of rootdirectory entries is multiple of 16
  155. - media descriptor = f8h
  156. - sectors per fat <= 256
  157. - sectors per fat big enough to hold complete FAT
  158. - sectors per track matches BIOS info
  159. - number of heads matches BIOS info
  160. - hidden sectors = start sector
  161. - signature = 29h, if BIGDOS
  162. - physical drive number = actual drive number
  163. - number of sectors matches partition info
  164. - system indicator byte in root sector matches partition type
  165. The FAT
  166. -------
  167. The File Allocation Table contains the information how the clusters of the
  168. disk are linked to files. Every directory entry contains a pointer to the
  169. first cluster of the file. The corresponding cluster entry in the FAT con-
  170. tains a pointer to the next cluster, or an EOF marker (FFFF for 16-bit FATs,
  171. FFF for 12-bit FATs) if the cluster is the last one of the file.
  172. Bad clusters are marked with FFF7 or FF7. Empty clusters are marked with 0.
  173. The first cluster on the disk is cluster number 2, it begins at the first
  174. sector after the root directory. The FAT entries for the clusters 0 and 1
  175. contain the media descriptor byte (usually F8h for harddisk) and two or
  176. three FFh bytes.
  177. There exist two copies of the FAT on a normal DOS partition, these two
  178. copies must be identical. FAT 2 is the primary FAT.
  179. The function check_fat_validity checks if the two FATs are identical and if
  180. the entries 0 and 1 contain what they are supposed to.
  181. The function check_fat_empty checks if the cluster entries that cover the
  182. new partition contain either 0 (empty) or FFF7 (Bad cluster).
  183. ------------------------------------------------------------------------------
  184. I hope you find this information useful. If you found anything not to be
  185. exact or if you have additions, please let me know asap.
  186. Arno Schaefer
  187. schaefer@rbg.informatik.th-darmstadt.de