wined3d: Remove some unneeded context cache members from the device.
[wine/multimedia.git] / dlls / itss / chm_lib.c
blob33420e5be1a7e0f2bdee93ce057b3420a9aa9c49
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 int *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 int *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 int *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 int *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 int *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 int *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 int *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 int *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 int *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 int *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 int *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 int *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 int *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 int 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 free(h->cache_block_indices);
809 h->cache_block_indices = NULL;
811 free(h);
816 * set a parameter on the file handle.
817 * valid parameter types:
818 * CHM_PARAM_MAX_BLOCKS_CACHED:
819 * how many decompressed blocks should be cached? A simple
820 * caching scheme is used, wherein the index of the block is
821 * used as a hash value, and hash collision results in the
822 * invalidation of the previously cached block.
824 void chm_set_param(struct chmFile *h,
825 int paramType,
826 int paramVal)
828 switch (paramType)
830 case CHM_PARAM_MAX_BLOCKS_CACHED:
831 CHM_ACQUIRE_LOCK(h->cache_mutex);
832 if (paramVal != h->cache_num_blocks)
834 UChar **newBlocks;
835 Int64 *newIndices;
836 int i;
838 /* allocate new cached blocks */
839 newBlocks = malloc(paramVal * sizeof (UChar *));
840 newIndices = malloc(paramVal * sizeof (UInt64));
841 for (i=0; i<paramVal; i++)
843 newBlocks[i] = NULL;
844 newIndices[i] = 0;
847 /* re-distribute old cached blocks */
848 if (h->cache_blocks)
850 for (i=0; i<h->cache_num_blocks; i++)
852 int newSlot = (int)(h->cache_block_indices[i] % paramVal);
854 if (h->cache_blocks[i])
856 /* in case of collision, destroy newcomer */
857 if (newBlocks[newSlot])
859 free(h->cache_blocks[i]);
860 h->cache_blocks[i] = NULL;
862 else
864 newBlocks[newSlot] = h->cache_blocks[i];
865 newIndices[newSlot] =
866 h->cache_block_indices[i];
871 free(h->cache_blocks);
872 free(h->cache_block_indices);
875 /* now, set new values */
876 h->cache_blocks = newBlocks;
877 h->cache_block_indices = newIndices;
878 h->cache_num_blocks = paramVal;
880 CHM_RELEASE_LOCK(h->cache_mutex);
881 break;
883 default:
884 break;
889 * helper methods for chm_resolve_object
892 /* skip a compressed dword */
893 static void _chm_skip_cword(UChar **pEntry)
895 while (*(*pEntry)++ >= 0x80)
899 /* skip the data from a PMGL entry */
900 static void _chm_skip_PMGL_entry_data(UChar **pEntry)
902 _chm_skip_cword(pEntry);
903 _chm_skip_cword(pEntry);
904 _chm_skip_cword(pEntry);
907 /* parse a compressed dword */
908 static UInt64 _chm_parse_cword(UChar **pEntry)
910 UInt64 accum = 0;
911 UChar temp;
912 while ((temp=*(*pEntry)++) >= 0x80)
914 accum <<= 7;
915 accum += temp & 0x7f;
918 return (accum << 7) + temp;
921 /* parse a utf-8 string into an ASCII char buffer */
922 static int _chm_parse_UTF8(UChar **pEntry, UInt64 count, WCHAR *path)
924 /* MJM - Modified to return real Unicode strings */
925 while (count != 0)
927 *path++ = (*(*pEntry)++);
928 --count;
931 *path = '\0';
932 return 1;
935 /* parse a PMGL entry into a chmUnitInfo struct; return 1 on success. */
936 static int _chm_parse_PMGL_entry(UChar **pEntry, struct chmUnitInfo *ui)
938 UInt64 strLen;
940 /* parse str len */
941 strLen = _chm_parse_cword(pEntry);
942 if (strLen > CHM_MAX_PATHLEN)
943 return 0;
945 /* parse path */
946 if (! _chm_parse_UTF8(pEntry, strLen, ui->path))
947 return 0;
949 /* parse info */
950 ui->space = (int)_chm_parse_cword(pEntry);
951 ui->start = _chm_parse_cword(pEntry);
952 ui->length = _chm_parse_cword(pEntry);
953 return 1;
956 /* find an exact entry in PMGL; return NULL if we fail */
957 static UChar *_chm_find_in_PMGL(UChar *page_buf,
958 UInt32 block_len,
959 const WCHAR *objPath)
961 /* XXX: modify this to do a binary search using the nice index structure
962 * that is provided for us.
964 struct chmPmglHeader header;
965 UInt32 hremain;
966 UChar *end;
967 UChar *cur;
968 UChar *temp;
969 UInt64 strLen;
970 WCHAR buffer[CHM_MAX_PATHLEN+1];
972 /* figure out where to start and end */
973 cur = page_buf;
974 hremain = _CHM_PMGL_LEN;
975 if (! _unmarshal_pmgl_header(&cur, &hremain, &header))
976 return NULL;
977 end = page_buf + block_len - (header.free_space);
979 /* now, scan progressively */
980 while (cur < end)
982 /* grab the name */
983 temp = cur;
984 strLen = _chm_parse_cword(&cur);
985 if (! _chm_parse_UTF8(&cur, strLen, buffer))
986 return NULL;
988 /* check if it is the right name */
989 if (! strcmpiW(buffer, objPath))
990 return temp;
992 _chm_skip_PMGL_entry_data(&cur);
995 return NULL;
998 /* find which block should be searched next for the entry; -1 if no block */
999 static Int32 _chm_find_in_PMGI(UChar *page_buf,
1000 UInt32 block_len,
1001 const WCHAR *objPath)
1003 /* XXX: modify this to do a binary search using the nice index structure
1004 * that is provided for us
1006 struct chmPmgiHeader header;
1007 UInt32 hremain;
1008 int page=-1;
1009 UChar *end;
1010 UChar *cur;
1011 UInt64 strLen;
1012 WCHAR buffer[CHM_MAX_PATHLEN+1];
1014 /* figure out where to start and end */
1015 cur = page_buf;
1016 hremain = _CHM_PMGI_LEN;
1017 if (! _unmarshal_pmgi_header(&cur, &hremain, &header))
1018 return -1;
1019 end = page_buf + block_len - (header.free_space);
1021 /* now, scan progressively */
1022 while (cur < end)
1024 /* grab the name */
1025 strLen = _chm_parse_cword(&cur);
1026 if (! _chm_parse_UTF8(&cur, strLen, buffer))
1027 return -1;
1029 /* check if it is the right name */
1030 if (strcmpiW(buffer, objPath) > 0)
1031 return page;
1033 /* load next value for path */
1034 page = (int)_chm_parse_cword(&cur);
1037 return page;
1040 /* resolve a particular object from the archive */
1041 int chm_resolve_object(struct chmFile *h,
1042 const WCHAR *objPath,
1043 struct chmUnitInfo *ui)
1046 * XXX: implement caching scheme for dir pages
1049 Int32 curPage;
1051 /* buffer to hold whatever page we're looking at */
1052 UChar *page_buf = HeapAlloc(GetProcessHeap(), 0, h->block_len);
1054 /* starting page */
1055 curPage = h->index_root;
1057 /* until we have either returned or given up */
1058 while (curPage != -1)
1061 /* try to fetch the index page */
1062 if (_chm_fetch_bytes(h, page_buf,
1063 (UInt64)h->dir_offset + (UInt64)curPage*h->block_len,
1064 h->block_len) != h->block_len)
1066 HeapFree(GetProcessHeap(), 0, page_buf);
1067 return CHM_RESOLVE_FAILURE;
1070 /* now, if it is a leaf node: */
1071 if (memcmp(page_buf, _chm_pmgl_marker, 4) == 0)
1073 /* scan block */
1074 UChar *pEntry = _chm_find_in_PMGL(page_buf,
1075 h->block_len,
1076 objPath);
1077 if (pEntry == NULL)
1079 HeapFree(GetProcessHeap(), 0, page_buf);
1080 return CHM_RESOLVE_FAILURE;
1083 /* parse entry and return */
1084 _chm_parse_PMGL_entry(&pEntry, ui);
1085 HeapFree(GetProcessHeap(), 0, page_buf);
1086 return CHM_RESOLVE_SUCCESS;
1089 /* else, if it is a branch node: */
1090 else if (memcmp(page_buf, _chm_pmgi_marker, 4) == 0)
1091 curPage = _chm_find_in_PMGI(page_buf, h->block_len, objPath);
1093 /* else, we are confused. give up. */
1094 else
1096 HeapFree(GetProcessHeap(), 0, page_buf);
1097 return CHM_RESOLVE_FAILURE;
1101 /* didn't find anything. fail. */
1102 HeapFree(GetProcessHeap(), 0, page_buf);
1103 return CHM_RESOLVE_FAILURE;
1107 * utility methods for dealing with compressed data
1110 /* get the bounds of a compressed block. return 0 on failure */
1111 static int _chm_get_cmpblock_bounds(struct chmFile *h,
1112 UInt64 block,
1113 UInt64 *start,
1114 Int64 *len)
1116 UChar buffer[8], *dummy;
1117 UInt32 remain;
1119 /* for all but the last block, use the reset table */
1120 if (block < h->reset_table.block_count-1)
1122 /* unpack the start address */
1123 dummy = buffer;
1124 remain = 8;
1125 if (_chm_fetch_bytes(h, buffer,
1126 (UInt64)h->data_offset
1127 + (UInt64)h->rt_unit.start
1128 + (UInt64)h->reset_table.table_offset
1129 + (UInt64)block*8,
1130 remain) != remain ||
1131 !_unmarshal_uint64(&dummy, &remain, start))
1132 return 0;
1134 /* unpack the end address */
1135 dummy = buffer;
1136 remain = 8;
1137 if (_chm_fetch_bytes(h, buffer,
1138 (UInt64)h->data_offset
1139 + (UInt64)h->rt_unit.start
1140 + (UInt64)h->reset_table.table_offset
1141 + (UInt64)block*8 + 8,
1142 remain) != remain ||
1143 !_unmarshal_int64(&dummy, &remain, len))
1144 return 0;
1147 /* for the last block, use the span in addition to the reset table */
1148 else
1150 /* unpack the start address */
1151 dummy = buffer;
1152 remain = 8;
1153 if (_chm_fetch_bytes(h, buffer,
1154 (UInt64)h->data_offset
1155 + (UInt64)h->rt_unit.start
1156 + (UInt64)h->reset_table.table_offset
1157 + (UInt64)block*8,
1158 remain) != remain ||
1159 !_unmarshal_uint64(&dummy, &remain, start))
1160 return 0;
1162 *len = h->reset_table.compressed_len;
1165 /* compute the length and absolute start address */
1166 *len -= *start;
1167 *start += h->data_offset + h->cn_unit.start;
1169 return 1;
1172 /* decompress the block. must have lzx_mutex. */
1173 static Int64 _chm_decompress_block(struct chmFile *h,
1174 UInt64 block,
1175 UChar **ubuffer)
1177 UChar *cbuffer = HeapAlloc( GetProcessHeap(), 0,
1178 ((unsigned int)h->reset_table.block_len + 6144));
1179 UInt64 cmpStart; /* compressed start */
1180 Int64 cmpLen; /* compressed len */
1181 int indexSlot; /* cache index slot */
1182 UChar *lbuffer; /* local buffer ptr */
1183 UInt32 blockAlign = (UInt32)(block % h->reset_blkcount); /* reset intvl. aln. */
1184 UInt32 i; /* local loop index */
1186 /* let the caching system pull its weight! */
1187 if (block - blockAlign <= h->lzx_last_block &&
1188 block >= h->lzx_last_block)
1189 blockAlign = (block - h->lzx_last_block);
1191 /* check if we need previous blocks */
1192 if (blockAlign != 0)
1194 /* fetch all required previous blocks since last reset */
1195 for (i = blockAlign; i > 0; i--)
1197 UInt32 curBlockIdx = block - i;
1199 /* check if we most recently decompressed the previous block */
1200 if (h->lzx_last_block != curBlockIdx)
1202 if ((curBlockIdx % h->reset_blkcount) == 0)
1204 #ifdef CHM_DEBUG
1205 fprintf(stderr, "***RESET (1)***\n");
1206 #endif
1207 LZXreset(h->lzx_state);
1210 indexSlot = (int)((curBlockIdx) % h->cache_num_blocks);
1211 h->cache_block_indices[indexSlot] = curBlockIdx;
1212 if (! h->cache_blocks[indexSlot])
1213 h->cache_blocks[indexSlot] = malloc( (unsigned int)(h->reset_table.block_len));
1214 lbuffer = h->cache_blocks[indexSlot];
1216 /* decompress the previous block */
1217 #ifdef CHM_DEBUG
1218 fprintf(stderr, "Decompressing block #%4d (EXTRA)\n", curBlockIdx);
1219 #endif
1220 if (!_chm_get_cmpblock_bounds(h, curBlockIdx, &cmpStart, &cmpLen) ||
1221 _chm_fetch_bytes(h, cbuffer, cmpStart, cmpLen) != cmpLen ||
1222 LZXdecompress(h->lzx_state, cbuffer, lbuffer, (int)cmpLen,
1223 (int)h->reset_table.block_len) != DECR_OK)
1225 #ifdef CHM_DEBUG
1226 fprintf(stderr, " (DECOMPRESS FAILED!)\n");
1227 #endif
1228 HeapFree(GetProcessHeap(), 0, cbuffer);
1229 return (Int64)0;
1232 h->lzx_last_block = (int)curBlockIdx;
1236 else
1238 if ((block % h->reset_blkcount) == 0)
1240 #ifdef CHM_DEBUG
1241 fprintf(stderr, "***RESET (2)***\n");
1242 #endif
1243 LZXreset(h->lzx_state);
1247 /* allocate slot in cache */
1248 indexSlot = (int)(block % h->cache_num_blocks);
1249 h->cache_block_indices[indexSlot] = block;
1250 if (! h->cache_blocks[indexSlot])
1251 h->cache_blocks[indexSlot] = malloc( ((unsigned int)h->reset_table.block_len));
1252 lbuffer = h->cache_blocks[indexSlot];
1253 *ubuffer = lbuffer;
1255 /* decompress the block we actually want */
1256 #ifdef CHM_DEBUG
1257 fprintf(stderr, "Decompressing block #%4d (REAL )\n", block);
1258 #endif
1259 if (! _chm_get_cmpblock_bounds(h, block, &cmpStart, &cmpLen) ||
1260 _chm_fetch_bytes(h, cbuffer, cmpStart, cmpLen) != cmpLen ||
1261 LZXdecompress(h->lzx_state, cbuffer, lbuffer, (int)cmpLen,
1262 (int)h->reset_table.block_len) != DECR_OK)
1264 #ifdef CHM_DEBUG
1265 fprintf(stderr, " (DECOMPRESS FAILED!)\n");
1266 #endif
1267 HeapFree(GetProcessHeap(), 0, cbuffer);
1268 return (Int64)0;
1270 h->lzx_last_block = (int)block;
1272 /* XXX: modify LZX routines to return the length of the data they
1273 * decompressed and return that instead, for an extra sanity check.
1275 HeapFree(GetProcessHeap(), 0, cbuffer);
1276 return h->reset_table.block_len;
1279 /* grab a region from a compressed block */
1280 static Int64 _chm_decompress_region(struct chmFile *h,
1281 UChar *buf,
1282 UInt64 start,
1283 Int64 len)
1285 UInt64 nBlock, nOffset;
1286 UInt64 nLen;
1287 UInt64 gotLen;
1288 UChar *ubuffer = NULL;
1290 if (len <= 0)
1291 return (Int64)0;
1293 /* figure out what we need to read */
1294 nBlock = start / h->reset_table.block_len;
1295 nOffset = start % h->reset_table.block_len;
1296 nLen = len;
1297 if (nLen > (h->reset_table.block_len - nOffset))
1298 nLen = h->reset_table.block_len - nOffset;
1300 /* if block is cached, return data from it. */
1301 CHM_ACQUIRE_LOCK(h->lzx_mutex);
1302 CHM_ACQUIRE_LOCK(h->cache_mutex);
1303 if (h->cache_block_indices[nBlock % h->cache_num_blocks] == nBlock &&
1304 h->cache_blocks[nBlock % h->cache_num_blocks] != NULL)
1306 memcpy(buf,
1307 h->cache_blocks[nBlock % h->cache_num_blocks] + nOffset,
1308 (unsigned int)nLen);
1309 CHM_RELEASE_LOCK(h->cache_mutex);
1310 CHM_RELEASE_LOCK(h->lzx_mutex);
1311 return nLen;
1313 CHM_RELEASE_LOCK(h->cache_mutex);
1315 /* data request not satisfied, so... start up the decompressor machine */
1316 if (! h->lzx_state)
1318 int window_size = ffs(h->window_size) - 1;
1319 h->lzx_last_block = -1;
1320 h->lzx_state = LZXinit(window_size);
1323 /* decompress some data */
1324 gotLen = _chm_decompress_block(h, nBlock, &ubuffer);
1325 if (gotLen < nLen)
1326 nLen = gotLen;
1327 memcpy(buf, ubuffer+nOffset, (unsigned int)nLen);
1328 CHM_RELEASE_LOCK(h->lzx_mutex);
1329 return nLen;
1332 /* retrieve (part of) an object */
1333 LONGINT64 chm_retrieve_object(struct chmFile *h,
1334 struct chmUnitInfo *ui,
1335 unsigned char *buf,
1336 LONGUINT64 addr,
1337 LONGINT64 len)
1339 /* must be valid file handle */
1340 if (h == NULL)
1341 return (Int64)0;
1343 /* starting address must be in correct range */
1344 if (addr < 0 || addr >= ui->length)
1345 return (Int64)0;
1347 /* clip length */
1348 if (addr + len > ui->length)
1349 len = ui->length - addr;
1351 /* if the file is uncompressed, it's simple */
1352 if (ui->space == CHM_UNCOMPRESSED)
1354 /* read data */
1355 return _chm_fetch_bytes(h,
1356 buf,
1357 (UInt64)h->data_offset + (UInt64)ui->start + (UInt64)addr,
1358 len);
1361 /* else if the file is compressed, it's a little trickier */
1362 else /* ui->space == CHM_COMPRESSED */
1364 Int64 swath=0, total=0;
1366 /* if compression is not enabled for this file... */
1367 if (! h->compression_enabled)
1368 return total;
1370 do {
1372 /* swill another mouthful */
1373 swath = _chm_decompress_region(h, buf, ui->start + addr, len);
1375 /* if we didn't get any... */
1376 if (swath == 0)
1377 return total;
1379 /* update stats */
1380 total += swath;
1381 len -= swath;
1382 addr += swath;
1383 buf += swath;
1385 } while (len != 0);
1387 return total;
1391 /* enumerate the objects in the .chm archive */
1392 int chm_enumerate(struct chmFile *h,
1393 int what,
1394 CHM_ENUMERATOR e,
1395 void *context)
1397 Int32 curPage;
1399 /* buffer to hold whatever page we're looking at */
1400 UChar *page_buf = HeapAlloc(GetProcessHeap(), 0, (unsigned int)h->block_len);
1401 struct chmPmglHeader header;
1402 UChar *end;
1403 UChar *cur;
1404 unsigned int lenRemain;
1405 UInt64 ui_path_len;
1407 /* the current ui */
1408 struct chmUnitInfo ui;
1409 int flag;
1411 /* starting page */
1412 curPage = h->index_head;
1414 /* until we have either returned or given up */
1415 while (curPage != -1)
1418 /* try to fetch the index page */
1419 if (_chm_fetch_bytes(h,
1420 page_buf,
1421 (UInt64)h->dir_offset + (UInt64)curPage*h->block_len,
1422 h->block_len) != h->block_len)
1424 HeapFree(GetProcessHeap(), 0, page_buf);
1425 return 0;
1428 /* figure out start and end for this page */
1429 cur = page_buf;
1430 lenRemain = _CHM_PMGL_LEN;
1431 if (! _unmarshal_pmgl_header(&cur, &lenRemain, &header))
1433 HeapFree(GetProcessHeap(), 0, page_buf);
1434 return 0;
1436 end = page_buf + h->block_len - (header.free_space);
1438 /* loop over this page */
1439 while (cur < end)
1441 if (! _chm_parse_PMGL_entry(&cur, &ui))
1443 HeapFree(GetProcessHeap(), 0, page_buf);
1444 return 0;
1447 /* get the length of the path */
1448 ui_path_len = strlenW(ui.path)-1;
1450 /* check for DIRS */
1451 if (ui.path[ui_path_len] == '/' && !(what & CHM_ENUMERATE_DIRS))
1452 continue;
1454 /* check for FILES */
1455 if (ui.path[ui_path_len] != '/' && !(what & CHM_ENUMERATE_FILES))
1456 continue;
1458 /* check for NORMAL vs. META */
1459 if (ui.path[0] == '/')
1462 /* check for NORMAL vs. SPECIAL */
1463 if (ui.path[1] == '#' || ui.path[1] == '$')
1464 flag = CHM_ENUMERATE_SPECIAL;
1465 else
1466 flag = CHM_ENUMERATE_NORMAL;
1468 else
1469 flag = CHM_ENUMERATE_META;
1470 if (! (what & flag))
1471 continue;
1473 /* call the enumerator */
1475 int status = (*e)(h, &ui, context);
1476 switch (status)
1478 case CHM_ENUMERATOR_FAILURE:
1479 HeapFree(GetProcessHeap(), 0, page_buf);
1480 return 0;
1481 case CHM_ENUMERATOR_CONTINUE:
1482 break;
1483 case CHM_ENUMERATOR_SUCCESS:
1484 HeapFree(GetProcessHeap(), 0, page_buf);
1485 return 1;
1486 default:
1487 break;
1492 /* advance to next page */
1493 curPage = header.block_next;
1496 HeapFree(GetProcessHeap(), 0, page_buf);
1497 return 1;
1500 int chm_enumerate_dir(struct chmFile *h,
1501 const WCHAR *prefix,
1502 int what,
1503 CHM_ENUMERATOR e,
1504 void *context)
1507 * XXX: do this efficiently (i.e. using the tree index)
1510 Int32 curPage;
1512 /* buffer to hold whatever page we're looking at */
1513 UChar *page_buf = HeapAlloc(GetProcessHeap(), 0, (unsigned int)h->block_len);
1514 struct chmPmglHeader header;
1515 UChar *end;
1516 UChar *cur;
1517 unsigned int lenRemain;
1519 /* set to 1 once we've started */
1520 int it_has_begun=0;
1522 /* the current ui */
1523 struct chmUnitInfo ui;
1524 int flag;
1525 UInt64 ui_path_len;
1527 /* the length of the prefix */
1528 WCHAR prefixRectified[CHM_MAX_PATHLEN+1];
1529 int prefixLen;
1530 WCHAR lastPath[CHM_MAX_PATHLEN];
1531 int lastPathLen;
1533 /* starting page */
1534 curPage = h->index_head;
1536 /* initialize pathname state */
1537 lstrcpynW(prefixRectified, prefix, CHM_MAX_PATHLEN);
1538 prefixLen = strlenW(prefixRectified);
1539 if (prefixLen != 0)
1541 if (prefixRectified[prefixLen-1] != '/')
1543 prefixRectified[prefixLen] = '/';
1544 prefixRectified[prefixLen+1] = '\0';
1545 ++prefixLen;
1548 lastPath[0] = '\0';
1549 lastPathLen = -1;
1551 /* until we have either returned or given up */
1552 while (curPage != -1)
1555 /* try to fetch the index page */
1556 if (_chm_fetch_bytes(h,
1557 page_buf,
1558 (UInt64)h->dir_offset + (UInt64)curPage*h->block_len,
1559 h->block_len) != h->block_len)
1561 HeapFree(GetProcessHeap(), 0, page_buf);
1562 return 0;
1565 /* figure out start and end for this page */
1566 cur = page_buf;
1567 lenRemain = _CHM_PMGL_LEN;
1568 if (! _unmarshal_pmgl_header(&cur, &lenRemain, &header))
1570 HeapFree(GetProcessHeap(), 0, page_buf);
1571 return 0;
1573 end = page_buf + h->block_len - (header.free_space);
1575 /* loop over this page */
1576 while (cur < end)
1578 if (! _chm_parse_PMGL_entry(&cur, &ui))
1580 HeapFree(GetProcessHeap(), 0, page_buf);
1581 return 0;
1584 /* check if we should start */
1585 if (! it_has_begun)
1587 if (ui.length == 0 && strncmpiW(ui.path, prefixRectified, prefixLen) == 0)
1588 it_has_begun = 1;
1589 else
1590 continue;
1592 if (ui.path[prefixLen] == '\0')
1593 continue;
1596 /* check if we should stop */
1597 else
1599 if (strncmpiW(ui.path, prefixRectified, prefixLen) != 0)
1601 HeapFree(GetProcessHeap(), 0, page_buf);
1602 return 1;
1606 /* check if we should include this path */
1607 if (lastPathLen != -1)
1609 if (strncmpiW(ui.path, lastPath, lastPathLen) == 0)
1610 continue;
1612 strcpyW(lastPath, ui.path);
1613 lastPathLen = strlenW(lastPath);
1615 /* get the length of the path */
1616 ui_path_len = strlenW(ui.path)-1;
1618 /* check for DIRS */
1619 if (ui.path[ui_path_len] == '/' && !(what & CHM_ENUMERATE_DIRS))
1620 continue;
1622 /* check for FILES */
1623 if (ui.path[ui_path_len] != '/' && !(what & CHM_ENUMERATE_FILES))
1624 continue;
1626 /* check for NORMAL vs. META */
1627 if (ui.path[0] == '/')
1630 /* check for NORMAL vs. SPECIAL */
1631 if (ui.path[1] == '#' || ui.path[1] == '$')
1632 flag = CHM_ENUMERATE_SPECIAL;
1633 else
1634 flag = CHM_ENUMERATE_NORMAL;
1636 else
1637 flag = CHM_ENUMERATE_META;
1638 if (! (what & flag))
1639 continue;
1641 /* call the enumerator */
1643 int status = (*e)(h, &ui, context);
1644 switch (status)
1646 case CHM_ENUMERATOR_FAILURE:
1647 HeapFree(GetProcessHeap(), 0, page_buf);
1648 return 0;
1649 case CHM_ENUMERATOR_CONTINUE:
1650 break;
1651 case CHM_ENUMERATOR_SUCCESS:
1652 HeapFree(GetProcessHeap(), 0, page_buf);
1653 return 1;
1654 default:
1655 break;
1660 /* advance to next page */
1661 curPage = header.block_next;
1664 HeapFree(GetProcessHeap(), 0, page_buf);
1665 return 1;