blob: e18896cbabf8d9651e1b91fd853450bb79c05f5a [file] [log] [blame]
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05001/*
2 * mac partitions parsing code
3 *
4 * Copyright (C) 2009 Karel Zak <kzak@redhat.com>
5 *
6 * This file may be redistributed under the terms of the
7 * GNU Lesser General Public License.
8 *
9 */
10#include <stdio.h>
11#include <string.h>
12#include <stdlib.h>
13#include <stdint.h>
14
15#include "partitions.h"
16
17#define MAC_PARTITION_MAGIC 0x504d
18#define MAC_PARTITION_MAGIC_OLD 0x5453
19
20/*
21 * Mac partition entry
22 * http://developer.apple.com/legacy/mac/library/documentation/mac/Devices/Devices-126.html
23 */
24struct mac_partition {
25 uint16_t signature; /* expected to be MAC_PARTITION_MAGIC */
26 uint16_t reserved; /* reserved */
27 uint32_t map_count; /* # blocks in partition map */
28 uint32_t start_block; /* absolute starting block # of partition */
29 uint32_t block_count; /* number of blocks in partition */
30 char name[32]; /* partition name */
31 char type[32]; /* string type description */
32 uint32_t data_start; /* rel block # of first data block */
33 uint32_t data_count; /* number of data blocks */
34 uint32_t status; /* partition status bits */
35 uint32_t boot_start; /* first logical block of boot code */
36 uint32_t boot_size; /* size of boot code, in bytes */
37 uint32_t boot_load; /* boot code load address */
38 uint32_t boot_load2; /* reserved */
39 uint32_t boot_entry; /* boot code entry point */
40 uint32_t boot_entry2; /* reserved */
41 uint32_t boot_cksum; /* boot code checksum */
42 char processor[16]; /* identifies ISA of boot */
43
44 /* there is more stuff after this that we don't need */
45} __attribute__((packed));
46
47/*
48 * Driver descriptor structure, in block 0
49 * http://developer.apple.com/legacy/mac/library/documentation/mac/Devices/Devices-121.html
50 */
51struct mac_driver_desc {
52 uint16_t signature; /* expected to be MAC_DRIVER_MAGIC */
53 uint16_t block_size; /* block size of the device */
54 uint32_t block_count; /* number of blocks on the device */
55
56 /* there is more stuff after this that we don't need */
57} __attribute__((packed));
58
59static inline unsigned char *get_mac_block(
60 blkid_probe pr,
61 uint16_t block_size,
62 uint32_t num)
63{
64 return blkid_probe_get_buffer(pr,
65 (blkid_loff_t) num * block_size, block_size);
66}
67
68static inline int has_part_signature(struct mac_partition *p)
69{
70 return be16_to_cpu(p->signature) == MAC_PARTITION_MAGIC ||
71 be16_to_cpu(p->signature) == MAC_PARTITION_MAGIC_OLD;
72}
73
74static int probe_mac_pt(blkid_probe pr,
75 const struct blkid_idmag *mag __attribute__((__unused__)))
76{
77 struct mac_driver_desc *md;
78 struct mac_partition *p;
79 blkid_parttable tab = NULL;
80 blkid_partlist ls;
81 uint16_t block_size;
82 uint16_t ssf; /* sector size fragment */
83 uint32_t nblks, i;
84
85
86 /* The driver descriptor record is always located at physical block 0,
87 * the first block on the disk.
88 */
89 md = (struct mac_driver_desc *) blkid_probe_get_sector(pr, 0);
90 if (!md)
91 goto nothing;
92
93 block_size = be16_to_cpu(md->block_size);
94
95 /* The partition map always begins at physical block 1,
96 * the second block on the disk.
97 */
98 p = (struct mac_partition *) get_mac_block(pr, block_size, 1);
99 if (!p)
100 goto nothing;
101
102 /* check the first partition signature */
103 if (!has_part_signature(p))
104 goto nothing;
105
106 if (blkid_partitions_need_typeonly(pr))
107 /* caller does not ask for details about partitions */
108 return 0;
109
110 ls = blkid_probe_get_partlist(pr);
111 if (!ls)
112 goto err;
113
114 tab = blkid_partlist_new_parttable(ls, "mac", 0);
115 if (!tab)
116 goto err;
117
118 ssf = block_size / 512;
119 nblks = be32_to_cpu(p->map_count);
120
121 for (i = 1; i <= nblks; ++i) {
122 blkid_partition par;
123 uint32_t start;
124 uint32_t size;
125
126 p = (struct mac_partition *) get_mac_block(pr, block_size, i);
127 if (!p)
128 goto nothing;
129 if (!has_part_signature(p))
130 goto nothing;
131
132 if (be32_to_cpu(p->map_count) != nblks) {
133 DBG(DEBUG_LOWPROBE, printf(
134 "mac: inconsisten map_count in partition map, "
135 "entry[0]: %d, entry[%d]: %d\n",
136 nblks, i - 1,
137 be32_to_cpu(p->map_count)));
138 }
139
140 /*
141 * note that libparted ignores some mac partitions according to
142 * the partition name (e.g. "Apple_Free" or "Apple_Void"). We
143 * follows Linux kernel and all partitions are visible
144 */
145
146 start = be32_to_cpu(p->start_block) * ssf;
147 size = be32_to_cpu(p->block_count) * ssf;
148
149 par = blkid_partlist_add_partition(ls, tab, start, size);
150 if (!par)
151 goto err;
152
153 blkid_partition_set_name(par, (unsigned char *) p->name,
154 sizeof(p->name));
155
156 blkid_partition_set_type_string(par, (unsigned char *) p->type,
157 sizeof(p->type));
158 }
159
160 return 0;
161
162nothing:
163 return 1;
164err:
165 return -1;
166}
167
168/*
169 * Mac disk always begin with "Driver Descriptor Record"
170 * (struct mac_driver_desc) and magic 0x4552.
171 */
172const struct blkid_idinfo mac_pt_idinfo =
173{
174 .name = "mac",
175 .probefunc = probe_mac_pt,
176 .magics =
177 {
178 /* big-endian magic string */
179 { .magic = "\x45\x52", .len = 2 },
180 { NULL }
181 }
182};
183