2 * LZ Decompression functions
4 * Copyright 1996 Marcus Meissner
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 * The LZ (Lempel Ziv) decompression was used in win16 installation programs.
23 * It is a simple tabledriven decompression engine, the algorithm is not
24 * documented as far as I know. WINE does not contain a compressor for
27 * The implementation is complete and there have been no reports of failures
32 * o Check whether the return values are correct
40 #include <sys/types.h>
51 #include "wine/unicode.h"
52 #include "wine/debug.h"
54 WINE_DEFAULT_DEBUG_CHANNEL(file);
56 /* The readahead length of the decompressor. Reading single bytes
57 * using _lread() would be SLOW.
61 #define LZ_MAGIC_LEN 8
62 #define LZ_HEADER_LEN 14
64 /* Format of first 14 byte of LZ compressed file */
66 BYTE magic[LZ_MAGIC_LEN];
71 static const BYTE LZMagic[LZ_MAGIC_LEN]={'S','Z','D','D',0x88,0xf0,0x27,0x33};
73 #define LZ_TABLE_SIZE 0x1000
76 HFILE realfd; /* the real filedescriptor */
77 CHAR lastchar; /* the last char of the filename */
79 DWORD reallength; /* the decompressed length of the file */
80 DWORD realcurrent; /* the position the decompressor currently is */
81 DWORD realwanted; /* the position the user wants to read from */
83 BYTE table[LZ_TABLE_SIZE]; /* the rotating LZ table */
84 UINT curtabent; /* CURrent TABle ENTry */
86 BYTE stringlen; /* length and position of current string */
87 DWORD stringpos; /* from stringtable */
90 WORD bytetype; /* bitmask within blocks */
92 BYTE *get; /* GETLEN bytes */
93 DWORD getcur; /* current read */
94 DWORD getlen; /* length last got */
97 #define MAX_LZSTATES 16
98 static struct lzstate *lzstates[MAX_LZSTATES];
100 #define LZ_MIN_HANDLE 0x400
101 #define IS_LZ_HANDLE(h) (((h) >= LZ_MIN_HANDLE) && ((h) < LZ_MIN_HANDLE+MAX_LZSTATES))
102 #define GET_LZ_STATE(h) (IS_LZ_HANDLE(h) ? lzstates[(h)-LZ_MIN_HANDLE] : NULL)
104 /* reads one compressed byte, including buffering */
105 #define GET(lzs,b) _lzget(lzs,&b)
106 #define GET_FLUSH(lzs) lzs->getcur=lzs->getlen;
109 _lzget(struct lzstate *lzs,BYTE *b) {
110 if (lzs->getcur<lzs->getlen) {
111 *b = lzs->get[lzs->getcur++];
114 int ret = _lread(lzs->realfd,lzs->get,GETLEN);
115 if (ret==HFILE_ERROR)
125 /* internal function, reads lzheader
126 * returns BADINHANDLE for non filedescriptors
127 * return 0 for file not compressed using LZ
128 * return UNKNOWNALG for unknown algorithm
129 * returns lzfileheader in *head
131 static INT read_header(HFILE fd,struct lzfileheader *head)
133 BYTE buf[LZ_HEADER_LEN];
135 if (_llseek(fd,0,SEEK_SET)==-1)
136 return LZERROR_BADINHANDLE;
138 /* We can't directly read the lzfileheader struct due to
139 * structure element alignment
141 if (_lread(fd,buf,LZ_HEADER_LEN)<LZ_HEADER_LEN)
143 memcpy(head->magic,buf,LZ_MAGIC_LEN);
144 memcpy(&(head->compressiontype),buf+LZ_MAGIC_LEN,1);
145 memcpy(&(head->lastchar),buf+LZ_MAGIC_LEN+1,1);
147 /* FIXME: consider endianess on non-intel architectures */
148 memcpy(&(head->reallength),buf+LZ_MAGIC_LEN+2,4);
150 if (memcmp(head->magic,LZMagic,LZ_MAGIC_LEN))
152 if (head->compressiontype!='A')
153 return LZERROR_UNKNOWNALG;
158 /***********************************************************************
159 * LZStart (KERNEL32.@)
161 INT WINAPI LZStart(void)
168 /***********************************************************************
169 * LZInit (KERNEL32.@)
171 * initializes internal decompression buffers, returns lzfiledescriptor.
172 * (return value the same as hfSrc, if hfSrc is not compressed)
173 * on failure, returns error code <0
174 * lzfiledescriptors range from 0x400 to 0x410 (only 16 open files per process)
176 * since _llseek uses the same types as libc.lseek, we just use the macros of
179 HFILE WINAPI LZInit( HFILE hfSrc )
182 struct lzfileheader head;
187 TRACE("(%d)\n",hfSrc);
188 ret=read_header(hfSrc,&head);
190 _llseek(hfSrc,0,SEEK_SET);
191 return ret?ret:hfSrc;
193 for (i = 0; i < MAX_LZSTATES; i++) if (!lzstates[i]) break;
194 if (i == MAX_LZSTATES) return LZERROR_GLOBALLOC;
195 lzstates[i] = lzs = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*lzs) );
196 if(lzs == NULL) return LZERROR_GLOBALLOC;
199 lzs->lastchar = head.lastchar;
200 lzs->reallength = head.reallength;
202 lzs->get = HeapAlloc( GetProcessHeap(), 0, GETLEN );
206 if(lzs->get == NULL) {
207 HeapFree(GetProcessHeap(), 0, lzs);
209 return LZERROR_GLOBALLOC;
212 /* Yes, preinitialize with spaces */
213 memset(lzs->table,' ',LZ_TABLE_SIZE);
214 /* Yes, start 16 byte from the END of the table */
215 lzs->curtabent = 0xff0;
216 return LZ_MIN_HANDLE + i;
220 /***********************************************************************
221 * LZDone (KERNEL32.@)
223 void WINAPI LZDone(void)
229 /***********************************************************************
230 * GetExpandedNameA (KERNEL32.@)
232 * gets the full filename of the compressed file 'in' by opening it
233 * and reading the header
235 * "file." is being translated to "file"
236 * "file.bl_" (with lastchar 'a') is being translated to "file.bla"
237 * "FILE.BL_" (with lastchar 'a') is being translated to "FILE.BLA"
240 INT WINAPI GetExpandedNameA( LPSTR in, LPSTR out )
242 struct lzfileheader head;
245 INT fnislowercased,ret,len;
249 fd=OpenFile(in,&ofs,OF_READ);
251 return (INT)(INT16)LZERROR_BADINHANDLE;
253 ret=read_header(fd,&head);
255 /* not a LZ compressed file, so the expanded name is the same
256 * as the input name */
262 /* look for directory prefix and skip it. */
264 while (NULL!=(t=strpbrk(s,"/\\:")))
267 /* now mangle the basename */
269 /* FIXME: hmm. shouldn't happen? */
270 WARN("Specified a directory or what? (%s)\n",in);
274 /* see if we should use lowercase or uppercase on the last char */
282 fnislowercased=islower(*t);
285 if (isalpha(head.lastchar)) {
287 head.lastchar=tolower(head.lastchar);
289 head.lastchar=toupper(head.lastchar);
292 /* now look where to replace the last character */
293 if (NULL!=(t=strchr(s,'.'))) {
299 t[len]=head.lastchar;
301 } /* else no modification necessary */
307 /***********************************************************************
308 * GetExpandedNameW (KERNEL32.@)
310 INT WINAPI GetExpandedNameW( LPWSTR in, LPWSTR out )
313 DWORD len = WideCharToMultiByte( CP_ACP, 0, in, -1, NULL, 0, NULL, NULL );
314 char *xin = HeapAlloc( GetProcessHeap(), 0, len );
315 char *xout = HeapAlloc( GetProcessHeap(), 0, len+3 );
316 WideCharToMultiByte( CP_ACP, 0, in, -1, xin, len, NULL, NULL );
317 if ((ret = GetExpandedNameA( xin, xout )) > 0)
318 MultiByteToWideChar( CP_ACP, 0, xout, -1, out, strlenW(in)+4 );
319 HeapFree( GetProcessHeap(), 0, xin );
320 HeapFree( GetProcessHeap(), 0, xout );
325 /***********************************************************************
326 * LZRead (KERNEL32.@)
328 INT WINAPI LZRead( HFILE fd, LPSTR vbuf, INT toread )
335 TRACE("(%d,%p,%d)\n",fd,buf,toread);
337 if (!(lzs = GET_LZ_STATE(fd))) return _lread(fd,buf,toread);
339 /* The decompressor itself is in a define, cause we need it twice
340 * in this function. (the decompressed byte will be in b)
342 #define DECOMPRESS_ONE_BYTE \
343 if (lzs->stringlen) { \
344 b = lzs->table[lzs->stringpos]; \
345 lzs->stringpos = (lzs->stringpos+1)&0xFFF; \
348 if (!(lzs->bytetype&0x100)) { \
350 return toread-howmuch; \
351 lzs->bytetype = b|0xFF00; \
353 if (lzs->bytetype & 1) { \
355 return toread-howmuch; \
359 if (1!=GET(lzs,b1)) \
360 return toread-howmuch; \
361 if (1!=GET(lzs,b2)) \
362 return toread-howmuch; \
366 * where CAB is the stringoffset in the table\
367 * and D+3 is the len of the string \
369 lzs->stringpos = b1|((b2&0xf0)<<4); \
370 lzs->stringlen = (b2&0xf)+2; \
371 /* 3, but we use a byte already below ... */\
372 b = lzs->table[lzs->stringpos];\
373 lzs->stringpos = (lzs->stringpos+1)&0xFFF;\
377 /* store b in table */ \
378 lzs->table[lzs->curtabent++]= b; \
379 lzs->curtabent &= 0xFFF; \
382 /* if someone has seeked, we have to bring the decompressor
385 if (lzs->realcurrent!=lzs->realwanted) {
386 /* if the wanted position is before the current position
387 * I see no easy way to unroll ... We have to restart at
388 * the beginning. *sigh*
390 if (lzs->realcurrent>lzs->realwanted) {
391 /* flush decompressor state */
392 _llseek(lzs->realfd,LZ_HEADER_LEN,SEEK_SET);
397 memset(lzs->table,' ',LZ_TABLE_SIZE);
398 lzs->curtabent = 0xFF0;
400 while (lzs->realcurrent<lzs->realwanted) {
412 #undef DECOMPRESS_ONE_BYTE
416 /***********************************************************************
417 * LZSeek (KERNEL32.@)
419 LONG WINAPI LZSeek( HFILE fd, LONG off, INT type )
424 TRACE("(%d,%d,%d)\n",fd,off,type);
425 /* not compressed? just use normal _llseek() */
426 if (!(lzs = GET_LZ_STATE(fd))) return _llseek(fd,off,type);
427 newwanted = lzs->realwanted;
429 case 1: /* SEEK_CUR */
432 case 2: /* SEEK_END */
433 newwanted = lzs->reallength-off;
435 default:/* SEEK_SET */
439 if (newwanted>lzs->reallength)
440 return LZERROR_BADVALUE;
442 return LZERROR_BADVALUE;
443 lzs->realwanted = newwanted;
448 /***********************************************************************
449 * LZCopy (KERNEL32.@)
451 * Copies everything from src to dest
452 * if src is a LZ compressed file, it will be uncompressed.
453 * will return the number of bytes written to dest or errors.
455 LONG WINAPI LZCopy( HFILE src, HFILE dest )
457 int usedlzinit = 0, ret, wret;
459 HFILE oldsrc = src, srcfd;
464 /* we need that weird typedef, for i can't seem to get function pointer
465 * casts right. (Or they probably just do not like WINAPI in general)
467 typedef UINT (WINAPI *_readfun)(HFILE,LPVOID,UINT);
471 TRACE("(%d,%d)\n",src,dest);
472 if (!IS_LZ_HANDLE(src)) {
474 if ((INT)src <= 0) return 0;
475 if (src != oldsrc) usedlzinit=1;
478 /* not compressed? just copy */
479 if (!IS_LZ_HANDLE(src))
482 xread=(_readfun)LZRead;
485 ret=xread(src,buf,BUFLEN);
494 wret = _lwrite(dest,buf,ret);
496 return LZERROR_WRITE;
499 /* Maintain the timestamp of source file to destination file */
500 srcfd = (!(lzs = GET_LZ_STATE(src))) ? src : lzs->realfd;
501 GetFileTime( LongToHandle(srcfd), NULL, NULL, &filetime );
502 SetFileTime( LongToHandle(dest), NULL, NULL, &filetime );
511 /* reverses GetExpandedPathname */
512 static LPSTR LZEXPAND_MangleName( LPCSTR fn )
515 char *mfn = HeapAlloc( GetProcessHeap(), 0, strlen(fn) + 3 ); /* "._" and \0 */
516 if(mfn == NULL) return NULL;
518 if (!(p = strrchr( mfn, '\\' ))) p = mfn;
519 if ((p = strchr( p, '.' )))
522 if (strlen(p) < 3) strcat( p, "_" ); /* append '_' */
523 else p[strlen(p)-1] = '_'; /* replace last character */
525 else strcat( mfn, "._" ); /* append "._" */
530 /***********************************************************************
531 * LZOpenFileA (KERNEL32.@)
533 * Opens a file. If not compressed, open it as a normal file.
535 HFILE WINAPI LZOpenFileA( LPSTR fn, LPOFSTRUCT ofs, WORD mode )
539 TRACE("(%s,%p,%d)\n",fn,ofs,mode);
540 /* 0x70 represents all OF_SHARE_* flags, ignore them for the check */
541 fd=OpenFile(fn,ofs,mode);
544 LPSTR mfn = LZEXPAND_MangleName(fn);
545 fd = OpenFile(mfn,ofs,mode);
546 HeapFree( GetProcessHeap(), 0, mfn );
548 if ((mode&~0x70)!=OF_READ)
553 if ((INT)cfd <= 0) return fd;
558 /***********************************************************************
559 * LZOpenFileW (KERNEL32.@)
561 HFILE WINAPI LZOpenFileW( LPWSTR fn, LPOFSTRUCT ofs, WORD mode )
564 DWORD len = WideCharToMultiByte( CP_ACP, 0, fn, -1, NULL, 0, NULL, NULL );
565 LPSTR xfn = HeapAlloc( GetProcessHeap(), 0, len );
566 WideCharToMultiByte( CP_ACP, 0, fn, -1, xfn, len, NULL, NULL );
567 ret = LZOpenFileA(xfn,ofs,mode);
568 HeapFree( GetProcessHeap(), 0, xfn );
573 /***********************************************************************
574 * LZClose (KERNEL32.@)
576 void WINAPI LZClose( HFILE fd )
581 if (!(lzs = GET_LZ_STATE(fd))) _lclose(fd);
584 HeapFree( GetProcessHeap(), 0, lzs->get );
585 CloseHandle( LongToHandle(lzs->realfd) );
586 lzstates[fd - LZ_MIN_HANDLE] = NULL;
587 HeapFree( GetProcessHeap(), 0, lzs );