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

操作系统开发

开发平台:

C/C++

  1. /*
  2. FIPS - the First nondestructive Interactive Partition Splitting program
  3. Module hdstruct.cpp
  4. RCS - Header:
  5. $Header: c:/daten/fips/source/main/RCS/hdstruct.cpp 1.4 1995/01/19 00:20:01 schaefer Exp schaefer $
  6. Copyright (C) 1993 Arno Schaefer
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. Report problems and direct all questions to:
  19. schaefer@rbg.informatik.th-darmstadt.de
  20. */
  21. #include "types.h"
  22. #include "hdstruct.h"
  23. root_sector::root_sector (root_sector &rs)
  24. {
  25. drive = rs.drive;
  26. for (int i=0; i<512; i++) data[i] = rs.data[i];
  27. }
  28. void root_sector::operator= (root_sector &rs)
  29. {
  30. drive = rs.drive;
  31. for (int i=0; i<512; i++) data[i] = rs.data[i];
  32. }
  33. void harddrive::operator= (harddrive &hd)
  34. {
  35. physical_drive::operator= (hd);
  36. *root_sector = *(hd.root_sector);
  37. partition_table () = hd.partition_table ();
  38. }
  39. void harddrive::get_partition_table (void)
  40. {
  41. partition_table().get (root_sector);
  42. for (int i = 0; i < 4; i++)
  43. {
  44. class partition_info* p
  45. = &(partition_table().partition_info[i]);
  46. if (p->system == 0) continue;
  47. while
  48. (
  49. p->start_sector_abs
  50. > (
  51. (p->start_cylinder + 1000UL)
  52. * geometry.heads
  53. * geometry.sectors
  54. + p->start_head
  55. * geometry.sectors
  56. + p->start_sector
  57. - 1
  58. )
  59. )
  60. {
  61. p->start_cylinder += 1024; // more than 1024 cylinders
  62. }
  63. while
  64. (
  65. (p->start_sector_abs + p->no_of_sectors_abs - 1)
  66. > (
  67. (p->end_cylinder + 1000UL)
  68. * geometry.heads
  69. * geometry.sectors
  70. + p->end_head
  71. * geometry.sectors
  72. + p->end_sector
  73. - 1
  74. )
  75. )
  76. {
  77. p->end_cylinder += 1024; // more than 1024 cylinders
  78. }
  79. }
  80. }
  81. /* ----------------------------------------------------------------------- */
  82. /* Extract Partition Table from root sector                                */
  83. /* ----------------------------------------------------------------------- */
  84. void partition_table::get (root_sector *root_sector)
  85. {
  86. for (int i=0;i<4;i++)
  87. {
  88. class partition_info *p = &partition_info[i];
  89. byte *pi = &(root_sector->data[0x1be+16*i]);
  90. p->bootable = *pi;
  91. p->start_head = *(pi+1);
  92. p->start_cylinder = *(pi+3) | ((*(pi+2) << 2) & 0x300);
  93. p->start_sector = *(pi+2) & 0x3f;
  94. p->system = *(pi+4);
  95. p->end_head = *(pi+5);
  96. p->end_cylinder = *(pi+7) | ((*(pi+6) << 2) & 0x300);
  97. p->end_sector = *(pi+6) & 0x3f;
  98. p->start_sector_abs = (dword) *(pi+8) | ((dword) *(pi+9) << 8) | ((dword) *(pi+10) << 16) | ((dword) *(pi+11) << 24);
  99. p->no_of_sectors_abs = (dword) *(pi+12) | ((dword) *(pi+13) << 8) | ((dword) *(pi+14) << 16) | ((dword) *(pi+15) << 24);
  100. }
  101. }
  102. /* ----------------------------------------------------------------------- */
  103. /* Write Partition Table back into root sector                             */
  104. /* ----------------------------------------------------------------------- */
  105. void partition_table::put (root_sector *root_sector)
  106. {
  107. for (int i=0; i<4; i++)
  108. {
  109. class partition_info p = partition_info[i];
  110. byte *pi = &(root_sector->data[0x1be+16*i]);
  111. *pi = p.bootable;
  112. *(pi+1) = p.start_head;
  113. *(pi+2) = ((p.start_cylinder >> 2) & 0xc0) | (p.start_sector & 0x3f);
  114. *(pi+3) = p.start_cylinder & 0xff;
  115. *(pi+4) = p.system;
  116. *(pi+5) = p.end_head;
  117. *(pi+6) = ((p.end_cylinder >> 2) & 0xc0) | (p.end_sector & 0x3f);
  118. *(pi+7) = p.end_cylinder & 0xff;
  119. *(pi+8) = p.start_sector_abs & 0xff;
  120. *(pi+9) = (p.start_sector_abs >> 8) & 0xff;
  121. *(pi+10) = (p.start_sector_abs >> 16) & 0xff;
  122. *(pi+11) = (p.start_sector_abs >> 24) & 0xff;
  123. *(pi+12) = p.no_of_sectors_abs & 0xff;
  124. *(pi+13) = (p.no_of_sectors_abs >> 8) & 0xff;
  125. *(pi+14) = (p.no_of_sectors_abs >> 16) & 0xff;
  126. *(pi+15) = (p.no_of_sectors_abs >> 24) & 0xff;
  127. }
  128. }