2 * Copyright (c) 2000-2014 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
32 * This file implements endian swapping routines for the HFS/HFS Plus
36 #include "hfs_endian.h"
38 #include "hfscommon/headers/BTreesPrivate.h"
43 * Internal swapping routines
45 * These routines handle swapping the records of leaf and index nodes. The
46 * layout of the keys and records varies depending on the kind of B-tree
47 * (determined by fileID).
49 * The direction parameter must be kSwapBTNodeBigToHost or kSwapBTNodeHostToBig.
50 * The kSwapBTNodeHeaderRecordOnly "direction" is not valid for these routines.
52 int hfs_swap_HFSPlusBTInternalNode (BlockDescriptor
*src
, HFSCatalogNodeID fileID
, enum HFSBTSwapDirection direction
);
53 void hfs_swap_HFSPlusForkData (HFSPlusForkData
*src
);
56 int hfs_swap_HFSBTInternalNode (BlockDescriptor
*src
, HFSCatalogNodeID fileID
, enum HFSBTSwapDirection direction
);
60 * hfs_swap_HFSPlusForkData
63 hfs_swap_HFSPlusForkData (
69 src
->logicalSize
= SWAP_BE64 (src
->logicalSize
);
71 src
->clumpSize
= SWAP_BE32 (src
->clumpSize
);
72 src
->totalBlocks
= SWAP_BE32 (src
->totalBlocks
);
74 for (i
= 0; i
< kHFSPlusExtentDensity
; i
++) {
75 src
->extents
[i
].startBlock
= SWAP_BE32 (src
->extents
[i
].startBlock
);
76 src
->extents
[i
].blockCount
= SWAP_BE32 (src
->extents
[i
].blockCount
);
83 * NOTE: This operation is not naturally symmetric.
84 * We have to determine which way we're swapping things.
90 enum HFSBTSwapDirection direction
,
91 u_int8_t allow_empty_node
94 BTNodeDescriptor
*srcDesc
= src
->buffer
;
95 u_int16_t
*srcOffs
= NULL
;
96 BTreeControlBlockPtr btcb
= (BTreeControlBlockPtr
)VTOF(vp
)->fcbBTCBPtr
;
97 u_int16_t i
; /* index to match srcDesc->numRecords */
101 if (direction
== kSwapBTNodeBigToHost
) {
102 printf ("hfs: BE -> Native Swap\n");
103 } else if (direction
== kSwapBTNodeHostToBig
) {
104 printf ("hfs: Native -> BE Swap\n");
105 } else if (direction
== kSwapBTNodeHeaderRecordOnly
) {
106 printf ("hfs: Not swapping descriptors\n");
108 panic ("hfs_swap_BTNode: This is impossible");
113 * If we are doing a swap from on-disk to in-memory, then swap the node
114 * descriptor and record offsets before we need to use them.
116 if (direction
== kSwapBTNodeBigToHost
) {
117 srcDesc
->fLink
= SWAP_BE32 (srcDesc
->fLink
);
118 srcDesc
->bLink
= SWAP_BE32 (srcDesc
->bLink
);
121 * When first opening a BTree, we have to read the header node before the
122 * control block is initialized. In this case, totalNodes will be zero,
123 * so skip the bounds checking. Also, we should ignore the header node when
124 * checking for invalid forwards and backwards links, since the header node's
125 * links can point back to itself legitimately.
127 if (btcb
->totalNodes
!= 0) {
128 if (srcDesc
->fLink
>= btcb
->totalNodes
) {
129 #if DEVELOPMENT || DEBUG
130 panic("hfs_swap_BTNode: invalid forward link (0x%08x >= 0x%08x)\n", srcDesc
->fLink
, btcb
->totalNodes
);
132 printf("hfs_swap_BTNode: invalid forward link (0x%08x >= 0x%08x)\n", srcDesc
->fLink
, btcb
->totalNodes
);
134 error
= fsBTInvalidHeaderErr
;
137 if (srcDesc
->bLink
>= btcb
->totalNodes
) {
138 #if DEVELOPMENT || DEBUG
139 panic("hfs_swap_BTNode: invalid backward link (0x%08x >= 0x%08x)\n", srcDesc
->bLink
, btcb
->totalNodes
);
141 printf("hfs_swap_BTNode: invalid backward link (0x%08x >= 0x%08x)\n", srcDesc
->bLink
, btcb
->totalNodes
);
143 error
= fsBTInvalidHeaderErr
;
147 if ((src
->blockNum
!= 0) && (srcDesc
->fLink
== (u_int32_t
) src
->blockNum
)) {
148 #if DEVELOPMENT || DEBUG
149 panic("hfs_swap_BTNode: invalid forward link (0x%08x == 0x%08x)\n",
150 srcDesc
->fLink
, (u_int32_t
) src
->blockNum
);
152 printf("hfs_swap_BTNode: invalid forward link (0x%08x == 0x%08x)\n",
153 srcDesc
->fLink
, (u_int32_t
) src
->blockNum
);
155 error
= fsBTInvalidHeaderErr
;
158 if ((src
->blockNum
!= 0) && (srcDesc
->bLink
== (u_int32_t
) src
->blockNum
)) {
159 #if DEVELOPMENT || DEBUG
160 panic("hfs_swap_BTNode: invalid backward link (0x%08x == 0x%08x)\n",
161 srcDesc
->bLink
, (u_int32_t
) src
->blockNum
);
163 printf("hfs_swap_BTNode: invalid backward link (0x%08x == 0x%08x)\n",
164 srcDesc
->bLink
, (u_int32_t
) src
->blockNum
);
166 error
= fsBTInvalidHeaderErr
;
174 * Check srcDesc->kind. Don't swap it because it's only one byte.
176 if (srcDesc
->kind
< kBTLeafNode
|| srcDesc
->kind
> kBTMapNode
) {
177 printf("hfs_swap_BTNode: invalid node kind (%d)\n", srcDesc
->kind
);
178 error
= fsBTInvalidHeaderErr
;
183 * Check srcDesc->height. Don't swap it because it's only one byte.
185 if (srcDesc
->height
> kMaxTreeDepth
) {
186 printf("hfs_swap_BTNode: invalid node height (%d)\n", srcDesc
->height
);
187 error
= fsBTInvalidHeaderErr
;
191 /* Don't swap srcDesc->reserved */
193 srcDesc
->numRecords
= SWAP_BE16 (srcDesc
->numRecords
);
196 * Swap the node offsets (including the free space one!).
198 srcOffs
= (u_int16_t
*)((char *)src
->buffer
+ (src
->blockSize
- ((srcDesc
->numRecords
+ 1) * sizeof (u_int16_t
))));
201 * Sanity check that the record offsets are within the node itself.
203 if ((char *)srcOffs
> ((char *)src
->buffer
+ src
->blockSize
) ||
204 (char *)srcOffs
< ((char *)src
->buffer
+ sizeof(BTNodeDescriptor
))) {
205 printf("hfs_swap_BTNode: invalid record count (0x%04X)\n", srcDesc
->numRecords
);
206 error
= fsBTInvalidHeaderErr
;
211 * Swap and sanity check each of the record offsets.
213 for (i
= 0; i
<= srcDesc
->numRecords
; i
++) {
214 srcOffs
[i
] = SWAP_BE16 (srcOffs
[i
]);
217 * Sanity check: must be even, and within the node itself.
219 * We may be called to swap an unused node, which contains all zeroes.
220 * Unused nodes are expected only when allow_empty_node is true.
221 * If it is false and record offset is zero, return error.
223 if ((srcOffs
[i
] & 1) || (
224 (allow_empty_node
== false) && (srcOffs
[i
] == 0)) ||
225 (srcOffs
[i
] < sizeof(BTNodeDescriptor
) && srcOffs
[i
] != 0) ||
226 (srcOffs
[i
] >= src
->blockSize
)) {
227 printf("hfs_swap_BTNode: record #%d invalid offset (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
228 error
= fsBTInvalidHeaderErr
;
233 * Make sure the offsets are strictly increasing. Note that we're looping over
234 * them backwards, hence the order in the comparison.
236 if ((i
!= 0) && (srcOffs
[i
] >= srcOffs
[i
-1])) {
237 printf("hfs_swap_BTNode: offsets %d and %d out of order (0x%04X, 0x%04X)\n",
238 srcDesc
->numRecords
-i
-1, srcDesc
->numRecords
-i
, srcOffs
[i
], srcOffs
[i
-1]);
239 error
= fsBTInvalidHeaderErr
;
246 * Swap the records (ordered by frequency of access)
248 if ((srcDesc
->kind
== kBTIndexNode
) ||
249 (srcDesc
-> kind
== kBTLeafNode
)) {
251 if (VTOVCB(vp
)->vcbSigWord
== kHFSPlusSigWord
) {
252 error
= hfs_swap_HFSPlusBTInternalNode (src
, VTOC(vp
)->c_fileid
, direction
);
256 error
= hfs_swap_HFSBTInternalNode (src
, VTOC(vp
)->c_fileid
, direction
);
260 if (error
) goto fail
;
262 } else if (srcDesc
-> kind
== kBTMapNode
) {
263 /* Don't swap the bitmaps, they'll be done in the bitmap routines */
265 } else if (srcDesc
-> kind
== kBTHeaderNode
) {
266 /* The header's offset is hard-wired because we cannot trust the offset pointers. */
267 BTHeaderRec
*srcHead
= (BTHeaderRec
*)((char *)src
->buffer
+ sizeof(BTNodeDescriptor
));
269 srcHead
->treeDepth
= SWAP_BE16 (srcHead
->treeDepth
);
271 srcHead
->rootNode
= SWAP_BE32 (srcHead
->rootNode
);
272 srcHead
->leafRecords
= SWAP_BE32 (srcHead
->leafRecords
);
273 srcHead
->firstLeafNode
= SWAP_BE32 (srcHead
->firstLeafNode
);
274 srcHead
->lastLeafNode
= SWAP_BE32 (srcHead
->lastLeafNode
);
276 srcHead
->nodeSize
= SWAP_BE16 (srcHead
->nodeSize
);
277 srcHead
->maxKeyLength
= SWAP_BE16 (srcHead
->maxKeyLength
);
279 srcHead
->totalNodes
= SWAP_BE32 (srcHead
->totalNodes
);
280 srcHead
->freeNodes
= SWAP_BE32 (srcHead
->freeNodes
);
282 srcHead
->clumpSize
= SWAP_BE32 (srcHead
->clumpSize
);
283 srcHead
->attributes
= SWAP_BE32 (srcHead
->attributes
);
285 /* Don't swap srcHead->reserved1 */
286 /* Don't swap srcHead->btreeType; it's only one byte */
287 /* Don't swap srcHead->reserved2 */
288 /* Don't swap srcHead->reserved3 */
289 /* Don't swap bitmap */
293 * If we are doing a swap from in-memory to on-disk, then swap the node
294 * descriptor and record offsets after we're done using them.
296 if (direction
== kSwapBTNodeHostToBig
) {
298 * Sanity check and swap the forward and backward links.
299 * Ignore the header node since its forward and backwards links can legitimately
302 if (srcDesc
->fLink
>= btcb
->totalNodes
) {
303 panic("hfs_UNswap_BTNode: invalid forward link (0x%08X)\n", srcDesc
->fLink
);
304 error
= fsBTInvalidHeaderErr
;
307 if ((src
->blockNum
!= 0) && (srcDesc
->fLink
== (u_int32_t
) src
->blockNum
)) {
308 panic ("hfs_UNswap_BTNode: invalid forward link (0x%08x == 0x%08x)\n",
309 srcDesc
->fLink
, (u_int32_t
) src
->blockNum
);
310 error
= fsBTInvalidHeaderErr
;
314 if (srcDesc
->bLink
>= btcb
->totalNodes
) {
315 panic("hfs_UNswap_BTNode: invalid backward link (0x%08X)\n", srcDesc
->bLink
);
316 error
= fsBTInvalidHeaderErr
;
319 if ((src
->blockNum
!= 0) && (srcDesc
->bLink
== (u_int32_t
) src
->blockNum
)) {
320 panic ("hfs_UNswap_BTNode: invalid backward link (0x%08x == 0x%08x)\n",
321 srcDesc
->bLink
, (u_int32_t
) src
->blockNum
);
322 error
= fsBTInvalidHeaderErr
;
327 srcDesc
->fLink
= SWAP_BE32 (srcDesc
->fLink
);
328 srcDesc
->bLink
= SWAP_BE32 (srcDesc
->bLink
);
331 * Check srcDesc->kind. Don't swap it because it's only one byte.
333 if (srcDesc
->kind
< kBTLeafNode
|| srcDesc
->kind
> kBTMapNode
) {
334 panic("hfs_UNswap_BTNode: invalid node kind (%d)\n", srcDesc
->kind
);
335 error
= fsBTInvalidHeaderErr
;
340 * Check srcDesc->height. Don't swap it because it's only one byte.
342 if (srcDesc
->height
> kMaxTreeDepth
) {
343 panic("hfs_UNswap_BTNode: invalid node height (%d)\n", srcDesc
->height
);
344 error
= fsBTInvalidHeaderErr
;
348 /* Don't swap srcDesc->reserved */
351 * Swap the node offsets (including the free space one!).
353 srcOffs
= (u_int16_t
*)((char *)src
->buffer
+ (src
->blockSize
- ((srcDesc
->numRecords
+ 1) * sizeof (u_int16_t
))));
356 * Sanity check that the record offsets are within the node itself.
358 if ((char *)srcOffs
> ((char *)src
->buffer
+ src
->blockSize
) ||
359 (char *)srcOffs
< ((char *)src
->buffer
+ sizeof(BTNodeDescriptor
))) {
360 panic("hfs_UNswap_BTNode: invalid record count (0x%04X)\n", srcDesc
->numRecords
);
361 error
= fsBTInvalidHeaderErr
;
366 * Swap and sanity check each of the record offsets.
368 for (i
= 0; i
<= srcDesc
->numRecords
; i
++) {
370 * Sanity check: must be even, and within the node itself.
372 * We may be called to swap an unused node, which contains all zeroes.
373 * This can happen when the last record from a node gets deleted.
374 * This is why we allow the record offset to be zero.
375 * Unused nodes are expected only when allow_empty_node is true
376 * (the caller should set it to true for kSwapBTNodeBigToHost).
378 if ((srcOffs
[i
] & 1) ||
379 ((allow_empty_node
== false) && (srcOffs
[i
] == 0)) ||
380 (srcOffs
[i
] < sizeof(BTNodeDescriptor
) && srcOffs
[i
] != 0) ||
381 (srcOffs
[i
] >= src
->blockSize
)) {
382 panic("hfs_UNswap_BTNode: record #%d invalid offset (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
383 error
= fsBTInvalidHeaderErr
;
388 * Make sure the offsets are strictly increasing. Note that we're looping over
389 * them backwards, hence the order in the comparison.
391 if ((i
< srcDesc
->numRecords
) && (srcOffs
[i
+1] >= srcOffs
[i
])) {
392 panic("hfs_UNswap_BTNode: offsets %d and %d out of order (0x%04X, 0x%04X)\n",
393 srcDesc
->numRecords
-i
-2, srcDesc
->numRecords
-i
-1, srcOffs
[i
+1], srcOffs
[i
]);
394 error
= fsBTInvalidHeaderErr
;
398 srcOffs
[i
] = SWAP_BE16 (srcOffs
[i
]);
401 srcDesc
->numRecords
= SWAP_BE16 (srcDesc
->numRecords
);
407 * Log some useful information about where the corrupt node is.
409 printf("hfs: node=%lld fileID=%u volume=%s device=%s\n", src
->blockNum
, VTOC(vp
)->c_fileid
,
410 VTOVCB(vp
)->vcbVN
, vfs_statfs(vnode_mount(vp
))->f_mntfromname
);
411 hfs_mark_inconsistent(VTOVCB(vp
), HFS_INCONSISTENCY_DETECTED
);
418 hfs_swap_HFSPlusBTInternalNode (
419 BlockDescriptor
*src
,
420 HFSCatalogNodeID fileID
,
421 enum HFSBTSwapDirection direction
424 BTNodeDescriptor
*srcDesc
= src
->buffer
;
425 u_int16_t
*srcOffs
= (u_int16_t
*)((char *)src
->buffer
+ (src
->blockSize
- (srcDesc
->numRecords
* sizeof (u_int16_t
))));
426 char *nextRecord
; /* Points to start of record following current one */
429 * i is an int32 because it needs to be negative to index the offset to free space.
430 * srcDesc->numRecords is a u_int16_t and is unlikely to become 32-bit so this should be ok.
436 if (fileID
== kHFSExtentsFileID
) {
437 HFSPlusExtentKey
*srcKey
;
438 HFSPlusExtentDescriptor
*srcRec
;
439 size_t recordSize
; /* Size of the data part of the record, or node number for index nodes */
441 if (srcDesc
->kind
== kBTIndexNode
)
442 recordSize
= sizeof(u_int32_t
);
444 recordSize
= sizeof(HFSPlusExtentDescriptor
);
446 for (i
= 0; i
< srcDesc
->numRecords
; i
++) {
447 /* Point to the start of the record we're currently checking. */
448 srcKey
= (HFSPlusExtentKey
*)((char *)src
->buffer
+ srcOffs
[i
]);
451 * Point to start of next (larger offset) record. We'll use this
452 * to be sure the current record doesn't overflow into the next
455 nextRecord
= (char *)src
->buffer
+ srcOffs
[i
-1];
458 * Make sure the key and data are within the buffer. Since both key
459 * and data are fixed size, this is relatively easy. Note that this
460 * relies on the keyLength being a constant; we verify the keyLength
463 if ((char *)srcKey
+ sizeof(HFSPlusExtentKey
) + recordSize
> nextRecord
) {
464 if (direction
== kSwapBTNodeHostToBig
) {
465 panic("hfs_swap_HFSPlusBTInternalNode: extents key #%d offset too big (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
467 printf("hfs_swap_HFSPlusBTInternalNode: extents key #%d offset too big (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
469 return fsBTInvalidNodeErr
;
472 if (direction
== kSwapBTNodeBigToHost
)
473 srcKey
->keyLength
= SWAP_BE16 (srcKey
->keyLength
);
474 if (srcKey
->keyLength
!= sizeof(*srcKey
) - sizeof(srcKey
->keyLength
)) {
475 if (direction
== kSwapBTNodeHostToBig
) {
476 panic("hfs_swap_HFSPlusBTInternalNode: extents key #%d invalid length (%d)\n", srcDesc
->numRecords
-i
-1, srcKey
->keyLength
);
478 printf("hfs_swap_HFSPlusBTInternalNode: extents key #%d invalid length (%d)\n", srcDesc
->numRecords
-i
-1, srcKey
->keyLength
);
480 return fsBTInvalidNodeErr
;
482 srcRec
= (HFSPlusExtentDescriptor
*)((char *)srcKey
+ srcKey
->keyLength
+ sizeof(srcKey
->keyLength
));
483 if (direction
== kSwapBTNodeHostToBig
)
484 srcKey
->keyLength
= SWAP_BE16 (srcKey
->keyLength
);
486 /* Don't swap srcKey->forkType; it's only one byte */
487 /* Don't swap srcKey->pad */
489 srcKey
->fileID
= SWAP_BE32 (srcKey
->fileID
);
490 srcKey
->startBlock
= SWAP_BE32 (srcKey
->startBlock
);
492 if (srcDesc
->kind
== kBTIndexNode
) {
493 /* For index nodes, the record data is just a child node number. */
494 *((u_int32_t
*)srcRec
) = SWAP_BE32 (*((u_int32_t
*)srcRec
));
496 /* Swap the extent data */
497 for (j
= 0; j
< kHFSPlusExtentDensity
; j
++) {
498 srcRec
[j
].startBlock
= SWAP_BE32 (srcRec
[j
].startBlock
);
499 srcRec
[j
].blockCount
= SWAP_BE32 (srcRec
[j
].blockCount
);
504 } else if (fileID
== kHFSCatalogFileID
) {
505 HFSPlusCatalogKey
*srcKey
;
509 for (i
= 0; i
< srcDesc
->numRecords
; i
++) {
510 /* Point to the start of the record we're currently checking. */
511 srcKey
= (HFSPlusCatalogKey
*)((char *)src
->buffer
+ srcOffs
[i
]);
514 * Point to start of next (larger offset) record. We'll use this
515 * to be sure the current record doesn't overflow into the next
518 nextRecord
= (char *)src
->buffer
+ (uintptr_t)(srcOffs
[i
-1]);
521 * Make sure we can safely dereference the keyLength and parentID fields.
523 if ((char *)srcKey
+ offsetof(HFSPlusCatalogKey
, nodeName
.unicode
[0]) > nextRecord
) {
524 if (direction
== kSwapBTNodeHostToBig
) {
525 panic("hfs_swap_HFSPlusBTInternalNode: catalog key #%d offset too big (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
527 printf("hfs_swap_HFSPlusBTInternalNode: catalog key #%d offset too big (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
529 return fsBTInvalidNodeErr
;
533 * Swap and sanity check the key length
535 if (direction
== kSwapBTNodeBigToHost
)
536 srcKey
->keyLength
= SWAP_BE16 (srcKey
->keyLength
);
537 keyLength
= srcKey
->keyLength
; /* Put it in a local (native order) because we use it several times */
538 if (direction
== kSwapBTNodeHostToBig
)
539 srcKey
->keyLength
= SWAP_BE16 (keyLength
);
541 /* Sanity check the key length */
542 if (keyLength
< kHFSPlusCatalogKeyMinimumLength
|| keyLength
> kHFSPlusCatalogKeyMaximumLength
) {
543 if (direction
== kSwapBTNodeHostToBig
) {
544 panic("hfs_swap_HFSPlusBTInternalNode: catalog key #%d invalid length (%d)\n", srcDesc
->numRecords
-i
-1, keyLength
);
546 printf("hfs_swap_HFSPlusBTInternalNode: catalog key #%d invalid length (%d)\n", srcDesc
->numRecords
-i
-1, keyLength
);
548 return fsBTInvalidNodeErr
;
552 * Make sure that we can safely dereference the record's type field or
553 * an index node's child node number.
555 srcPtr
= (int16_t *)((char *)srcKey
+ keyLength
+ sizeof(srcKey
->keyLength
));
556 if ((char *)srcPtr
+ sizeof(u_int32_t
) > nextRecord
) {
557 if (direction
== kSwapBTNodeHostToBig
) {
558 panic("hfs_swap_HFSPlusBTInternalNode: catalog key #%d too big\n", srcDesc
->numRecords
-i
-1);
560 printf("hfs_swap_HFSPlusBTInternalNode: catalog key #%d too big\n", srcDesc
->numRecords
-i
-1);
562 return fsBTInvalidNodeErr
;
565 srcKey
->parentID
= SWAP_BE32 (srcKey
->parentID
);
568 * Swap and sanity check the key's node name
570 if (direction
== kSwapBTNodeBigToHost
)
571 srcKey
->nodeName
.length
= SWAP_BE16 (srcKey
->nodeName
.length
);
572 /* Make sure name length is consistent with key length */
573 if (keyLength
< sizeof(srcKey
->parentID
) + sizeof(srcKey
->nodeName
.length
) +
574 srcKey
->nodeName
.length
*sizeof(srcKey
->nodeName
.unicode
[0])) {
575 if (direction
== kSwapBTNodeHostToBig
) {
576 panic("hfs_swap_HFSPlusBTInternalNode: catalog record #%d keyLength=%d expected=%lu\n",
577 srcDesc
->numRecords
-i
, keyLength
, sizeof(srcKey
->parentID
) + sizeof(srcKey
->nodeName
.length
) +
578 srcKey
->nodeName
.length
*sizeof(srcKey
->nodeName
.unicode
[0]));
580 printf("hfs_swap_HFSPlusBTInternalNode: catalog record #%d keyLength=%d expected=%lu\n",
581 srcDesc
->numRecords
-i
, keyLength
, sizeof(srcKey
->parentID
) + sizeof(srcKey
->nodeName
.length
) +
582 srcKey
->nodeName
.length
*sizeof(srcKey
->nodeName
.unicode
[0]));
584 return fsBTInvalidNodeErr
;
586 for (j
= 0; j
< srcKey
->nodeName
.length
; j
++) {
587 srcKey
->nodeName
.unicode
[j
] = SWAP_BE16 (srcKey
->nodeName
.unicode
[j
]);
589 if (direction
== kSwapBTNodeHostToBig
)
590 srcKey
->nodeName
.length
= SWAP_BE16 (srcKey
->nodeName
.length
);
593 * For index nodes, the record data is just the child's node number.
594 * Skip over swapping the various types of catalog record.
596 if (srcDesc
->kind
== kBTIndexNode
) {
597 *((u_int32_t
*)srcPtr
) = SWAP_BE32 (*((u_int32_t
*)srcPtr
));
601 /* Make sure the recordType is in native order before using it. */
602 if (direction
== kSwapBTNodeBigToHost
)
603 srcPtr
[0] = SWAP_BE16 (srcPtr
[0]);
605 if (srcPtr
[0] == kHFSPlusFolderRecord
) {
606 HFSPlusCatalogFolder
*srcRec
= (HFSPlusCatalogFolder
*)srcPtr
;
607 if ((char *)srcRec
+ sizeof(*srcRec
) > nextRecord
) {
608 if (direction
== kSwapBTNodeHostToBig
) {
609 panic("hfs_swap_HFSPlusBTInternalNode: catalog folder record #%d too big\n", srcDesc
->numRecords
-i
-1);
611 printf("hfs_swap_HFSPlusBTInternalNode: catalog folder record #%d too big\n", srcDesc
->numRecords
-i
-1);
613 return fsBTInvalidNodeErr
;
616 srcRec
->flags
= SWAP_BE16 (srcRec
->flags
);
617 srcRec
->valence
= SWAP_BE32 (srcRec
->valence
);
618 srcRec
->folderID
= SWAP_BE32 (srcRec
->folderID
);
619 srcRec
->createDate
= SWAP_BE32 (srcRec
->createDate
);
620 srcRec
->contentModDate
= SWAP_BE32 (srcRec
->contentModDate
);
621 srcRec
->attributeModDate
= SWAP_BE32 (srcRec
->attributeModDate
);
622 srcRec
->accessDate
= SWAP_BE32 (srcRec
->accessDate
);
623 srcRec
->backupDate
= SWAP_BE32 (srcRec
->backupDate
);
625 srcRec
->bsdInfo
.ownerID
= SWAP_BE32 (srcRec
->bsdInfo
.ownerID
);
626 srcRec
->bsdInfo
.groupID
= SWAP_BE32 (srcRec
->bsdInfo
.groupID
);
628 /* Don't swap srcRec->bsdInfo.adminFlags; it's only one byte */
629 /* Don't swap srcRec->bsdInfo.ownerFlags; it's only one byte */
631 srcRec
->bsdInfo
.fileMode
= SWAP_BE16 (srcRec
->bsdInfo
.fileMode
);
632 srcRec
->bsdInfo
.special
.iNodeNum
= SWAP_BE32 (srcRec
->bsdInfo
.special
.iNodeNum
);
634 srcRec
->textEncoding
= SWAP_BE32 (srcRec
->textEncoding
);
636 /* Don't swap srcRec->userInfo */
637 /* Don't swap srcRec->finderInfo */
638 srcRec
->folderCount
= SWAP_BE32 (srcRec
->folderCount
);
640 } else if (srcPtr
[0] == kHFSPlusFileRecord
) {
641 HFSPlusCatalogFile
*srcRec
= (HFSPlusCatalogFile
*)srcPtr
;
642 if ((char *)srcRec
+ sizeof(*srcRec
) > nextRecord
) {
643 if (direction
== kSwapBTNodeHostToBig
) {
644 panic("hfs_swap_HFSPlusBTInternalNode: catalog file record #%d too big\n", srcDesc
->numRecords
-i
-1);
646 printf("hfs_swap_HFSPlusBTInternalNode: catalog file record #%d too big\n", srcDesc
->numRecords
-i
-1);
648 return fsBTInvalidNodeErr
;
651 srcRec
->flags
= SWAP_BE16 (srcRec
->flags
);
653 srcRec
->fileID
= SWAP_BE32 (srcRec
->fileID
);
655 srcRec
->createDate
= SWAP_BE32 (srcRec
->createDate
);
656 srcRec
->contentModDate
= SWAP_BE32 (srcRec
->contentModDate
);
657 srcRec
->attributeModDate
= SWAP_BE32 (srcRec
->attributeModDate
);
658 srcRec
->accessDate
= SWAP_BE32 (srcRec
->accessDate
);
659 srcRec
->backupDate
= SWAP_BE32 (srcRec
->backupDate
);
661 srcRec
->bsdInfo
.ownerID
= SWAP_BE32 (srcRec
->bsdInfo
.ownerID
);
662 srcRec
->bsdInfo
.groupID
= SWAP_BE32 (srcRec
->bsdInfo
.groupID
);
664 /* Don't swap srcRec->bsdInfo.adminFlags; it's only one byte */
665 /* Don't swap srcRec->bsdInfo.ownerFlags; it's only one byte */
667 srcRec
->bsdInfo
.fileMode
= SWAP_BE16 (srcRec
->bsdInfo
.fileMode
);
668 srcRec
->bsdInfo
.special
.iNodeNum
= SWAP_BE32 (srcRec
->bsdInfo
.special
.iNodeNum
);
670 srcRec
->textEncoding
= SWAP_BE32 (srcRec
->textEncoding
);
672 /* If kHFSHasLinkChainBit is set, reserved1 is hl_FirstLinkID.
673 * In all other context, it is expected to be zero.
675 srcRec
->reserved1
= SWAP_BE32 (srcRec
->reserved1
);
677 /* Don't swap srcRec->userInfo */
678 /* Don't swap srcRec->finderInfo */
679 /* Don't swap srcRec->reserved2 */
681 hfs_swap_HFSPlusForkData (&srcRec
->dataFork
);
682 hfs_swap_HFSPlusForkData (&srcRec
->resourceFork
);
684 } else if ((srcPtr
[0] == kHFSPlusFolderThreadRecord
) ||
685 (srcPtr
[0] == kHFSPlusFileThreadRecord
)) {
688 * Make sure there is room for parentID and name length.
690 HFSPlusCatalogThread
*srcRec
= (HFSPlusCatalogThread
*)srcPtr
;
691 if ((char *) &srcRec
->nodeName
.unicode
[0] > nextRecord
) {
692 if (direction
== kSwapBTNodeHostToBig
) {
693 panic("hfs_swap_HFSPlusBTInternalNode: catalog thread record #%d too big\n", srcDesc
->numRecords
-i
-1);
695 printf("hfs_swap_HFSPlusBTInternalNode: catalog thread record #%d too big\n", srcDesc
->numRecords
-i
-1);
697 return fsBTInvalidNodeErr
;
700 /* Don't swap srcRec->reserved */
702 srcRec
->parentID
= SWAP_BE32 (srcRec
->parentID
);
704 if (direction
== kSwapBTNodeBigToHost
)
705 srcRec
->nodeName
.length
= SWAP_BE16 (srcRec
->nodeName
.length
);
708 * Make sure there is room for the name in the buffer.
709 * Then swap the characters of the name itself.
711 if ((char *) &srcRec
->nodeName
.unicode
[srcRec
->nodeName
.length
] > nextRecord
) {
712 if (direction
== kSwapBTNodeHostToBig
) {
713 panic("hfs_swap_HFSPlusBTInternalNode: catalog thread record #%d name too big\n", srcDesc
->numRecords
-i
-1);
715 printf("hfs_swap_HFSPlusBTInternalNode: catalog thread record #%d name too big\n", srcDesc
->numRecords
-i
-1);
717 return fsBTInvalidNodeErr
;
719 for (j
= 0; j
< srcRec
->nodeName
.length
; j
++) {
720 srcRec
->nodeName
.unicode
[j
] = SWAP_BE16 (srcRec
->nodeName
.unicode
[j
]);
723 if (direction
== kSwapBTNodeHostToBig
)
724 srcRec
->nodeName
.length
= SWAP_BE16 (srcRec
->nodeName
.length
);
727 if (direction
== kSwapBTNodeHostToBig
) {
728 panic("hfs_swap_HFSPlusBTInternalNode: unrecognized catalog record type (0x%04X; record #%d)\n", srcPtr
[0], srcDesc
->numRecords
-i
-1);
730 printf("hfs_swap_HFSPlusBTInternalNode: unrecognized catalog record type (0x%04X; record #%d)\n", srcPtr
[0], srcDesc
->numRecords
-i
-1);
732 return fsBTInvalidNodeErr
;
735 /* We can swap the record type now that we're done using it. */
736 if (direction
== kSwapBTNodeHostToBig
)
737 srcPtr
[0] = SWAP_BE16 (srcPtr
[0]);
740 } else if (fileID
== kHFSAttributesFileID
) {
741 HFSPlusAttrKey
*srcKey
;
742 HFSPlusAttrRecord
*srcRec
;
744 u_int32_t attrSize
= 0;
746 for (i
= 0; i
< srcDesc
->numRecords
; i
++) {
747 /* Point to the start of the record we're currently checking. */
748 srcKey
= (HFSPlusAttrKey
*)((char *)src
->buffer
+ srcOffs
[i
]);
751 * Point to start of next (larger offset) record. We'll use this
752 * to be sure the current record doesn't overflow into the next
755 nextRecord
= (char *)src
->buffer
+ srcOffs
[i
-1];
757 /* Make sure there is room in the buffer for a minimal key */
758 if ((char *) &srcKey
->attrName
[1] > nextRecord
) {
759 if (direction
== kSwapBTNodeHostToBig
) {
760 panic("hfs_swap_HFSPlusBTInternalNode: attr key #%d offset too big (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
762 printf("hfs_swap_HFSPlusBTInternalNode: attr key #%d offset too big (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
764 return fsBTInvalidNodeErr
;
767 /* Swap the key length field */
768 if (direction
== kSwapBTNodeBigToHost
)
769 srcKey
->keyLength
= SWAP_BE16(srcKey
->keyLength
);
770 keyLength
= srcKey
->keyLength
; /* Keep a copy in native order */
771 if (direction
== kSwapBTNodeHostToBig
)
772 srcKey
->keyLength
= SWAP_BE16(srcKey
->keyLength
);
775 * Make sure that we can safely dereference the record's type field or
776 * an index node's child node number.
778 srcRec
= (HFSPlusAttrRecord
*)((char *)srcKey
+ keyLength
+ sizeof(srcKey
->keyLength
));
779 if ((char *)srcRec
+ sizeof(u_int32_t
) > nextRecord
) {
780 if (direction
== kSwapBTNodeHostToBig
) {
781 panic("hfs_swap_HFSPlusBTInternalNode: attr key #%d too big (%d)\n", srcDesc
->numRecords
-i
-1, keyLength
);
783 printf("hfs_swap_HFSPlusBTInternalNode: attr key #%d too big (%d)\n", srcDesc
->numRecords
-i
-1, keyLength
);
785 return fsBTInvalidNodeErr
;
788 srcKey
->fileID
= SWAP_BE32(srcKey
->fileID
);
789 srcKey
->startBlock
= SWAP_BE32(srcKey
->startBlock
);
792 * Swap and check the attribute name
794 if (direction
== kSwapBTNodeBigToHost
)
795 srcKey
->attrNameLen
= SWAP_BE16(srcKey
->attrNameLen
);
796 /* Sanity check the attribute name length */
797 if (srcKey
->attrNameLen
> kHFSMaxAttrNameLen
|| keyLength
< (kHFSPlusAttrKeyMinimumLength
+ sizeof(u_int16_t
)*srcKey
->attrNameLen
)) {
798 if (direction
== kSwapBTNodeHostToBig
) {
799 panic("hfs_swap_HFSPlusBTInternalNode: attr key #%d keyLength=%d attrNameLen=%d\n", srcDesc
->numRecords
-i
-1, keyLength
, srcKey
->attrNameLen
);
801 printf("hfs_swap_HFSPlusBTInternalNode: attr key #%d keyLength=%d attrNameLen=%d\n", srcDesc
->numRecords
-i
-1, keyLength
, srcKey
->attrNameLen
);
803 return fsBTInvalidNodeErr
;
805 for (j
= 0; j
< srcKey
->attrNameLen
; j
++)
806 srcKey
->attrName
[j
] = SWAP_BE16(srcKey
->attrName
[j
]);
807 if (direction
== kSwapBTNodeHostToBig
)
808 srcKey
->attrNameLen
= SWAP_BE16(srcKey
->attrNameLen
);
811 * For index nodes, the record data is just the child's node number.
812 * Skip over swapping the various types of attribute record.
814 if (srcDesc
->kind
== kBTIndexNode
) {
815 *((u_int32_t
*)srcRec
) = SWAP_BE32 (*((u_int32_t
*)srcRec
));
819 /* Swap the record data */
820 if (direction
== kSwapBTNodeBigToHost
)
821 srcRec
->recordType
= SWAP_BE32(srcRec
->recordType
);
822 switch (srcRec
->recordType
) {
823 case kHFSPlusAttrInlineData
:
824 /* Is there room for the inline data header? */
825 if ((char *) &srcRec
->attrData
.attrData
[0] > nextRecord
) {
826 if (direction
== kSwapBTNodeHostToBig
) {
827 panic("hfs_swap_HFSPlusBTInternalNode: attr inline #%d too big\n", srcDesc
->numRecords
-i
-1);
829 printf("hfs_swap_HFSPlusBTInternalNode: attr inline #%d too big\n", srcDesc
->numRecords
-i
-1);
831 return fsBTInvalidNodeErr
;
834 /* We're not swapping the reserved fields */
836 /* Swap the attribute size */
837 if (direction
== kSwapBTNodeHostToBig
)
838 attrSize
= srcRec
->attrData
.attrSize
;
839 srcRec
->attrData
.attrSize
= SWAP_BE32(srcRec
->attrData
.attrSize
);
840 if (direction
== kSwapBTNodeBigToHost
)
841 attrSize
= srcRec
->attrData
.attrSize
;
843 /* Is there room for the inline attribute data? */
844 if ((char *) &srcRec
->attrData
.attrData
[attrSize
] > nextRecord
) {
845 if (direction
== kSwapBTNodeHostToBig
) {
846 panic("hfs_swap_HFSPlusBTInternalNode: attr inline #%d too big (attrSize=%u)\n", srcDesc
->numRecords
-i
-1, attrSize
);
848 printf("hfs_swap_HFSPlusBTInternalNode: attr inline #%d too big (attrSize=%u)\n", srcDesc
->numRecords
-i
-1, attrSize
);
850 return fsBTInvalidNodeErr
;
853 /* Not swapping the attribute data itself */
856 case kHFSPlusAttrForkData
:
857 /* Is there room for the fork data record? */
858 if ((char *)srcRec
+ sizeof(HFSPlusAttrForkData
) > nextRecord
) {
859 if (direction
== kSwapBTNodeHostToBig
) {
860 panic("hfs_swap_HFSPlusBTInternalNode: attr fork data #%d too big\n", srcDesc
->numRecords
-i
-1);
862 printf("hfs_swap_HFSPlusBTInternalNode: attr fork data #%d too big\n", srcDesc
->numRecords
-i
-1);
864 return fsBTInvalidNodeErr
;
867 /* We're not swapping the reserved field */
869 hfs_swap_HFSPlusForkData(&srcRec
->forkData
.theFork
);
872 case kHFSPlusAttrExtents
:
873 /* Is there room for an extent record? */
874 if ((char *)srcRec
+ sizeof(HFSPlusAttrExtents
) > nextRecord
) {
875 if (direction
== kSwapBTNodeHostToBig
) {
876 panic("hfs_swap_HFSPlusBTInternalNode: attr extents #%d too big\n", srcDesc
->numRecords
-i
-1);
878 printf("hfs_swap_HFSPlusBTInternalNode: attr extents #%d too big\n", srcDesc
->numRecords
-i
-1);
880 return fsBTInvalidNodeErr
;
883 /* We're not swapping the reserved field */
885 for (j
= 0; j
< kHFSPlusExtentDensity
; j
++) {
886 srcRec
->overflowExtents
.extents
[j
].startBlock
=
887 SWAP_BE32(srcRec
->overflowExtents
.extents
[j
].startBlock
);
888 srcRec
->overflowExtents
.extents
[j
].blockCount
=
889 SWAP_BE32(srcRec
->overflowExtents
.extents
[j
].blockCount
);
893 if (direction
== kSwapBTNodeHostToBig
)
894 srcRec
->recordType
= SWAP_BE32(srcRec
->recordType
);
896 } else if (fileID
> kHFSFirstUserCatalogNodeID
) {
897 /* The only B-tree with a non-system CNID that we use is the hotfile B-tree */
901 for (i
= 0; i
< srcDesc
->numRecords
; i
++) {
902 /* Point to the start of the record we're currently checking. */
903 srcKey
= (HotFileKey
*)((char *)src
->buffer
+ srcOffs
[i
]);
906 * Point to start of next (larger offset) record. We'll use this
907 * to be sure the current record doesn't overflow into the next
910 nextRecord
= (char *)src
->buffer
+ srcOffs
[i
-1];
912 /* Make sure there is room for the key (HotFileKey) and data (u_int32_t) */
913 if ((char *)srcKey
+ sizeof(HotFileKey
) + sizeof(u_int32_t
) > nextRecord
) {
914 if (direction
== kSwapBTNodeHostToBig
) {
915 panic("hfs_swap_HFSPlusBTInternalNode: hotfile #%d offset too big (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
917 printf("hfs_swap_HFSPlusBTInternalNode: hotfile #%d offset too big (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
919 return fsBTInvalidNodeErr
;
922 /* Swap and sanity check the key length field */
923 if (direction
== kSwapBTNodeBigToHost
)
924 srcKey
->keyLength
= SWAP_BE16 (srcKey
->keyLength
);
925 if (srcKey
->keyLength
!= sizeof(*srcKey
) - sizeof(srcKey
->keyLength
)) {
926 if (direction
== kSwapBTNodeHostToBig
) {
927 panic("hfs_swap_HFSPlusBTInternalNode: hotfile #%d incorrect keyLength %d\n", srcDesc
->numRecords
-i
-1, srcKey
->keyLength
);
929 printf("hfs_swap_HFSPlusBTInternalNode: hotfile #%d incorrect keyLength %d\n", srcDesc
->numRecords
-i
-1, srcKey
->keyLength
);
931 return fsBTInvalidNodeErr
;
933 srcRec
= (u_int32_t
*)((char *)srcKey
+ srcKey
->keyLength
+ sizeof(srcKey
->keyLength
));
934 if (direction
== kSwapBTNodeHostToBig
)
935 srcKey
->keyLength
= SWAP_BE16 (srcKey
->keyLength
);
937 /* Don't swap srcKey->forkType */
938 /* Don't swap srcKey->pad */
940 srcKey
->temperature
= SWAP_BE32 (srcKey
->temperature
);
941 srcKey
->fileID
= SWAP_BE32 (srcKey
->fileID
);
943 *((u_int32_t
*)srcRec
) = SWAP_BE32 (*((u_int32_t
*)srcRec
));
946 panic ("hfs_swap_HFSPlusBTInternalNode: fileID %u is not a system B-tree\n", fileID
);
955 hfs_swap_HFSBTInternalNode (
956 BlockDescriptor
*src
,
957 HFSCatalogNodeID fileID
,
958 enum HFSBTSwapDirection direction
961 BTNodeDescriptor
*srcDesc
= src
->buffer
;
962 u_int16_t
*srcOffs
= (u_int16_t
*)((char *)src
->buffer
+ (src
->blockSize
- (srcDesc
->numRecords
* sizeof (u_int16_t
))));
963 char *nextRecord
; /* Points to start of record following current one */
966 * i is an int32 because it needs to be negative to index the offset to free space.
967 * srcDesc->numRecords is a u_int16_t and is unlikely to become 32-bit so this should be ok.
972 if (fileID
== kHFSExtentsFileID
) {
973 HFSExtentKey
*srcKey
;
974 HFSExtentDescriptor
*srcRec
;
975 size_t recordSize
; /* Size of the data part of the record, or node number for index nodes */
977 if (srcDesc
->kind
== kBTIndexNode
)
978 recordSize
= sizeof(u_int32_t
);
980 recordSize
= sizeof(HFSExtentDescriptor
);
982 for (i
= 0; i
< srcDesc
->numRecords
; i
++) {
983 /* Point to the start of the record we're currently checking. */
984 srcKey
= (HFSExtentKey
*)((char *)src
->buffer
+ srcOffs
[i
]);
987 * Point to start of next (larger offset) record. We'll use this
988 * to be sure the current record doesn't overflow into the next
991 nextRecord
= (char *)src
->buffer
+ srcOffs
[i
-1];
994 * Make sure the key and data are within the buffer. Since both key
995 * and data are fixed size, this is relatively easy. Note that this
996 * relies on the keyLength being a constant; we verify the keyLength
999 if ((char *)srcKey
+ sizeof(HFSExtentKey
) + recordSize
> nextRecord
) {
1000 if (direction
== kSwapBTNodeHostToBig
) {
1001 panic("hfs_swap_HFSBTInternalNode: extents key #%d offset too big (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
1003 printf("hfs_swap_HFSBTInternalNode: extents key #%d offset too big (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
1005 return fsBTInvalidNodeErr
;
1008 /* Don't swap srcKey->keyLength (it's only one byte), but do sanity check it */
1009 if (srcKey
->keyLength
!= sizeof(*srcKey
) - sizeof(srcKey
->keyLength
)) {
1010 if (direction
== kSwapBTNodeHostToBig
) {
1011 panic("hfs_swap_HFSBTInternalNode: extents key #%d invalid length (%d)\n", srcDesc
->numRecords
-i
-1, srcKey
->keyLength
);
1013 printf("hfs_swap_HFSBTInternalNode: extents key #%d invalid length (%d)\n", srcDesc
->numRecords
-i
-1, srcKey
->keyLength
);
1015 return fsBTInvalidNodeErr
;
1018 /* Don't swap srcKey->forkType; it's only one byte */
1020 srcKey
->fileID
= SWAP_BE32 (srcKey
->fileID
);
1021 srcKey
->startBlock
= SWAP_BE16 (srcKey
->startBlock
);
1023 /* Point to record data (round up to even byte boundary) */
1024 srcRec
= (HFSExtentDescriptor
*)((char *)srcKey
+ ((srcKey
->keyLength
+ 2) & ~1));
1026 if (srcDesc
->kind
== kBTIndexNode
) {
1027 /* For index nodes, the record data is just a child node number. */
1028 *((u_int32_t
*)srcRec
) = SWAP_BE32 (*((u_int32_t
*)srcRec
));
1030 /* Swap the extent data */
1031 for (j
= 0; j
< kHFSExtentDensity
; j
++) {
1032 srcRec
[j
].startBlock
= SWAP_BE16 (srcRec
[j
].startBlock
);
1033 srcRec
[j
].blockCount
= SWAP_BE16 (srcRec
[j
].blockCount
);
1038 } else if (fileID
== kHFSCatalogFileID
) {
1039 HFSCatalogKey
*srcKey
;
1041 unsigned expectedKeyLength
;
1043 for (i
= 0; i
< srcDesc
->numRecords
; i
++) {
1044 /* Point to the start of the record we're currently checking. */
1045 srcKey
= (HFSCatalogKey
*)((char *)src
->buffer
+ srcOffs
[i
]);
1048 * Point to start of next (larger offset) record. We'll use this
1049 * to be sure the current record doesn't overflow into the next
1052 nextRecord
= (char *)src
->buffer
+ srcOffs
[i
-1];
1055 * Make sure we can safely dereference the keyLength and parentID fields.
1056 * The value 8 below is 1 bytes for keyLength + 1 byte reserved + 4 bytes
1057 * for parentID + 1 byte for nodeName's length + 1 byte to round up the
1058 * record start to an even offset, which forms a minimal key.
1060 if ((char *)srcKey
+ 8 > nextRecord
) {
1061 if (direction
== kSwapBTNodeHostToBig
) {
1062 panic("hfs_swap_HFSBTInternalNode: catalog key #%d offset too big (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
1064 printf("hfs_swap_HFSBTInternalNode: catalog key #%d offset too big (0x%04X)\n", srcDesc
->numRecords
-i
-1, srcOffs
[i
]);
1066 return fsBTInvalidNodeErr
;
1069 /* Don't swap srcKey->keyLength (it's only one byte), but do sanity check it */
1070 if (srcKey
->keyLength
< kHFSCatalogKeyMinimumLength
|| srcKey
->keyLength
> kHFSCatalogKeyMaximumLength
) {
1071 if (direction
== kSwapBTNodeHostToBig
) {
1072 panic("hfs_swap_HFSBTInternalNode: catalog key #%d invalid length (%d)\n", srcDesc
->numRecords
-i
-1, srcKey
->keyLength
);
1074 printf("hfs_swap_HFSBTInternalNode: catalog key #%d invalid length (%d)\n", srcDesc
->numRecords
-i
-1, srcKey
->keyLength
);
1076 return fsBTInvalidNodeErr
;
1079 /* Don't swap srcKey->reserved */
1081 srcKey
->parentID
= SWAP_BE32 (srcKey
->parentID
);
1083 /* Don't swap srcKey->nodeName */
1085 /* Make sure the keyLength is big enough for the key's content */
1086 if (srcDesc
->kind
== kBTIndexNode
)
1087 expectedKeyLength
= sizeof(*srcKey
) - sizeof(srcKey
->keyLength
);
1089 expectedKeyLength
= srcKey
->nodeName
[0] + kHFSCatalogKeyMinimumLength
;
1090 if (srcKey
->keyLength
< expectedKeyLength
) {
1091 if (direction
== kSwapBTNodeHostToBig
) {
1092 panic("hfs_swap_HFSBTInternalNode: catalog record #%d keyLength=%u expected=%u\n",
1093 srcDesc
->numRecords
-i
, srcKey
->keyLength
, expectedKeyLength
);
1095 printf("hfs_swap_HFSBTInternalNode: catalog record #%d keyLength=%u expected=%u\n",
1096 srcDesc
->numRecords
-i
, srcKey
->keyLength
, expectedKeyLength
);
1098 return fsBTInvalidNodeErr
;
1101 /* Point to record data (round up to even byte boundary) */
1102 srcPtr
= (int16_t *)((char *)srcKey
+ ((srcKey
->keyLength
+ 2) & ~1));
1105 * Make sure that we can safely dereference the record's type field or
1106 * and index node's child node number.
1108 if ((char *)srcPtr
+ sizeof(u_int32_t
) > nextRecord
) {
1109 if (direction
== kSwapBTNodeHostToBig
) {
1110 panic("hfs_swap_HFSBTInternalNode: catalog key #%d too big\n", srcDesc
->numRecords
-i
-1);
1112 printf("hfs_swap_HFSBTInternalNode: catalog key #%d too big\n", srcDesc
->numRecords
-i
-1);
1114 return fsBTInvalidNodeErr
;
1118 * For index nodes, the record data is just the child's node number.
1119 * Skip over swapping the various types of catalog record.
1121 if (srcDesc
->kind
== kBTIndexNode
) {
1122 *((u_int32_t
*)srcPtr
) = SWAP_BE32 (*((u_int32_t
*)srcPtr
));
1126 /* Make sure the recordType is in native order before using it. */
1127 if (direction
== kSwapBTNodeBigToHost
)
1128 srcPtr
[0] = SWAP_BE16 (srcPtr
[0]);
1130 if (srcPtr
[0] == kHFSFolderRecord
) {
1131 HFSCatalogFolder
*srcRec
= (HFSCatalogFolder
*)srcPtr
;
1132 if ((char *)srcRec
+ sizeof(*srcRec
) > nextRecord
) {
1133 if (direction
== kSwapBTNodeHostToBig
) {
1134 panic("hfs_swap_HFSBTInternalNode: catalog folder record #%d too big\n", srcDesc
->numRecords
-i
-1);
1136 printf("hfs_swap_HFSBTInternalNode: catalog folder record #%d too big\n", srcDesc
->numRecords
-i
-1);
1138 return fsBTInvalidNodeErr
;
1141 srcRec
->flags
= SWAP_BE16 (srcRec
->flags
);
1142 srcRec
->valence
= SWAP_BE16 (srcRec
->valence
);
1144 srcRec
->folderID
= SWAP_BE32 (srcRec
->folderID
);
1145 srcRec
->createDate
= SWAP_BE32 (srcRec
->createDate
);
1146 srcRec
->modifyDate
= SWAP_BE32 (srcRec
->modifyDate
);
1147 srcRec
->backupDate
= SWAP_BE32 (srcRec
->backupDate
);
1149 /* Don't swap srcRec->userInfo */
1150 /* Don't swap srcRec->finderInfo */
1151 /* Don't swap resserved array */
1153 } else if (srcPtr
[0] == kHFSFileRecord
) {
1154 HFSCatalogFile
*srcRec
= (HFSCatalogFile
*)srcPtr
;
1155 if ((char *)srcRec
+ sizeof(*srcRec
) > nextRecord
) {
1156 if (direction
== kSwapBTNodeHostToBig
) {
1157 panic("hfs_swap_HFSBTInternalNode: catalog file record #%d too big\n", srcDesc
->numRecords
-i
-1);
1159 printf("hfs_swap_HFSBTInternalNode: catalog file record #%d too big\n", srcDesc
->numRecords
-i
-1);
1161 return fsBTInvalidNodeErr
;
1164 srcRec
->flags
= srcRec
->flags
;
1165 srcRec
->fileType
= srcRec
->fileType
;
1167 /* Don't swap srcRec->userInfo */
1169 srcRec
->fileID
= SWAP_BE32 (srcRec
->fileID
);
1171 srcRec
->dataStartBlock
= SWAP_BE16 (srcRec
->dataStartBlock
);
1172 srcRec
->dataLogicalSize
= SWAP_BE32 (srcRec
->dataLogicalSize
);
1173 srcRec
->dataPhysicalSize
= SWAP_BE32 (srcRec
->dataPhysicalSize
);
1175 srcRec
->rsrcStartBlock
= SWAP_BE16 (srcRec
->rsrcStartBlock
);
1176 srcRec
->rsrcLogicalSize
= SWAP_BE32 (srcRec
->rsrcLogicalSize
);
1177 srcRec
->rsrcPhysicalSize
= SWAP_BE32 (srcRec
->rsrcPhysicalSize
);
1179 srcRec
->createDate
= SWAP_BE32 (srcRec
->createDate
);
1180 srcRec
->modifyDate
= SWAP_BE32 (srcRec
->modifyDate
);
1181 srcRec
->backupDate
= SWAP_BE32 (srcRec
->backupDate
);
1183 /* Don't swap srcRec->finderInfo */
1185 srcRec
->clumpSize
= SWAP_BE16 (srcRec
->clumpSize
);
1187 /* Swap the two sets of extents as an array of six (three each) u_int16_t */
1188 for (j
= 0; j
< kHFSExtentDensity
* 2; j
++) {
1189 srcRec
->dataExtents
[j
].startBlock
= SWAP_BE16 (srcRec
->dataExtents
[j
].startBlock
);
1190 srcRec
->dataExtents
[j
].blockCount
= SWAP_BE16 (srcRec
->dataExtents
[j
].blockCount
);
1193 /* Don't swap srcRec->reserved */
1195 } else if ((srcPtr
[0] == kHFSFolderThreadRecord
) ||
1196 (srcPtr
[0] == kHFSFileThreadRecord
)) {
1197 HFSCatalogThread
*srcRec
= (HFSCatalogThread
*)srcPtr
;
1199 /* Make sure there is room for parentID and name length */
1200 if ((char *) &srcRec
->nodeName
[1] > nextRecord
) {
1201 if (direction
== kSwapBTNodeHostToBig
) {
1202 panic("hfs_swap_HFSBTInternalNode: catalog thread record #%d too big\n", srcDesc
->numRecords
-i
-1);
1204 printf("hfs_swap_HFSBTInternalNode: catalog thread record #%d too big\n", srcDesc
->numRecords
-i
-1);
1206 return fsBTInvalidNodeErr
;
1209 /* Don't swap srcRec->reserved array */
1211 srcRec
->parentID
= SWAP_BE32 (srcRec
->parentID
);
1213 /* Don't swap srcRec->nodeName */
1215 /* Make sure there is room for the name in the buffer */
1216 if ((char *) &srcRec
->nodeName
[srcRec
->nodeName
[0]] > nextRecord
) {
1217 if (direction
== kSwapBTNodeHostToBig
) {
1218 panic("hfs_swap_HFSBTInternalNode: catalog thread record #%d name too big\n", srcDesc
->numRecords
-i
-1);
1220 printf("hfs_swap_HFSBTInternalNode: catalog thread record #%d name too big\n", srcDesc
->numRecords
-i
-1);
1222 return fsBTInvalidNodeErr
;
1225 if (direction
== kSwapBTNodeHostToBig
) {
1226 panic("hfs_swap_HFSBTInternalNode: unrecognized catalog record type (0x%04X; record #%d)\n", srcPtr
[0], srcDesc
->numRecords
-i
-1);
1228 printf("hfs_swap_HFSBTInternalNode: unrecognized catalog record type (0x%04X; record #%d)\n", srcPtr
[0], srcDesc
->numRecords
-i
-1);
1230 return fsBTInvalidNodeErr
;
1233 /* We can swap the record type now that we're done using it */
1234 if (direction
== kSwapBTNodeHostToBig
)
1235 srcPtr
[0] = SWAP_BE16 (srcPtr
[0]);
1239 panic ("hfs_swap_HFSBTInternalNode: fileID %u is not a system B-tree\n", fileID
);