blob: 5c405322318b7da3dea491e9271a75c168709320 [file] [log] [blame]
Denis Vlasenkode7684a2008-02-18 21:08:49 +00001/*
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
Sven-Göran Bergh3b458012013-07-31 15:45:20 +020021//kbuild:### lib-$(CONFIG_FEATURE_VOLUMEID_MAC) += mac.o
22
Denis Vlasenkode7684a2008-02-18 21:08:49 +000023#include "volume_id_internal.h"
24
25struct mac_driver_desc {
26 uint8_t signature[2];
27 uint16_t block_size;
28 uint32_t block_count;
Denys Vlasenko8dc0e192009-09-16 00:58:11 +020029} PACKED;
Denis Vlasenkode7684a2008-02-18 21:08:49 +000030
31struct 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];
Denys Vlasenko8dc0e192009-09-16 00:58:11 +020039} PACKED;
Denis Vlasenkode7684a2008-02-18 21:08:49 +000040
Denys Vlasenko89300962009-11-01 23:07:18 +010041int FAST_FUNC volume_id_probe_mac_partition_map(struct volume_id *id, uint64_t off)
Denis Vlasenkode7684a2008-02-18 21:08:49 +000042{
43 const uint8_t *buf;
44 struct mac_driver_desc *driver;
45 struct mac_partition *part;
46
47 dbg("probing at offset 0x%llx", (unsigned long long) off);
48
49 buf = volume_id_get_buffer(id, off, 0x200);
50 if (buf == NULL)
51 return -1;
52
53 part = (struct mac_partition *) buf;
Denis Vlasenkod25c33f2008-03-17 09:25:05 +000054 if (part->signature[0] == 'P' && part->signature[1] == 'M' /* "PM" */
55 && (memcmp(part->type, "Apple_partition_map", 19) == 0)
56 ) {
Denis Vlasenkode7684a2008-02-18 21:08:49 +000057 /* linux creates an own subdevice for the map
58 * just return the type if the drive header is missing */
Denis Vlasenkod25c33f2008-03-17 09:25:05 +000059// volume_id_set_usage(id, VOLUME_ID_PARTITIONTABLE);
60// id->type = "mac_partition_map";
Denis Vlasenkode7684a2008-02-18 21:08:49 +000061 return 0;
62 }
63
64 driver = (struct mac_driver_desc *) buf;
Denis Vlasenkod25c33f2008-03-17 09:25:05 +000065 if (driver->signature[0] == 'E' && driver->signature[1] == 'R') { /* "ER" */
Denis Vlasenkode7684a2008-02-18 21:08:49 +000066 /* we are on a main device, like a CD
67 * just try to probe the first partition from the map */
68 unsigned bsize = be16_to_cpu(driver->block_size);
69 int part_count;
70 int i;
71
72 /* get first entry of partition table */
73 buf = volume_id_get_buffer(id, off + bsize, 0x200);
74 if (buf == NULL)
75 return -1;
76
77 part = (struct mac_partition *) buf;
Denis Vlasenkod25c33f2008-03-17 09:25:05 +000078 if (part->signature[0] != 'P' || part->signature[1] != 'M') /* not "PM" */
Denis Vlasenkode7684a2008-02-18 21:08:49 +000079 return -1;
80
81 part_count = be32_to_cpu(part->map_count);
82 dbg("expecting %d partition entries", part_count);
83
84 if (id->partitions != NULL)
85 free(id->partitions);
Denis Vlasenkod25c33f2008-03-17 09:25:05 +000086 id->partitions = xzalloc(part_count * sizeof(struct volume_id_partition));
Denis Vlasenkode7684a2008-02-18 21:08:49 +000087
88 id->partition_count = part_count;
89
90 for (i = 0; i < part_count; i++) {
91 uint64_t poff;
92 uint64_t plen;
93
94 buf = volume_id_get_buffer(id, off + ((i+1) * bsize), 0x200);
95 if (buf == NULL)
96 return -1;
97
98 part = (struct mac_partition *) buf;
Denis Vlasenkod25c33f2008-03-17 09:25:05 +000099 if (part->signature[0] != 'P' || part->signature[1] != 'M') /* not "PM" */
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000100 return -1;
101
102 poff = be32_to_cpu(part->start_block) * bsize;
103 plen = be32_to_cpu(part->block_count) * bsize;
104 dbg("found '%s' partition entry at 0x%llx, len 0x%llx",
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000105 part->type, (unsigned long long) poff,
106 (unsigned long long) plen);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000107
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000108// id->partitions[i].pt_off = poff;
109// id->partitions[i].pt_len = plen;
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000110
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000111// if (memcmp(part->type, "Apple_Free", 10) == 0) {
112// volume_id_set_usage_part(&id->partitions[i], VOLUME_ID_UNUSED);
113// } else if (memcmp(part->type, "Apple_partition_map", 19) == 0) {
114// volume_id_set_usage_part(&id->partitions[i], VOLUME_ID_PARTITIONTABLE);
115// } else {
116// volume_id_set_usage_part(&id->partitions[i], VOLUME_ID_UNPROBED);
117// }
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000118 }
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000119// volume_id_set_usage(id, VOLUME_ID_PARTITIONTABLE);
120// id->type = "mac_partition_map";
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000121 return 0;
122 }
123
124 return -1;
125}