dnsapi: Remove a bunch of unused functions that cause naming conflicts.
[wine/multimedia.git] / dlls / itss / chm_lib.c
blob190dea76a2cfcfec17c10dd0fc320a2f1e8f631d
1 /***************************************************************************
2 * chm_lib.c - CHM archive manipulation routines *
3 * ------------------- *
4 * *
5 * author: Jed Wing <jedwin@ugcs.caltech.edu> *
6 * version: 0.3 *
7 * notes: These routines are meant for the manipulation of microsoft *
8 * .chm (compiled html help) files, but may likely be used *
9 * for the manipulation of any ITSS archive, if ever ITSS *
10 * archives are used for any other purpose. *
11 * *
12 * Note also that the section names are statically handled. *
13 * To be entirely correct, the section names should be read *
14 * from the section names meta-file, and then the various *
15 * content sections and the "transforms" to apply to the data *
16 * they contain should be inferred from the section name and *
17 * the meta-files referenced using that name; however, all of *
18 * the files I've been able to get my hands on appear to have *
19 * only two sections: Uncompressed and MSCompressed. *
20 * Additionally, the ITSS.DLL file included with Windows does *
21 * not appear to handle any different transforms than the *
22 * simple LZX-transform. Furthermore, the list of transforms *
23 * to apply is broken, in that only half the required space *
24 * is allocated for the list. (It appears as though the *
25 * space is allocated for ASCII strings, but the strings are *
26 * written as unicode. As a result, only the first half of *
27 * the string appears.) So this is probably not too big of *
28 * a deal, at least until CHM v4 (MS .lit files), which also *
29 * incorporate encryption, of some description. *
30 * *
31 ***************************************************************************/
33 /***************************************************************************
34 * *
35 * This library is free software; you can redistribute it and/or modify *
36 * it under the terms of the GNU Lesser General Public License as *
37 * published by the Free Software Foundation; either version 2.1 of the *
38 * License, or (at your option) any later version. *
39 * *
40 ***************************************************************************/
42 /***************************************************************************
43 * *
44 * Adapted for Wine by Mike McCormack *
45 * *
46 ***************************************************************************/
48 #include "config.h"
49 #include "wine/port.h"
51 #include <stdarg.h>
52 #include <stdio.h>
53 #include <stdlib.h>
54 #include <string.h>
56 #include "windef.h"
57 #include "winbase.h"
58 #include "wine/unicode.h"
60 #include "chm_lib.h"
61 #include "lzx.h"
63 #define CHM_ACQUIRE_LOCK(a) do { \
64 EnterCriticalSection(&(a)); \
65 } while(0)
66 #define CHM_RELEASE_LOCK(a) do { \
67 LeaveCriticalSection(&(a)); \
68 } while(0)
70 #define CHM_NULL_FD (INVALID_HANDLE_VALUE)
71 #define CHM_CLOSE_FILE(fd) CloseHandle((fd))
74 * defines related to tuning
76 #ifndef CHM_MAX_BLOCKS_CACHED
77 #define CHM_MAX_BLOCKS_CACHED 5
78 #endif
81 * architecture specific defines
83 * Note: as soon as C99 is more widespread, the below defines should
84 * probably just use the C99 sized-int types.
86 * The following settings will probably work for many platforms. The sizes
87 * don't have to be exactly correct, but the types must accommodate at least as
88 * many bits as they specify.
91 /* i386, 32-bit, Windows */
92 typedef BYTE UChar;
93 typedef SHORT Int16;
94 typedef USHORT UInt16;
95 typedef LONG Int32;
96 typedef DWORD UInt32;
97 typedef LONGLONG Int64;
98 typedef ULONGLONG UInt64;
100 /* utilities for unmarshalling data */
101 static int _unmarshal_char_array(unsigned char **pData,
102 unsigned long *pLenRemain,
103 char *dest,
104 int count)
106 if (count <= 0 || (unsigned int)count > *pLenRemain)
107 return 0;
108 memcpy(dest, (*pData), count);
109 *pData += count;
110 *pLenRemain -= count;
111 return 1;
114 static int _unmarshal_uchar_array(unsigned char **pData,
115 unsigned long *pLenRemain,
116 unsigned char *dest,
117 int count)
119 if (count <= 0 || (unsigned int)count > *pLenRemain)
120 return 0;
121 memcpy(dest, (*pData), count);
122 *pData += count;
123 *pLenRemain -= count;
124 return 1;
127 static int _unmarshal_int32(unsigned char **pData,
128 unsigned long *pLenRemain,
129 Int32 *dest)
131 if (4 > *pLenRemain)
132 return 0;
133 *dest = (*pData)[0] | (*pData)[1]<<8 | (*pData)[2]<<16 | (*pData)[3]<<24;
134 *pData += 4;
135 *pLenRemain -= 4;
136 return 1;
139 static int _unmarshal_uint32(unsigned char **pData,
140 unsigned long *pLenRemain,
141 UInt32 *dest)
143 if (4 > *pLenRemain)
144 return 0;
145 *dest = (*pData)[0] | (*pData)[1]<<8 | (*pData)[2]<<16 | (*pData)[3]<<24;
146 *pData += 4;
147 *pLenRemain -= 4;
148 return 1;
151 static int _unmarshal_int64(unsigned char **pData,
152 unsigned long *pLenRemain,
153 Int64 *dest)
155 Int64 temp;
156 int i;
157 if (8 > *pLenRemain)
158 return 0;
159 temp=0;
160 for(i=8; i>0; i--)
162 temp <<= 8;
163 temp |= (*pData)[i-1];
165 *dest = temp;
166 *pData += 8;
167 *pLenRemain -= 8;
168 return 1;
171 static int _unmarshal_uint64(unsigned char **pData,
172 unsigned long *pLenRemain,
173 UInt64 *dest)
175 UInt64 temp;
176 int i;
177 if (8 > *pLenRemain)
178 return 0;
179 temp=0;
180 for(i=8; i>0; i--)
182 temp <<= 8;
183 temp |= (*pData)[i-1];
185 *dest = temp;
186 *pData += 8;
187 *pLenRemain -= 8;
188 return 1;
191 static int _unmarshal_uuid(unsigned char **pData,
192 unsigned long *pDataLen,
193 unsigned char *dest)
195 return _unmarshal_uchar_array(pData, pDataLen, dest, 16);
198 /* names of sections essential to decompression */
199 static const WCHAR _CHMU_RESET_TABLE[] = {
200 ':',':','D','a','t','a','S','p','a','c','e','/',
201 'S','t','o','r','a','g','e','/',
202 'M','S','C','o','m','p','r','e','s','s','e','d','/',
203 'T','r','a','n','s','f','o','r','m','/',
204 '{','7','F','C','2','8','9','4','0','-','9','D','3','1',
205 '-','1','1','D','0','-','9','B','2','7','-',
206 '0','0','A','0','C','9','1','E','9','C','7','C','}','/',
207 'I','n','s','t','a','n','c','e','D','a','t','a','/',
208 'R','e','s','e','t','T','a','b','l','e',0
210 static const WCHAR _CHMU_LZXC_CONTROLDATA[] = {
211 ':',':','D','a','t','a','S','p','a','c','e','/',
212 'S','t','o','r','a','g','e','/',
213 'M','S','C','o','m','p','r','e','s','s','e','d','/',
214 'C','o','n','t','r','o','l','D','a','t','a',0
216 static const WCHAR _CHMU_CONTENT[] = {
217 ':',':','D','a','t','a','S','p','a','c','e','/',
218 'S','t','o','r','a','g','e','/',
219 'M','S','C','o','m','p','r','e','s','s','e','d','/',
220 'C','o','n','t','e','n','t',0
222 static const WCHAR _CHMU_SPANINFO[] = {
223 ':',':','D','a','t','a','S','p','a','c','e','/',
224 'S','t','o','r','a','g','e','/',
225 'M','S','C','o','m','p','r','e','s','s','e','d','/',
226 'S','p','a','n','I','n','f','o',
230 * structures local to this module
233 /* structure of ITSF headers */
234 #define _CHM_ITSF_V2_LEN (0x58)
235 #define _CHM_ITSF_V3_LEN (0x60)
236 struct chmItsfHeader
238 char signature[4]; /* 0 (ITSF) */
239 Int32 version; /* 4 */
240 Int32 header_len; /* 8 */
241 Int32 unknown_000c; /* c */
242 UInt32 last_modified; /* 10 */
243 UInt32 lang_id; /* 14 */
244 UChar dir_uuid[16]; /* 18 */
245 UChar stream_uuid[16]; /* 28 */
246 UInt64 unknown_offset; /* 38 */
247 UInt64 unknown_len; /* 40 */
248 UInt64 dir_offset; /* 48 */
249 UInt64 dir_len; /* 50 */
250 UInt64 data_offset; /* 58 (Not present before V3) */
251 }; /* __attribute__ ((aligned (1))); */
253 static int _unmarshal_itsf_header(unsigned char **pData,
254 unsigned long *pDataLen,
255 struct chmItsfHeader *dest)
257 /* we only know how to deal with the 0x58 and 0x60 byte structures */
258 if (*pDataLen != _CHM_ITSF_V2_LEN && *pDataLen != _CHM_ITSF_V3_LEN)
259 return 0;
261 /* unmarshal common fields */
262 _unmarshal_char_array(pData, pDataLen, dest->signature, 4);
263 _unmarshal_int32 (pData, pDataLen, &dest->version);
264 _unmarshal_int32 (pData, pDataLen, &dest->header_len);
265 _unmarshal_int32 (pData, pDataLen, &dest->unknown_000c);
266 _unmarshal_uint32 (pData, pDataLen, &dest->last_modified);
267 _unmarshal_uint32 (pData, pDataLen, &dest->lang_id);
268 _unmarshal_uuid (pData, pDataLen, dest->dir_uuid);
269 _unmarshal_uuid (pData, pDataLen, dest->stream_uuid);
270 _unmarshal_uint64 (pData, pDataLen, &dest->unknown_offset);
271 _unmarshal_uint64 (pData, pDataLen, &dest->unknown_len);
272 _unmarshal_uint64 (pData, pDataLen, &dest->dir_offset);
273 _unmarshal_uint64 (pData, pDataLen, &dest->dir_len);
275 /* error check the data */
276 /* XXX: should also check UUIDs, probably, though with a version 3 file,
277 * current MS tools do not seem to use them.
279 if (memcmp(dest->signature, "ITSF", 4) != 0)
280 return 0;
281 if (dest->version == 2)
283 if (dest->header_len < _CHM_ITSF_V2_LEN)
284 return 0;
286 else if (dest->version == 3)
288 if (dest->header_len < _CHM_ITSF_V3_LEN)
289 return 0;
291 else
292 return 0;
294 /* now, if we have a V3 structure, unmarshal the rest.
295 * otherwise, compute it
297 if (dest->version == 3)
299 if (*pDataLen != 0)
300 _unmarshal_uint64(pData, pDataLen, &dest->data_offset);
301 else
302 return 0;
304 else
305 dest->data_offset = dest->dir_offset + dest->dir_len;
307 return 1;
310 /* structure of ITSP headers */
311 #define _CHM_ITSP_V1_LEN (0x54)
312 struct chmItspHeader
314 char signature[4]; /* 0 (ITSP) */
315 Int32 version; /* 4 */
316 Int32 header_len; /* 8 */
317 Int32 unknown_000c; /* c */
318 UInt32 block_len; /* 10 */
319 Int32 blockidx_intvl; /* 14 */
320 Int32 index_depth; /* 18 */
321 Int32 index_root; /* 1c */
322 Int32 index_head; /* 20 */
323 Int32 unknown_0024; /* 24 */
324 UInt32 num_blocks; /* 28 */
325 Int32 unknown_002c; /* 2c */
326 UInt32 lang_id; /* 30 */
327 UChar system_uuid[16]; /* 34 */
328 UChar unknown_0044[16]; /* 44 */
329 }; /* __attribute__ ((aligned (1))); */
331 static int _unmarshal_itsp_header(unsigned char **pData,
332 unsigned long *pDataLen,
333 struct chmItspHeader *dest)
335 /* we only know how to deal with a 0x54 byte structures */
336 if (*pDataLen != _CHM_ITSP_V1_LEN)
337 return 0;
339 /* unmarshal fields */
340 _unmarshal_char_array(pData, pDataLen, dest->signature, 4);
341 _unmarshal_int32 (pData, pDataLen, &dest->version);
342 _unmarshal_int32 (pData, pDataLen, &dest->header_len);
343 _unmarshal_int32 (pData, pDataLen, &dest->unknown_000c);
344 _unmarshal_uint32 (pData, pDataLen, &dest->block_len);
345 _unmarshal_int32 (pData, pDataLen, &dest->blockidx_intvl);
346 _unmarshal_int32 (pData, pDataLen, &dest->index_depth);
347 _unmarshal_int32 (pData, pDataLen, &dest->index_root);
348 _unmarshal_int32 (pData, pDataLen, &dest->index_head);
349 _unmarshal_int32 (pData, pDataLen, &dest->unknown_0024);
350 _unmarshal_uint32 (pData, pDataLen, &dest->num_blocks);
351 _unmarshal_int32 (pData, pDataLen, &dest->unknown_002c);
352 _unmarshal_uint32 (pData, pDataLen, &dest->lang_id);
353 _unmarshal_uuid (pData, pDataLen, dest->system_uuid);
354 _unmarshal_uchar_array(pData, pDataLen, dest->unknown_0044, 16);
356 /* error check the data */
357 if (memcmp(dest->signature, "ITSP", 4) != 0)
358 return 0;
359 if (dest->version != 1)
360 return 0;
361 if (dest->header_len != _CHM_ITSP_V1_LEN)
362 return 0;
364 return 1;
367 /* structure of PMGL headers */
368 static const char _chm_pmgl_marker[4] = "PMGL";
369 #define _CHM_PMGL_LEN (0x14)
370 struct chmPmglHeader
372 char signature[4]; /* 0 (PMGL) */
373 UInt32 free_space; /* 4 */
374 UInt32 unknown_0008; /* 8 */
375 Int32 block_prev; /* c */
376 Int32 block_next; /* 10 */
377 }; /* __attribute__ ((aligned (1))); */
379 static int _unmarshal_pmgl_header(unsigned char **pData,
380 unsigned long *pDataLen,
381 struct chmPmglHeader *dest)
383 /* we only know how to deal with a 0x14 byte structures */
384 if (*pDataLen != _CHM_PMGL_LEN)
385 return 0;
387 /* unmarshal fields */
388 _unmarshal_char_array(pData, pDataLen, dest->signature, 4);
389 _unmarshal_uint32 (pData, pDataLen, &dest->free_space);
390 _unmarshal_uint32 (pData, pDataLen, &dest->unknown_0008);
391 _unmarshal_int32 (pData, pDataLen, &dest->block_prev);
392 _unmarshal_int32 (pData, pDataLen, &dest->block_next);
394 /* check structure */
395 if (memcmp(dest->signature, _chm_pmgl_marker, 4) != 0)
396 return 0;
398 return 1;
401 /* structure of PMGI headers */
402 static const char _chm_pmgi_marker[4] = "PMGI";
403 #define _CHM_PMGI_LEN (0x08)
404 struct chmPmgiHeader
406 char signature[4]; /* 0 (PMGI) */
407 UInt32 free_space; /* 4 */
408 }; /* __attribute__ ((aligned (1))); */
410 static int _unmarshal_pmgi_header(unsigned char **pData,
411 unsigned long *pDataLen,
412 struct chmPmgiHeader *dest)
414 /* we only know how to deal with a 0x8 byte structures */
415 if (*pDataLen != _CHM_PMGI_LEN)
416 return 0;
418 /* unmarshal fields */
419 _unmarshal_char_array(pData, pDataLen, dest->signature, 4);
420 _unmarshal_uint32 (pData, pDataLen, &dest->free_space);
422 /* check structure */
423 if (memcmp(dest->signature, _chm_pmgi_marker, 4) != 0)
424 return 0;
426 return 1;
429 /* structure of LZXC reset table */
430 #define _CHM_LZXC_RESETTABLE_V1_LEN (0x28)
431 struct chmLzxcResetTable
433 UInt32 version;
434 UInt32 block_count;
435 UInt32 unknown;
436 UInt32 table_offset;
437 UInt64 uncompressed_len;
438 UInt64 compressed_len;
439 UInt64 block_len;
440 }; /* __attribute__ ((aligned (1))); */
442 static int _unmarshal_lzxc_reset_table(unsigned char **pData,
443 unsigned long *pDataLen,
444 struct chmLzxcResetTable *dest)
446 /* we only know how to deal with a 0x28 byte structures */
447 if (*pDataLen != _CHM_LZXC_RESETTABLE_V1_LEN)
448 return 0;
450 /* unmarshal fields */
451 _unmarshal_uint32 (pData, pDataLen, &dest->version);
452 _unmarshal_uint32 (pData, pDataLen, &dest->block_count);
453 _unmarshal_uint32 (pData, pDataLen, &dest->unknown);
454 _unmarshal_uint32 (pData, pDataLen, &dest->table_offset);
455 _unmarshal_uint64 (pData, pDataLen, &dest->uncompressed_len);
456 _unmarshal_uint64 (pData, pDataLen, &dest->compressed_len);
457 _unmarshal_uint64 (pData, pDataLen, &dest->block_len);
459 /* check structure */
460 if (dest->version != 2)
461 return 0;
463 return 1;
466 /* structure of LZXC control data block */
467 #define _CHM_LZXC_MIN_LEN (0x18)
468 #define _CHM_LZXC_V2_LEN (0x1c)
469 struct chmLzxcControlData
471 UInt32 size; /* 0 */
472 char signature[4]; /* 4 (LZXC) */
473 UInt32 version; /* 8 */
474 UInt32 resetInterval; /* c */
475 UInt32 windowSize; /* 10 */
476 UInt32 windowsPerReset; /* 14 */
477 UInt32 unknown_18; /* 18 */
480 static int _unmarshal_lzxc_control_data(unsigned char **pData,
481 unsigned long *pDataLen,
482 struct chmLzxcControlData *dest)
484 /* we want at least 0x18 bytes */
485 if (*pDataLen < _CHM_LZXC_MIN_LEN)
486 return 0;
488 /* unmarshal fields */
489 _unmarshal_uint32 (pData, pDataLen, &dest->size);
490 _unmarshal_char_array(pData, pDataLen, dest->signature, 4);
491 _unmarshal_uint32 (pData, pDataLen, &dest->version);
492 _unmarshal_uint32 (pData, pDataLen, &dest->resetInterval);
493 _unmarshal_uint32 (pData, pDataLen, &dest->windowSize);
494 _unmarshal_uint32 (pData, pDataLen, &dest->windowsPerReset);
496 if (*pDataLen >= _CHM_LZXC_V2_LEN)
497 _unmarshal_uint32 (pData, pDataLen, &dest->unknown_18);
498 else
499 dest->unknown_18 = 0;
501 if (dest->version == 2)
503 dest->resetInterval *= 0x8000;
504 dest->windowSize *= 0x8000;
506 if (dest->windowSize == 0 || dest->resetInterval == 0)
507 return 0;
509 /* for now, only support resetInterval a multiple of windowSize/2 */
510 if (dest->windowSize == 1)
511 return 0;
512 if ((dest->resetInterval % (dest->windowSize/2)) != 0)
513 return 0;
515 /* check structure */
516 if (memcmp(dest->signature, "LZXC", 4) != 0)
517 return 0;
519 return 1;
522 /* the structure used for chm file handles */
523 struct chmFile
525 HANDLE fd;
527 CRITICAL_SECTION mutex;
528 CRITICAL_SECTION lzx_mutex;
529 CRITICAL_SECTION cache_mutex;
531 UInt64 dir_offset;
532 UInt64 dir_len;
533 UInt64 data_offset;
534 Int32 index_root;
535 Int32 index_head;
536 UInt32 block_len;
538 UInt64 span;
539 struct chmUnitInfo rt_unit;
540 struct chmUnitInfo cn_unit;
541 struct chmLzxcResetTable reset_table;
543 /* LZX control data */
544 int compression_enabled;
545 UInt32 window_size;
546 UInt32 reset_interval;
547 UInt32 reset_blkcount;
549 /* decompressor state */
550 struct LZXstate *lzx_state;
551 int lzx_last_block;
553 /* cache for decompressed blocks */
554 UChar **cache_blocks;
555 Int64 *cache_block_indices;
556 Int32 cache_num_blocks;
560 * utility functions local to this module
563 /* utility function to handle differences between {pread,read}(64)? */
564 static Int64 _chm_fetch_bytes(struct chmFile *h,
565 UChar *buf,
566 UInt64 os,
567 Int64 len)
569 Int64 readLen=0;
570 if (h->fd == CHM_NULL_FD)
571 return readLen;
573 CHM_ACQUIRE_LOCK(h->mutex);
574 /* NOTE: this might be better done with CreateFileMapping, et cetera... */
576 LARGE_INTEGER old_pos, new_pos;
577 DWORD actualLen=0;
579 /* awkward Win32 Seek/Tell */
580 new_pos.QuadPart = 0;
581 SetFilePointerEx( h->fd, new_pos, &old_pos, FILE_CURRENT );
582 new_pos.QuadPart = os;
583 SetFilePointerEx( h->fd, new_pos, NULL, FILE_BEGIN );
585 /* read the data */
586 if (ReadFile(h->fd,
587 buf,
588 (DWORD)len,
589 &actualLen,
590 NULL))
591 readLen = actualLen;
592 else
593 readLen = 0;
595 /* restore original position */
596 SetFilePointerEx( h->fd, old_pos, NULL, FILE_BEGIN );
598 CHM_RELEASE_LOCK(h->mutex);
599 return readLen;
602 /* open an ITS archive */
603 struct chmFile *chm_openW(const WCHAR *filename)
605 unsigned char sbuffer[256];
606 unsigned long sremain;
607 unsigned char *sbufpos;
608 struct chmFile *newHandle=NULL;
609 struct chmItsfHeader itsfHeader;
610 struct chmItspHeader itspHeader;
611 #if 0
612 struct chmUnitInfo uiSpan;
613 #endif
614 struct chmUnitInfo uiLzxc;
615 struct chmLzxcControlData ctlData;
617 /* allocate handle */
618 newHandle = malloc(sizeof(struct chmFile));
619 newHandle->fd = CHM_NULL_FD;
620 newHandle->lzx_state = NULL;
621 newHandle->cache_blocks = NULL;
622 newHandle->cache_block_indices = NULL;
623 newHandle->cache_num_blocks = 0;
625 /* open file */
626 if ((newHandle->fd=CreateFileW(filename,
627 GENERIC_READ,
628 FILE_SHARE_READ,
629 NULL,
630 OPEN_EXISTING,
631 FILE_ATTRIBUTE_NORMAL,
632 NULL)) == CHM_NULL_FD)
634 free(newHandle);
635 return NULL;
638 /* initialize mutexes, if needed */
639 InitializeCriticalSection(&newHandle->mutex);
640 InitializeCriticalSection(&newHandle->lzx_mutex);
641 InitializeCriticalSection(&newHandle->cache_mutex);
643 /* read and verify header */
644 sremain = _CHM_ITSF_V3_LEN;
645 sbufpos = sbuffer;
646 if (_chm_fetch_bytes(newHandle, sbuffer, (UInt64)0, sremain) != sremain ||
647 !_unmarshal_itsf_header(&sbufpos, &sremain, &itsfHeader))
649 chm_close(newHandle);
650 return NULL;
653 /* stash important values from header */
654 newHandle->dir_offset = itsfHeader.dir_offset;
655 newHandle->dir_len = itsfHeader.dir_len;
656 newHandle->data_offset = itsfHeader.data_offset;
658 /* now, read and verify the directory header chunk */
659 sremain = _CHM_ITSP_V1_LEN;
660 sbufpos = sbuffer;
661 if (_chm_fetch_bytes(newHandle, sbuffer,
662 (UInt64)itsfHeader.dir_offset, sremain) != sremain ||
663 !_unmarshal_itsp_header(&sbufpos, &sremain, &itspHeader))
665 chm_close(newHandle);
666 return NULL;
669 /* grab essential information from ITSP header */
670 newHandle->dir_offset += itspHeader.header_len;
671 newHandle->dir_len -= itspHeader.header_len;
672 newHandle->index_root = itspHeader.index_root;
673 newHandle->index_head = itspHeader.index_head;
674 newHandle->block_len = itspHeader.block_len;
676 /* if the index root is -1, this means we don't have any PMGI blocks.
677 * as a result, we must use the sole PMGL block as the index root
679 if (newHandle->index_root == -1)
680 newHandle->index_root = newHandle->index_head;
682 /* By default, compression is enabled. */
683 newHandle->compression_enabled = 1;
685 /* Jed, Sun Jun 27: 'span' doesn't seem to be used anywhere?! */
686 #if 0
687 /* fetch span */
688 if (CHM_RESOLVE_SUCCESS != chm_resolve_object(newHandle,
689 _CHMU_SPANINFO,
690 &uiSpan) ||
691 uiSpan.space == CHM_COMPRESSED)
693 chm_close(newHandle);
694 return NULL;
697 /* N.B.: we've already checked that uiSpan is in the uncompressed section,
698 * so this should not require attempting to decompress, which may
699 * rely on having a valid "span"
701 sremain = 8;
702 sbufpos = sbuffer;
703 if (chm_retrieve_object(newHandle, &uiSpan, sbuffer,
704 0, sremain) != sremain ||
705 !_unmarshal_uint64(&sbufpos, &sremain, &newHandle->span))
707 chm_close(newHandle);
708 return NULL;
710 #endif
712 /* prefetch most commonly needed unit infos */
713 if (CHM_RESOLVE_SUCCESS != chm_resolve_object(newHandle,
714 _CHMU_RESET_TABLE,
715 &newHandle->rt_unit) ||
716 newHandle->rt_unit.space == CHM_COMPRESSED ||
717 CHM_RESOLVE_SUCCESS != chm_resolve_object(newHandle,
718 _CHMU_CONTENT,
719 &newHandle->cn_unit) ||
720 newHandle->cn_unit.space == CHM_COMPRESSED ||
721 CHM_RESOLVE_SUCCESS != chm_resolve_object(newHandle,
722 _CHMU_LZXC_CONTROLDATA,
723 &uiLzxc) ||
724 uiLzxc.space == CHM_COMPRESSED)
726 newHandle->compression_enabled = 0;
729 /* read reset table info */
730 if (newHandle->compression_enabled)
732 sremain = _CHM_LZXC_RESETTABLE_V1_LEN;
733 sbufpos = sbuffer;
734 if (chm_retrieve_object(newHandle, &newHandle->rt_unit, sbuffer,
735 0, sremain) != sremain ||
736 !_unmarshal_lzxc_reset_table(&sbufpos, &sremain,
737 &newHandle->reset_table))
739 newHandle->compression_enabled = 0;
743 /* read control data */
744 if (newHandle->compression_enabled)
746 sremain = (unsigned long)uiLzxc.length;
747 sbufpos = sbuffer;
748 if (chm_retrieve_object(newHandle, &uiLzxc, sbuffer,
749 0, sremain) != sremain ||
750 !_unmarshal_lzxc_control_data(&sbufpos, &sremain,
751 &ctlData))
753 newHandle->compression_enabled = 0;
756 newHandle->window_size = ctlData.windowSize;
757 newHandle->reset_interval = ctlData.resetInterval;
759 /* Jed, Mon Jun 28: Experimentally, it appears that the reset block count */
760 /* must be multiplied by this formerly unknown ctrl data field in */
761 /* order to decompress some files. */
762 #if 0
763 newHandle->reset_blkcount = newHandle->reset_interval /
764 (newHandle->window_size / 2);
765 #else
766 newHandle->reset_blkcount = newHandle->reset_interval /
767 (newHandle->window_size / 2) *
768 ctlData.windowsPerReset;
769 #endif
772 /* initialize cache */
773 chm_set_param(newHandle, CHM_PARAM_MAX_BLOCKS_CACHED,
774 CHM_MAX_BLOCKS_CACHED);
776 return newHandle;
779 /* close an ITS archive */
780 void chm_close(struct chmFile *h)
782 if (h != NULL)
784 if (h->fd != CHM_NULL_FD)
785 CHM_CLOSE_FILE(h->fd);
786 h->fd = CHM_NULL_FD;
788 DeleteCriticalSection(&h->mutex);
789 DeleteCriticalSection(&h->lzx_mutex);
790 DeleteCriticalSection(&h->cache_mutex);
792 if (h->lzx_state)
793 LZXteardown(h->lzx_state);
794 h->lzx_state = NULL;
796 if (h->cache_blocks)
798 int i;
799 for (i=0; i<h->cache_num_blocks; i++)
801 if (h->cache_blocks[i])
802 free(h->cache_blocks[i]);
804 free(h->cache_blocks);
805 h->cache_blocks = NULL;
808 if (h->cache_block_indices)
809 free(h->cache_block_indices);
810 h->cache_block_indices = NULL;
812 free(h);
817 * set a parameter on the file handle.
818 * valid parameter types:
819 * CHM_PARAM_MAX_BLOCKS_CACHED:
820 * how many decompressed blocks should be cached? A simple
821 * caching scheme is used, wherein the index of the block is
822 * used as a hash value, and hash collision results in the
823 * invalidation of the previously cached block.
825 void chm_set_param(struct chmFile *h,
826 int paramType,
827 int paramVal)
829 switch (paramType)
831 case CHM_PARAM_MAX_BLOCKS_CACHED:
832 CHM_ACQUIRE_LOCK(h->cache_mutex);
833 if (paramVal != h->cache_num_blocks)
835 UChar **newBlocks;
836 Int64 *newIndices;
837 int i;
839 /* allocate new cached blocks */
840 newBlocks = malloc(paramVal * sizeof (UChar *));
841 newIndices = malloc(paramVal * sizeof (UInt64));
842 for (i=0; i<paramVal; i++)
844 newBlocks[i] = NULL;
845 newIndices[i] = 0;
848 /* re-distribute old cached blocks */
849 if (h->cache_blocks)
851 for (i=0; i<h->cache_num_blocks; i++)
853 int newSlot = (int)(h->cache_block_indices[i] % paramVal);
855 if (h->cache_blocks[i])
857 /* in case of collision, destroy newcomer */
858 if (newBlocks[newSlot])
860 free(h->cache_blocks[i]);
861 h->cache_blocks[i] = NULL;
863 else
865 newBlocks[newSlot] = h->cache_blocks[i];
866 newIndices[newSlot] =
867 h->cache_block_indices[i];
872 free(h->cache_blocks);
873 free(h->cache_block_indices);
876 /* now, set new values */
877 h->cache_blocks = newBlocks;
878 h->cache_block_indices = newIndices;
879 h->cache_num_blocks = paramVal;
881 CHM_RELEASE_LOCK(h->cache_mutex);
882 break;
884 default:
885 break;
890 * helper methods for chm_resolve_object
893 /* skip a compressed dword */
894 static void _chm_skip_cword(UChar **pEntry)
896 while (*(*pEntry)++ >= 0x80)
900 /* skip the data from a PMGL entry */
901 static void _chm_skip_PMGL_entry_data(UChar **pEntry)
903 _chm_skip_cword(pEntry);
904 _chm_skip_cword(pEntry);
905 _chm_skip_cword(pEntry);
908 /* parse a compressed dword */
909 static UInt64 _chm_parse_cword(UChar **pEntry)
911 UInt64 accum = 0;
912 UChar temp;
913 while ((temp=*(*pEntry)++) >= 0x80)
915 accum <<= 7;
916 accum += temp & 0x7f;
919 return (accum << 7) + temp;
922 /* parse a utf-8 string into an ASCII char buffer */
923 static int _chm_parse_UTF8(UChar **pEntry, UInt64 count, WCHAR *path)
925 /* MJM - Modified to return real Unicode strings */
926 while (count != 0)
928 *path++ = (*(*pEntry)++);
929 --count;
932 *path = '\0';
933 return 1;
936 /* parse a PMGL entry into a chmUnitInfo struct; return 1 on success. */
937 static int _chm_parse_PMGL_entry(UChar **pEntry, struct chmUnitInfo *ui)
939 UInt64 strLen;
941 /* parse str len */
942 strLen = _chm_parse_cword(pEntry);
943 if (strLen > CHM_MAX_PATHLEN)
944 return 0;
946 /* parse path */
947 if (! _chm_parse_UTF8(pEntry, strLen, ui->path))
948 return 0;
950 /* parse info */
951 ui->space = (int)_chm_parse_cword(pEntry);
952 ui->start = _chm_parse_cword(pEntry);
953 ui->length = _chm_parse_cword(pEntry);
954 return 1;
957 /* find an exact entry in PMGL; return NULL if we fail */
958 static UChar *_chm_find_in_PMGL(UChar *page_buf,
959 UInt32 block_len,
960 const WCHAR *objPath)
962 /* XXX: modify this to do a binary search using the nice index structure
963 * that is provided for us.
965 struct chmPmglHeader header;
966 UInt32 hremain;
967 UChar *end;
968 UChar *cur;
969 UChar *temp;
970 UInt64 strLen;
971 WCHAR buffer[CHM_MAX_PATHLEN+1];
973 /* figure out where to start and end */
974 cur = page_buf;
975 hremain = _CHM_PMGL_LEN;
976 if (! _unmarshal_pmgl_header(&cur, &hremain, &header))
977 return NULL;
978 end = page_buf + block_len - (header.free_space);
980 /* now, scan progressively */
981 while (cur < end)
983 /* grab the name */
984 temp = cur;
985 strLen = _chm_parse_cword(&cur);
986 if (! _chm_parse_UTF8(&cur, strLen, buffer))
987 return NULL;
989 /* check if it is the right name */
990 if (! strcmpiW(buffer, objPath))
991 return temp;
993 _chm_skip_PMGL_entry_data(&cur);
996 return NULL;
999 /* find which block should be searched next for the entry; -1 if no block */
1000 static Int32 _chm_find_in_PMGI(UChar *page_buf,
1001 UInt32 block_len,
1002 const WCHAR *objPath)
1004 /* XXX: modify this to do a binary search using the nice index structure
1005 * that is provided for us
1007 struct chmPmgiHeader header;
1008 UInt32 hremain;
1009 int page=-1;
1010 UChar *end;
1011 UChar *cur;
1012 UInt64 strLen;
1013 WCHAR buffer[CHM_MAX_PATHLEN+1];
1015 /* figure out where to start and end */
1016 cur = page_buf;
1017 hremain = _CHM_PMGI_LEN;
1018 if (! _unmarshal_pmgi_header(&cur, &hremain, &header))
1019 return -1;
1020 end = page_buf + block_len - (header.free_space);
1022 /* now, scan progressively */
1023 while (cur < end)
1025 /* grab the name */
1026 strLen = _chm_parse_cword(&cur);
1027 if (! _chm_parse_UTF8(&cur, strLen, buffer))
1028 return -1;
1030 /* check if it is the right name */
1031 if (strcmpiW(buffer, objPath) > 0)
1032 return page;
1034 /* load next value for path */
1035 page = (int)_chm_parse_cword(&cur);
1038 return page;
1041 /* resolve a particular object from the archive */
1042 int chm_resolve_object(struct chmFile *h,
1043 const WCHAR *objPath,
1044 struct chmUnitInfo *ui)
1047 * XXX: implement caching scheme for dir pages
1050 Int32 curPage;
1052 /* buffer to hold whatever page we're looking at */
1053 UChar *page_buf = HeapAlloc(GetProcessHeap(), 0, h->block_len);
1055 /* starting page */
1056 curPage = h->index_root;
1058 /* until we have either returned or given up */
1059 while (curPage != -1)
1062 /* try to fetch the index page */
1063 if (_chm_fetch_bytes(h, page_buf,
1064 (UInt64)h->dir_offset + (UInt64)curPage*h->block_len,
1065 h->block_len) != h->block_len)
1067 HeapFree(GetProcessHeap(), 0, page_buf);
1068 return CHM_RESOLVE_FAILURE;
1071 /* now, if it is a leaf node: */
1072 if (memcmp(page_buf, _chm_pmgl_marker, 4) == 0)
1074 /* scan block */
1075 UChar *pEntry = _chm_find_in_PMGL(page_buf,
1076 h->block_len,
1077 objPath);
1078 if (pEntry == NULL)
1080 HeapFree(GetProcessHeap(), 0, page_buf);
1081 return CHM_RESOLVE_FAILURE;
1084 /* parse entry and return */
1085 _chm_parse_PMGL_entry(&pEntry, ui);
1086 HeapFree(GetProcessHeap(), 0, page_buf);
1087 return CHM_RESOLVE_SUCCESS;
1090 /* else, if it is a branch node: */
1091 else if (memcmp(page_buf, _chm_pmgi_marker, 4) == 0)
1092 curPage = _chm_find_in_PMGI(page_buf, h->block_len, objPath);
1094 /* else, we are confused. give up. */
1095 else
1097 HeapFree(GetProcessHeap(), 0, page_buf);
1098 return CHM_RESOLVE_FAILURE;
1102 /* didn't find anything. fail. */
1103 HeapFree(GetProcessHeap(), 0, page_buf);
1104 return CHM_RESOLVE_FAILURE;
1108 * utility methods for dealing with compressed data
1111 /* get the bounds of a compressed block. return 0 on failure */
1112 static int _chm_get_cmpblock_bounds(struct chmFile *h,
1113 UInt64 block,
1114 UInt64 *start,
1115 Int64 *len)
1117 UChar buffer[8], *dummy;
1118 UInt32 remain;
1120 /* for all but the last block, use the reset table */
1121 if (block < h->reset_table.block_count-1)
1123 /* unpack the start address */
1124 dummy = buffer;
1125 remain = 8;
1126 if (_chm_fetch_bytes(h, buffer,
1127 (UInt64)h->data_offset
1128 + (UInt64)h->rt_unit.start
1129 + (UInt64)h->reset_table.table_offset
1130 + (UInt64)block*8,
1131 remain) != remain ||
1132 !_unmarshal_uint64(&dummy, &remain, start))
1133 return 0;
1135 /* unpack the end address */
1136 dummy = buffer;
1137 remain = 8;
1138 if (_chm_fetch_bytes(h, buffer,
1139 (UInt64)h->data_offset
1140 + (UInt64)h->rt_unit.start
1141 + (UInt64)h->reset_table.table_offset
1142 + (UInt64)block*8 + 8,
1143 remain) != remain ||
1144 !_unmarshal_int64(&dummy, &remain, len))
1145 return 0;
1148 /* for the last block, use the span in addition to the reset table */
1149 else
1151 /* unpack the start address */
1152 dummy = buffer;
1153 remain = 8;
1154 if (_chm_fetch_bytes(h, buffer,
1155 (UInt64)h->data_offset
1156 + (UInt64)h->rt_unit.start
1157 + (UInt64)h->reset_table.table_offset
1158 + (UInt64)block*8,
1159 remain) != remain ||
1160 !_unmarshal_uint64(&dummy, &remain, start))
1161 return 0;
1163 *len = h->reset_table.compressed_len;
1166 /* compute the length and absolute start address */
1167 *len -= *start;
1168 *start += h->data_offset + h->cn_unit.start;
1170 return 1;
1173 /* decompress the block. must have lzx_mutex. */
1174 static Int64 _chm_decompress_block(struct chmFile *h,
1175 UInt64 block,
1176 UChar **ubuffer)
1178 UChar *cbuffer = HeapAlloc( GetProcessHeap(), 0,
1179 ((unsigned int)h->reset_table.block_len + 6144));
1180 UInt64 cmpStart; /* compressed start */
1181 Int64 cmpLen; /* compressed len */
1182 int indexSlot; /* cache index slot */
1183 UChar *lbuffer; /* local buffer ptr */
1184 UInt32 blockAlign = (UInt32)(block % h->reset_blkcount); /* reset intvl. aln. */
1185 UInt32 i; /* local loop index */
1187 /* let the caching system pull its weight! */
1188 if (block - blockAlign <= h->lzx_last_block &&
1189 block >= h->lzx_last_block)
1190 blockAlign = (block - h->lzx_last_block);
1192 /* check if we need previous blocks */
1193 if (blockAlign != 0)
1195 /* fetch all required previous blocks since last reset */
1196 for (i = blockAlign; i > 0; i--)
1198 UInt32 curBlockIdx = block - i;
1200 /* check if we most recently decompressed the previous block */
1201 if (h->lzx_last_block != curBlockIdx)
1203 if ((curBlockIdx % h->reset_blkcount) == 0)
1205 #ifdef CHM_DEBUG
1206 fprintf(stderr, "***RESET (1)***\n");
1207 #endif
1208 LZXreset(h->lzx_state);
1211 indexSlot = (int)((curBlockIdx) % h->cache_num_blocks);
1212 h->cache_block_indices[indexSlot] = curBlockIdx;
1213 if (! h->cache_blocks[indexSlot])
1214 h->cache_blocks[indexSlot] = malloc( (unsigned int)(h->reset_table.block_len));
1215 lbuffer = h->cache_blocks[indexSlot];
1217 /* decompress the previous block */
1218 #ifdef CHM_DEBUG
1219 fprintf(stderr, "Decompressing block #%4d (EXTRA)\n", curBlockIdx);
1220 #endif
1221 if (!_chm_get_cmpblock_bounds(h, curBlockIdx, &cmpStart, &cmpLen) ||
1222 _chm_fetch_bytes(h, cbuffer, cmpStart, cmpLen) != cmpLen ||
1223 LZXdecompress(h->lzx_state, cbuffer, lbuffer, (int)cmpLen,
1224 (int)h->reset_table.block_len) != DECR_OK)
1226 #ifdef CHM_DEBUG
1227 fprintf(stderr, " (DECOMPRESS FAILED!)\n");
1228 #endif
1229 HeapFree(GetProcessHeap(), 0, cbuffer);
1230 return (Int64)0;
1233 h->lzx_last_block = (int)curBlockIdx;
1237 else
1239 if ((block % h->reset_blkcount) == 0)
1241 #ifdef CHM_DEBUG
1242 fprintf(stderr, "***RESET (2)***\n");
1243 #endif
1244 LZXreset(h->lzx_state);
1248 /* allocate slot in cache */
1249 indexSlot = (int)(block % h->cache_num_blocks);
1250 h->cache_block_indices[indexSlot] = block;
1251 if (! h->cache_blocks[indexSlot])
1252 h->cache_blocks[indexSlot] = malloc( ((unsigned int)h->reset_table.block_len));
1253 lbuffer = h->cache_blocks[indexSlot];
1254 *ubuffer = lbuffer;
1256 /* decompress the block we actually want */
1257 #ifdef CHM_DEBUG
1258 fprintf(stderr, "Decompressing block #%4d (REAL )\n", block);
1259 #endif
1260 if (! _chm_get_cmpblock_bounds(h, block, &cmpStart, &cmpLen) ||
1261 _chm_fetch_bytes(h, cbuffer, cmpStart, cmpLen) != cmpLen ||
1262 LZXdecompress(h->lzx_state, cbuffer, lbuffer, (int)cmpLen,
1263 (int)h->reset_table.block_len) != DECR_OK)
1265 #ifdef CHM_DEBUG
1266 fprintf(stderr, " (DECOMPRESS FAILED!)\n");
1267 #endif
1268 HeapFree(GetProcessHeap(), 0, cbuffer);
1269 return (Int64)0;
1271 h->lzx_last_block = (int)block;
1273 /* XXX: modify LZX routines to return the length of the data they
1274 * decompressed and return that instead, for an extra sanity check.
1276 HeapFree(GetProcessHeap(), 0, cbuffer);
1277 return h->reset_table.block_len;
1280 /* grab a region from a compressed block */
1281 static Int64 _chm_decompress_region(struct chmFile *h,
1282 UChar *buf,
1283 UInt64 start,
1284 Int64 len)
1286 UInt64 nBlock, nOffset;
1287 UInt64 nLen;
1288 UInt64 gotLen;
1289 UChar *ubuffer = NULL;
1291 if (len <= 0)
1292 return (Int64)0;
1294 /* figure out what we need to read */
1295 nBlock = start / h->reset_table.block_len;
1296 nOffset = start % h->reset_table.block_len;
1297 nLen = len;
1298 if (nLen > (h->reset_table.block_len - nOffset))
1299 nLen = h->reset_table.block_len - nOffset;
1301 /* if block is cached, return data from it. */
1302 CHM_ACQUIRE_LOCK(h->lzx_mutex);
1303 CHM_ACQUIRE_LOCK(h->cache_mutex);
1304 if (h->cache_block_indices[nBlock % h->cache_num_blocks] == nBlock &&
1305 h->cache_blocks[nBlock % h->cache_num_blocks] != NULL)
1307 memcpy(buf,
1308 h->cache_blocks[nBlock % h->cache_num_blocks] + nOffset,
1309 (unsigned int)nLen);
1310 CHM_RELEASE_LOCK(h->cache_mutex);
1311 CHM_RELEASE_LOCK(h->lzx_mutex);
1312 return nLen;
1314 CHM_RELEASE_LOCK(h->cache_mutex);
1316 /* data request not satisfied, so... start up the decompressor machine */
1317 if (! h->lzx_state)
1319 int window_size = ffs(h->window_size) - 1;
1320 h->lzx_last_block = -1;
1321 h->lzx_state = LZXinit(window_size);
1324 /* decompress some data */
1325 gotLen = _chm_decompress_block(h, nBlock, &ubuffer);
1326 if (gotLen < nLen)
1327 nLen = gotLen;
1328 memcpy(buf, ubuffer+nOffset, (unsigned int)nLen);
1329 CHM_RELEASE_LOCK(h->lzx_mutex);
1330 return nLen;
1333 /* retrieve (part of) an object */
1334 LONGINT64 chm_retrieve_object(struct chmFile *h,
1335 struct chmUnitInfo *ui,
1336 unsigned char *buf,
1337 LONGUINT64 addr,
1338 LONGINT64 len)
1340 /* must be valid file handle */
1341 if (h == NULL)
1342 return (Int64)0;
1344 /* starting address must be in correct range */
1345 if (addr < 0 || addr >= ui->length)
1346 return (Int64)0;
1348 /* clip length */
1349 if (addr + len > ui->length)
1350 len = ui->length - addr;
1352 /* if the file is uncompressed, it's simple */
1353 if (ui->space == CHM_UNCOMPRESSED)
1355 /* read data */
1356 return _chm_fetch_bytes(h,
1357 buf,
1358 (UInt64)h->data_offset + (UInt64)ui->start + (UInt64)addr,
1359 len);
1362 /* else if the file is compressed, it's a little trickier */
1363 else /* ui->space == CHM_COMPRESSED */
1365 Int64 swath=0, total=0;
1367 /* if compression is not enabled for this file... */
1368 if (! h->compression_enabled)
1369 return total;
1371 do {
1373 /* swill another mouthful */
1374 swath = _chm_decompress_region(h, buf, ui->start + addr, len);
1376 /* if we didn't get any... */
1377 if (swath == 0)
1378 return total;
1380 /* update stats */
1381 total += swath;
1382 len -= swath;
1383 addr += swath;
1384 buf += swath;
1386 } while (len != 0);
1388 return total;
1392 /* enumerate the objects in the .chm archive */
1393 int chm_enumerate(struct chmFile *h,
1394 int what,
1395 CHM_ENUMERATOR e,
1396 void *context)
1398 Int32 curPage;
1400 /* buffer to hold whatever page we're looking at */
1401 UChar *page_buf = HeapAlloc(GetProcessHeap(), 0, (unsigned int)h->block_len);
1402 struct chmPmglHeader header;
1403 UChar *end;
1404 UChar *cur;
1405 unsigned long lenRemain;
1406 UInt64 ui_path_len;
1408 /* the current ui */
1409 struct chmUnitInfo ui;
1410 int flag;
1412 /* starting page */
1413 curPage = h->index_head;
1415 /* until we have either returned or given up */
1416 while (curPage != -1)
1419 /* try to fetch the index page */
1420 if (_chm_fetch_bytes(h,
1421 page_buf,
1422 (UInt64)h->dir_offset + (UInt64)curPage*h->block_len,
1423 h->block_len) != h->block_len)
1425 HeapFree(GetProcessHeap(), 0, page_buf);
1426 return 0;
1429 /* figure out start and end for this page */
1430 cur = page_buf;
1431 lenRemain = _CHM_PMGL_LEN;
1432 if (! _unmarshal_pmgl_header(&cur, &lenRemain, &header))
1434 HeapFree(GetProcessHeap(), 0, page_buf);
1435 return 0;
1437 end = page_buf + h->block_len - (header.free_space);
1439 /* loop over this page */
1440 while (cur < end)
1442 if (! _chm_parse_PMGL_entry(&cur, &ui))
1444 HeapFree(GetProcessHeap(), 0, page_buf);
1445 return 0;
1448 /* get the length of the path */
1449 ui_path_len = strlenW(ui.path)-1;
1451 /* check for DIRS */
1452 if (ui.path[ui_path_len] == '/' && !(what & CHM_ENUMERATE_DIRS))
1453 continue;
1455 /* check for FILES */
1456 if (ui.path[ui_path_len] != '/' && !(what & CHM_ENUMERATE_FILES))
1457 continue;
1459 /* check for NORMAL vs. META */
1460 if (ui.path[0] == '/')
1463 /* check for NORMAL vs. SPECIAL */
1464 if (ui.path[1] == '#' || ui.path[1] == '$')
1465 flag = CHM_ENUMERATE_SPECIAL;
1466 else
1467 flag = CHM_ENUMERATE_NORMAL;
1469 else
1470 flag = CHM_ENUMERATE_META;
1471 if (! (what & flag))
1472 continue;
1474 /* call the enumerator */
1476 int status = (*e)(h, &ui, context);
1477 switch (status)
1479 case CHM_ENUMERATOR_FAILURE:
1480 HeapFree(GetProcessHeap(), 0, page_buf);
1481 return 0;
1482 case CHM_ENUMERATOR_CONTINUE:
1483 break;
1484 case CHM_ENUMERATOR_SUCCESS:
1485 HeapFree(GetProcessHeap(), 0, page_buf);
1486 return 1;
1487 default:
1488 break;
1493 /* advance to next page */
1494 curPage = header.block_next;
1497 HeapFree(GetProcessHeap(), 0, page_buf);
1498 return 1;
1501 int chm_enumerate_dir(struct chmFile *h,
1502 const WCHAR *prefix,
1503 int what,
1504 CHM_ENUMERATOR e,
1505 void *context)
1508 * XXX: do this efficiently (i.e. using the tree index)
1511 Int32 curPage;
1513 /* buffer to hold whatever page we're looking at */
1514 UChar *page_buf = HeapAlloc(GetProcessHeap(), 0, (unsigned int)h->block_len);
1515 struct chmPmglHeader header;
1516 UChar *end;
1517 UChar *cur;
1518 unsigned long lenRemain;
1520 /* set to 1 once we've started */
1521 int it_has_begun=0;
1523 /* the current ui */
1524 struct chmUnitInfo ui;
1525 int flag;
1526 UInt64 ui_path_len;
1528 /* the length of the prefix */
1529 WCHAR prefixRectified[CHM_MAX_PATHLEN+1];
1530 int prefixLen;
1531 WCHAR lastPath[CHM_MAX_PATHLEN];
1532 int lastPathLen;
1534 /* starting page */
1535 curPage = h->index_head;
1537 /* initialize pathname state */
1538 lstrcpynW(prefixRectified, prefix, CHM_MAX_PATHLEN);
1539 prefixLen = strlenW(prefixRectified);
1540 if (prefixLen != 0)
1542 if (prefixRectified[prefixLen-1] != '/')
1544 prefixRectified[prefixLen] = '/';
1545 prefixRectified[prefixLen+1] = '\0';
1546 ++prefixLen;
1549 lastPath[0] = '\0';
1550 lastPathLen = -1;
1552 /* until we have either returned or given up */
1553 while (curPage != -1)
1556 /* try to fetch the index page */
1557 if (_chm_fetch_bytes(h,
1558 page_buf,
1559 (UInt64)h->dir_offset + (UInt64)curPage*h->block_len,
1560 h->block_len) != h->block_len)
1562 HeapFree(GetProcessHeap(), 0, page_buf);
1563 return 0;
1566 /* figure out start and end for this page */
1567 cur = page_buf;
1568 lenRemain = _CHM_PMGL_LEN;
1569 if (! _unmarshal_pmgl_header(&cur, &lenRemain, &header))
1571 HeapFree(GetProcessHeap(), 0, page_buf);
1572 return 0;
1574 end = page_buf + h->block_len - (header.free_space);
1576 /* loop over this page */
1577 while (cur < end)
1579 if (! _chm_parse_PMGL_entry(&cur, &ui))
1581 HeapFree(GetProcessHeap(), 0, page_buf);
1582 return 0;
1585 /* check if we should start */
1586 if (! it_has_begun)
1588 if (ui.length == 0 && strncmpiW(ui.path, prefixRectified, prefixLen) == 0)
1589 it_has_begun = 1;
1590 else
1591 continue;
1593 if (ui.path[prefixLen] == '\0')
1594 continue;
1597 /* check if we should stop */
1598 else
1600 if (strncmpiW(ui.path, prefixRectified, prefixLen) != 0)
1602 HeapFree(GetProcessHeap(), 0, page_buf);
1603 return 1;
1607 /* check if we should include this path */
1608 if (lastPathLen != -1)
1610 if (strncmpiW(ui.path, lastPath, lastPathLen) == 0)
1611 continue;
1613 strcpyW(lastPath, ui.path);
1614 lastPathLen = strlenW(lastPath);
1616 /* get the length of the path */
1617 ui_path_len = strlenW(ui.path)-1;
1619 /* check for DIRS */
1620 if (ui.path[ui_path_len] == '/' && !(what & CHM_ENUMERATE_DIRS))
1621 continue;
1623 /* check for FILES */
1624 if (ui.path[ui_path_len] != '/' && !(what & CHM_ENUMERATE_FILES))
1625 continue;
1627 /* check for NORMAL vs. META */
1628 if (ui.path[0] == '/')
1631 /* check for NORMAL vs. SPECIAL */
1632 if (ui.path[1] == '#' || ui.path[1] == '$')
1633 flag = CHM_ENUMERATE_SPECIAL;
1634 else
1635 flag = CHM_ENUMERATE_NORMAL;
1637 else
1638 flag = CHM_ENUMERATE_META;
1639 if (! (what & flag))
1640 continue;
1642 /* call the enumerator */
1644 int status = (*e)(h, &ui, context);
1645 switch (status)
1647 case CHM_ENUMERATOR_FAILURE:
1648 HeapFree(GetProcessHeap(), 0, page_buf);
1649 return 0;
1650 case CHM_ENUMERATOR_CONTINUE:
1651 break;
1652 case CHM_ENUMERATOR_SUCCESS:
1653 HeapFree(GetProcessHeap(), 0, page_buf);
1654 return 1;
1655 default:
1656 break;
1661 /* advance to next page */
1662 curPage = header.block_next;
1665 HeapFree(GetProcessHeap(), 0, page_buf);
1666 return 1;