part_dos.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /*
  2. * (C) Copyright 2001
  3. * Raymond Lo, lo@routefree.com
  4. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. /*
  25. * Support for harddisk partitions.
  26. *
  27. * To be compatible with LinuxPPC and Apple we use the standard Apple
  28. * SCSI disk partitioning scheme. For more information see:
  29. * http://developer.apple.com/techpubs/mac/Devices/Devices-126.html#MARKER-14-92
  30. */
  31. #include <common.h>
  32. #include <command.h>
  33. #include <ide.h>
  34. #include "part_dos.h"
  35. #if defined(CONFIG_CMD_IDE) || \
  36. defined(CONFIG_CMD_SATA) || \
  37. defined(CONFIG_CMD_SCSI) || \
  38. defined(CONFIG_CMD_USB) || \
  39. defined(CONFIG_MMC) || \
  40. defined(CONFIG_SYSTEMACE)
  41. /* Convert char[4] in little endian format to the host format integer
  42. */
  43. static inline int le32_to_int(unsigned char *le32)
  44. {
  45. return ((le32[3] << 24) +
  46. (le32[2] << 16) +
  47. (le32[1] << 8) +
  48. le32[0]
  49. );
  50. }
  51. static inline int is_extended(int part_type)
  52. {
  53. return (part_type == 0x5 ||
  54. part_type == 0xf ||
  55. part_type == 0x85);
  56. }
  57. static inline int is_bootable(dos_partition_t *p)
  58. {
  59. return p->boot_ind == 0x80;
  60. }
  61. static void print_one_part(dos_partition_t *p, int ext_part_sector,
  62. int part_num, unsigned int disksig)
  63. {
  64. int lba_start = ext_part_sector + le32_to_int (p->start4);
  65. int lba_size = le32_to_int (p->size4);
  66. printf("%3d\t%-10d\t%-10d\t%08x-%02x\t%02x%s%s\n",
  67. part_num, lba_start, lba_size, disksig, part_num, p->sys_ind,
  68. (is_extended(p->sys_ind) ? " Extd" : ""),
  69. (is_bootable(p) ? " Boot" : ""));
  70. }
  71. static int test_block_type(unsigned char *buffer)
  72. {
  73. if((buffer[DOS_PART_MAGIC_OFFSET + 0] != 0x55) ||
  74. (buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) ) {
  75. return (-1);
  76. } /* no DOS Signature at all */
  77. if (strncmp((char *)&buffer[DOS_PBR_FSTYPE_OFFSET],"FAT",3)==0 ||
  78. strncmp((char *)&buffer[DOS_PBR32_FSTYPE_OFFSET],"FAT32",5)==0) {
  79. return DOS_PBR; /* is PBR */
  80. }
  81. return DOS_MBR; /* Is MBR */
  82. }
  83. int test_part_dos (block_dev_desc_t *dev_desc)
  84. {
  85. ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
  86. if (dev_desc->block_read(dev_desc->dev, 0, 1, (ulong *) buffer) != 1)
  87. return -1;
  88. if (test_block_type(buffer) != DOS_MBR)
  89. return -1;
  90. return 0;
  91. }
  92. /* Print a partition that is relative to its Extended partition table
  93. */
  94. static void print_partition_extended(block_dev_desc_t *dev_desc,
  95. int ext_part_sector, int relative,
  96. int part_num, unsigned int disksig)
  97. {
  98. ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
  99. dos_partition_t *pt;
  100. int i;
  101. if (dev_desc->block_read(dev_desc->dev, ext_part_sector, 1, (ulong *) buffer) != 1) {
  102. printf ("** Can't read partition table on %d:%d **\n",
  103. dev_desc->dev, ext_part_sector);
  104. return;
  105. }
  106. i=test_block_type(buffer);
  107. if (i != DOS_MBR) {
  108. printf ("bad MBR sector signature 0x%02x%02x\n",
  109. buffer[DOS_PART_MAGIC_OFFSET],
  110. buffer[DOS_PART_MAGIC_OFFSET + 1]);
  111. return;
  112. }
  113. if (!ext_part_sector)
  114. disksig = le32_to_int(&buffer[DOS_PART_DISKSIG_OFFSET]);
  115. /* Print all primary/logical partitions */
  116. pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
  117. for (i = 0; i < 4; i++, pt++) {
  118. /*
  119. * fdisk does not show the extended partitions that
  120. * are not in the MBR
  121. */
  122. if ((pt->sys_ind != 0) &&
  123. (ext_part_sector == 0 || !is_extended (pt->sys_ind)) ) {
  124. print_one_part(pt, ext_part_sector, part_num, disksig);
  125. }
  126. /* Reverse engr the fdisk part# assignment rule! */
  127. if ((ext_part_sector == 0) ||
  128. (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
  129. part_num++;
  130. }
  131. }
  132. /* Follows the extended partitions */
  133. pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
  134. for (i = 0; i < 4; i++, pt++) {
  135. if (is_extended (pt->sys_ind)) {
  136. int lba_start = le32_to_int (pt->start4) + relative;
  137. print_partition_extended(dev_desc, lba_start,
  138. ext_part_sector == 0 ? lba_start : relative,
  139. part_num, disksig);
  140. }
  141. }
  142. return;
  143. }
  144. /* Print a partition that is relative to its Extended partition table
  145. */
  146. static int get_partition_info_extended (block_dev_desc_t *dev_desc, int ext_part_sector,
  147. int relative, int part_num,
  148. int which_part, disk_partition_t *info,
  149. unsigned int disksig)
  150. {
  151. ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
  152. dos_partition_t *pt;
  153. int i;
  154. if (dev_desc->block_read (dev_desc->dev, ext_part_sector, 1, (ulong *) buffer) != 1) {
  155. printf ("** Can't read partition table on %d:%d **\n",
  156. dev_desc->dev, ext_part_sector);
  157. return -1;
  158. }
  159. if (buffer[DOS_PART_MAGIC_OFFSET] != 0x55 ||
  160. buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) {
  161. printf ("bad MBR sector signature 0x%02x%02x\n",
  162. buffer[DOS_PART_MAGIC_OFFSET],
  163. buffer[DOS_PART_MAGIC_OFFSET + 1]);
  164. return -1;
  165. }
  166. #ifdef CONFIG_PARTITION_UUIDS
  167. if (!ext_part_sector)
  168. disksig = le32_to_int(&buffer[DOS_PART_DISKSIG_OFFSET]);
  169. #endif
  170. /* Print all primary/logical partitions */
  171. pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
  172. for (i = 0; i < 4; i++, pt++) {
  173. /*
  174. * fdisk does not show the extended partitions that
  175. * are not in the MBR
  176. */
  177. if (((pt->boot_ind & ~0x80) == 0) &&
  178. (pt->sys_ind != 0) &&
  179. (part_num == which_part) &&
  180. (is_extended(pt->sys_ind) == 0)) {
  181. info->blksz = 512;
  182. info->start = ext_part_sector + le32_to_int (pt->start4);
  183. info->size = le32_to_int (pt->size4);
  184. switch(dev_desc->if_type) {
  185. case IF_TYPE_IDE:
  186. case IF_TYPE_SATA:
  187. case IF_TYPE_ATAPI:
  188. sprintf ((char *)info->name, "hd%c%d",
  189. 'a' + dev_desc->dev, part_num);
  190. break;
  191. case IF_TYPE_SCSI:
  192. sprintf ((char *)info->name, "sd%c%d",
  193. 'a' + dev_desc->dev, part_num);
  194. break;
  195. case IF_TYPE_USB:
  196. sprintf ((char *)info->name, "usbd%c%d",
  197. 'a' + dev_desc->dev, part_num);
  198. break;
  199. case IF_TYPE_DOC:
  200. sprintf ((char *)info->name, "docd%c%d",
  201. 'a' + dev_desc->dev, part_num);
  202. break;
  203. default:
  204. sprintf ((char *)info->name, "xx%c%d",
  205. 'a' + dev_desc->dev, part_num);
  206. break;
  207. }
  208. /* sprintf(info->type, "%d, pt->sys_ind); */
  209. sprintf ((char *)info->type, "U-Boot");
  210. info->bootable = is_bootable(pt);
  211. #ifdef CONFIG_PARTITION_UUIDS
  212. sprintf(info->uuid, "%08x-%02x", disksig, part_num);
  213. #endif
  214. return 0;
  215. }
  216. /* Reverse engr the fdisk part# assignment rule! */
  217. if ((ext_part_sector == 0) ||
  218. (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
  219. part_num++;
  220. }
  221. }
  222. /* Follows the extended partitions */
  223. pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
  224. for (i = 0; i < 4; i++, pt++) {
  225. if (is_extended (pt->sys_ind)) {
  226. int lba_start = le32_to_int (pt->start4) + relative;
  227. return get_partition_info_extended (dev_desc, lba_start,
  228. ext_part_sector == 0 ? lba_start : relative,
  229. part_num, which_part, info, disksig);
  230. }
  231. }
  232. return -1;
  233. }
  234. void print_part_dos (block_dev_desc_t *dev_desc)
  235. {
  236. printf("Part\tStart Sector\tNum Sectors\tUUID\t\tType\n");
  237. print_partition_extended(dev_desc, 0, 0, 1, 0);
  238. }
  239. int get_partition_info_dos (block_dev_desc_t *dev_desc, int part, disk_partition_t * info)
  240. {
  241. return get_partition_info_extended(dev_desc, 0, 0, 1, part, info, 0);
  242. }
  243. #endif