unused_mac.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * volume_id - reads filesystem label and uuid
  3. *
  4. * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library 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 GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. //config:### config FEATURE_VOLUMEID_MAC
  21. //config:### bool "mac filesystem"
  22. //config:### default y
  23. //config:### depends on VOLUMEID
  24. //kbuild:### lib-$(CONFIG_FEATURE_VOLUMEID_MAC) += mac.o
  25. #include "volume_id_internal.h"
  26. struct mac_driver_desc {
  27. uint8_t signature[2];
  28. uint16_t block_size;
  29. uint32_t block_count;
  30. } PACKED;
  31. struct mac_partition {
  32. uint8_t signature[2];
  33. uint16_t res1;
  34. uint32_t map_count;
  35. uint32_t start_block;
  36. uint32_t block_count;
  37. uint8_t name[32];
  38. uint8_t type[32];
  39. } PACKED;
  40. int FAST_FUNC volume_id_probe_mac_partition_map(struct volume_id *id, uint64_t off)
  41. {
  42. const uint8_t *buf;
  43. struct mac_driver_desc *driver;
  44. struct mac_partition *part;
  45. dbg("probing at offset 0x%llx", (unsigned long long) off);
  46. buf = volume_id_get_buffer(id, off, 0x200);
  47. if (buf == NULL)
  48. return -1;
  49. part = (struct mac_partition *) buf;
  50. if (part->signature[0] == 'P' && part->signature[1] == 'M' /* "PM" */
  51. && (memcmp(part->type, "Apple_partition_map", 19) == 0)
  52. ) {
  53. /* linux creates an own subdevice for the map
  54. * just return the type if the drive header is missing */
  55. // volume_id_set_usage(id, VOLUME_ID_PARTITIONTABLE);
  56. // id->type = "mac_partition_map";
  57. return 0;
  58. }
  59. driver = (struct mac_driver_desc *) buf;
  60. if (driver->signature[0] == 'E' && driver->signature[1] == 'R') { /* "ER" */
  61. /* we are on a main device, like a CD
  62. * just try to probe the first partition from the map */
  63. unsigned bsize = be16_to_cpu(driver->block_size);
  64. int part_count;
  65. int i;
  66. /* get first entry of partition table */
  67. buf = volume_id_get_buffer(id, off + bsize, 0x200);
  68. if (buf == NULL)
  69. return -1;
  70. part = (struct mac_partition *) buf;
  71. if (part->signature[0] != 'P' || part->signature[1] != 'M') /* not "PM" */
  72. return -1;
  73. part_count = be32_to_cpu(part->map_count);
  74. dbg("expecting %d partition entries", part_count);
  75. if (id->partitions != NULL)
  76. free(id->partitions);
  77. id->partitions = xzalloc(part_count * sizeof(struct volume_id_partition));
  78. id->partition_count = part_count;
  79. for (i = 0; i < part_count; i++) {
  80. uint64_t poff;
  81. uint64_t plen;
  82. buf = volume_id_get_buffer(id, off + ((i+1) * bsize), 0x200);
  83. if (buf == NULL)
  84. return -1;
  85. part = (struct mac_partition *) buf;
  86. if (part->signature[0] != 'P' || part->signature[1] != 'M') /* not "PM" */
  87. return -1;
  88. poff = be32_to_cpu(part->start_block) * bsize;
  89. plen = be32_to_cpu(part->block_count) * bsize;
  90. dbg("found '%s' partition entry at 0x%llx, len 0x%llx",
  91. part->type, (unsigned long long) poff,
  92. (unsigned long long) plen);
  93. // id->partitions[i].pt_off = poff;
  94. // id->partitions[i].pt_len = plen;
  95. // if (memcmp(part->type, "Apple_Free", 10) == 0) {
  96. // volume_id_set_usage_part(&id->partitions[i], VOLUME_ID_UNUSED);
  97. // } else if (memcmp(part->type, "Apple_partition_map", 19) == 0) {
  98. // volume_id_set_usage_part(&id->partitions[i], VOLUME_ID_PARTITIONTABLE);
  99. // } else {
  100. // volume_id_set_usage_part(&id->partitions[i], VOLUME_ID_UNPROBED);
  101. // }
  102. }
  103. // volume_id_set_usage(id, VOLUME_ID_PARTITIONTABLE);
  104. // id->type = "mac_partition_map";
  105. return 0;
  106. }
  107. return -1;
  108. }