-
Notifications
You must be signed in to change notification settings - Fork 0
/
arc_lzh.c
547 lines (503 loc) · 11.2 KB
/
arc_lzh.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
/*
Copyright (C) 2000 Masanao Izumo <mo@goice.co.jp>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "config.h"
#include <stdio.h>
#ifndef NO_STRING_H
#include <string.h>
#else
#include <strings.h>
#endif
#include <ctype.h>
#include "libarc/arc.h"
#define boolean int
#ifndef FALSE
# define FALSE 0
#endif
#ifndef TRUE
# define TRUE 1
#endif
#define DELIM ('/')
#define DELIM2 (0xff)
#define LZHEADER_STRAGE 4096
#define FILENAME_LENGTH 1024
#define I_HEADER_SIZE 0
#define I_HEADER_CHECKSUM 1
#define I_METHOD 2
#define I_PACKED_SIZE 7
#define I_ORIGINAL_SIZE 11
#define I_LAST_MODIFIED_STAMP 15
#define I_ATTRIBUTE 19
#define I_HEADER_LEVEL 20
#define I_NAME_LENGTH 21
#define I_NAME 22
#define EXTEND_GENERIC 0
#define EXTEND_UNIX 'U'
#define EXTEND_MSDOS 'M'
#define EXTEND_MACOS 'm'
#define EXTEND_OS9 '9'
#define EXTEND_OS2 '2'
#define EXTEND_OS68K 'K'
#define EXTEND_OS386 '3' /* OS-9000??? */
#define EXTEND_HUMAN 'H'
#define EXTEND_CPM 'C'
#define EXTEND_FLEX 'F'
#define EXTEND_RUNSER 'R'
/* this OS type is not official */
#define EXTEND_TOWNSOS 'T'
#define EXTEND_XOSK 'X'
static char *get_ptr;
#define setup_get(PTR) (get_ptr = (PTR))
#define get_byte() (*get_ptr++ & 0xff)
#define skip_byte() get_ptr++
static unsigned short get_word(void)
{
int b0, b1;
b0 = get_byte();
b1 = get_byte();
return (b1 << 8) + b0;
}
static long get_longword(void)
{
long b0, b1, b2, b3;
b0 = get_byte();
b1 = get_byte();
b2 = get_byte();
b3 = get_byte();
return (b3 << 24) + (b2 << 16) + (b1 << 8) + b0;
}
static void msdos_to_unix_filename(char *name, int len)
{
int i;
#ifdef MULTIBYTE_CHAR
for(i = 0; i < len; i ++)
{
int c1, c2;
c1 = (int)(unsigned char)name[i];
c2 = (int)(unsigned char)name[i+1];
if(MULTIBYTE_FIRST_P(c1) && MULTIBYTE_SECOND_P(c2))
i++;
else if(c1 == '\\')
name[i] = '/';
else if(isupper(c1))
name[i] = tolower(c1);
}
#else
for(i = 0; i < len; i ++)
{
int c;
c = (int)(unsigned char)name[i];
if(c == '\\')
name[i] = '/';
else if(isupper(c))
name[i] = tolower(c);
}
#endif
}
static void generic_to_unix_filename(char *name, int len)
{
register int i;
boolean lower_case_used = FALSE;
#ifdef MULTIBYTE_CHAR
for(i = 0; i < len; i ++)
{
int c1, c2;
c1 = (int)(unsigned char)name[i];
c2 = (int)(unsigned char)name[i+1];
if(MULTIBYTE_FIRST_P(c1) && MULTIBYTE_SECOND_P(c2))
i ++;
else if(islower(c1))
{
lower_case_used = TRUE;
break;
}
}
for(i = 0; i < len; i ++)
{
int c1, c2;
c1 = (int)(unsigned char)name[i];
c2 = (int)(unsigned char)name[i+1];
if(MULTIBYTE_FIRST_P(c1) && MULTIBYTE_SECOND_P(c2))
i++;
else if(c1 == '\\')
name[i] = '/';
else if(!lower_case_used && isupper(c1))
name[i] = tolower(c1);
}
#else
for(i = 0; i < len; i ++)
{
int c;
c = (int)(unsigned char)name[i];
if(islower(c))
{
lower_case_used = TRUE;
break;
}
}
for(i = 0; i < len; i ++)
{
int c;
c = (int)(unsigned char)name[i];
if(c == '\\')
name[i] = '/';
else if(!lower_case_used && isupper(c))
name[i] = tolower(c);
}
#endif
}
static void macos_to_unix_filename(char *name, int len)
{
register int i;
for(i = 0; i < len; i ++)
{
if(name[i] == ':')
name[i] = '/';
else if(name[i] == '/')
name[i] = ':';
}
}
#ifdef MULTIBYTE_CHAR
#define iskanji(c) (c & 0x80)
#endif /* MULTIBYTE_CHAR */
static unsigned char *convdelim(unsigned char *path, unsigned char delim)
{
unsigned char c;
unsigned char *p;
#ifdef MULTIBYTE_CHAR
int kflg;
kflg = 0;
#endif
for(p = path; (c = *p) != 0; p++)
{
#ifdef MULTIBYTE_CHAR
if(kflg)
{
kflg = 0;
}
else if(iskanji(c))
{
kflg = 1;
}
else
#endif
if(c == '\\' || c == DELIM || c == DELIM2)
{
*p = delim;
path = p + 1;
}
}
return path;
}
ArchiveEntryNode *next_lzh_entry(void)
{
ArchiveEntryNode *entry;
URL url;
int header_size;
char data[LZHEADER_STRAGE];
char dirname[FILENAME_LENGTH];
char filename[FILENAME_LENGTH];
int dir_length, name_length;
int i;
char *ptr;
int header_level;
char method_id[5];
long compsize, origsize;
int extend_type;
int hdrsiz;
int macbin_check;
extern char *lzh_methods[];
url = arc_handler.url;
macbin_check = (arc_handler.counter == 0);
retry_read:
dir_length = 0;
name_length = 0;
#if 0
if((header_size = url_getc(url)) == EOF)
return NULL;
if(header_size == 0)
{
if(macbin_check)
{
macbin_check = 0;
url_skip(url, 128-1);
if(arc_handler.isfile)
arc_handler.pos += 128;
goto retry_read;
}
return NULL;
}
macbin_check = 0;
if(url_read(url, data + I_HEADER_CHECKSUM,
header_size - 1) < header_size - 1)
return NULL;
#else /* a little cleverer lzh check */
if(macbin_check){
// for(i=0;i<LZHEADER_STRAGE;i++){
for(i=0;i<1024;i++){
if((header_size = url_getc(url)) == EOF)
return NULL;
*(data + i) = header_size;
if(i >= 6){
if(*(data + i - 4) == '-'
&& *(data + i - 3) == 'l'
&& *(data + i - 2) == 'h'
&& *(data + i - 0) == '-')
{
int j;
if(arc_handler.isfile)
arc_handler.pos += i - 6;
for(j = 0; j<= 6; j++)
*(data + j) = *(data + i - 6 + j);
header_size = (int)(unsigned char)(*(data + i - 6));
if(header_size == 0)
return NULL;
if(url_read(url, data + 7, header_size - 7) < header_size - 7)
return NULL;
break;
}
}
}
if(i >= LZHEADER_STRAGE)
return NULL;
} else {
if((header_size = url_getc(url)) == EOF)
return NULL;
if(url_read(url, data + I_HEADER_CHECKSUM,
header_size - 1) < header_size - 1)
return NULL;
}
macbin_check = 0;
#endif
hdrsiz = header_size;
setup_get(data + I_HEADER_LEVEL);
header_level = get_byte();
if(header_level != 2)
{
if(url_read(url, data + header_size, 2) < 2)
return NULL;
hdrsiz += 2;
}
setup_get(data + I_HEADER_CHECKSUM);
skip_byte(); /* checksum */
memcpy(method_id, data + I_METHOD, sizeof(method_id));
setup_get(data + I_PACKED_SIZE);
compsize = get_longword();
origsize = get_longword();
get_longword(); /* last_modified_stamp */
skip_byte(); /* attribute */
if((header_level = get_byte()) != 2)
{
name_length = get_byte();
for(i = 0; i < name_length; i ++)
filename[i] =(char)get_byte();
filename[name_length] = '\0';
}
if(header_size - name_length >= 24)
{ /* EXTEND FORMAT */
get_word(); /* crc */
extend_type = get_byte();
}
else if(header_size - name_length == 22)
{ /* Generic with CRC */
get_word(); /* crc */
extend_type = EXTEND_GENERIC;
}
else if(header_size - name_length == 20)
{ /* Generic no CRC */
extend_type = EXTEND_GENERIC;
}
else
return NULL;
if(extend_type == EXTEND_UNIX && header_level == 0)
{
skip_byte(); /* minor_version */
get_longword(); /* unix_last_modified_stamp */
get_word(); /* unix_mode */
get_word(); /* unix_uid */
get_word(); /* unix_gid */
goto parse_ok;
}
if(header_level > 0)
{
/* Extend Header */
if(header_level != 2)
setup_get(data + header_size);
ptr = get_ptr;
while((header_size = get_word()) != 0)
{
if(header_level != 2)
{
if(data + LZHEADER_STRAGE - get_ptr < header_size)
return NULL;
if(url_read(url, get_ptr, header_size) < header_size)
return NULL;
hdrsiz += header_size;
}
switch(get_byte())
{
case 0:
/*
* header crc
*/
setup_get(get_ptr + header_size - 3);
break;
case 1:
/*
* filename
*/
name_length = header_size - 3;
if(name_length >= sizeof(filename) - 1)
return NULL;
for(i = 0; i < name_length; i++)
filename[i] =(char)get_byte ();
filename[name_length] = '\0';
break;
case 2:
/*
* directory
*/
dir_length = header_size - 3;
if(dir_length >= sizeof(dirname) - 1)
return NULL;
for(i = 0; i < dir_length; i++)
dirname[i] = (char)get_byte ();
dirname[dir_length] = '\0';
convdelim((unsigned char *)dirname, DELIM);
break;
case 0x40:
/*
* MS-DOS attribute
*/
if(extend_type == EXTEND_MSDOS ||
extend_type == EXTEND_HUMAN ||
extend_type == EXTEND_GENERIC)
get_word(); /* attribute */
break;
case 0x50:
/*
* UNIX permission
*/
if(extend_type == EXTEND_UNIX)
get_word(); /* unix_mode */
break;
case 0x51:
/*
* UNIX gid and uid
*/
if(extend_type == EXTEND_UNIX)
{
get_word(); /* unix_gid */
get_word(); /* unix_uid */
}
break;
case 0x52:
/*
* UNIX group name
*/
setup_get(get_ptr + header_size - 3);
break;
case 0x53:
/*
* UNIX user name
*/
setup_get(get_ptr + header_size - 3);
break;
case 0x54:
/*
* UNIX last modified time
*/
if(extend_type == EXTEND_UNIX)
get_longword(); /* unix_last_modified_stamp */
break;
default:
/*
* other headers
*/
setup_get(get_ptr + header_size - 3);
break;
}
}
if(header_level != 2 && get_ptr - ptr != 2)
{
compsize -= get_ptr - ptr - 2;
header_size += get_ptr - ptr - 2;
}
}
if(dir_length)
{
name_length += dir_length;
if(name_length >= sizeof(filename) - 1)
return NULL;
strcat(dirname, filename);
strcpy(filename, dirname);
}
switch(extend_type)
{
case EXTEND_MSDOS:
msdos_to_unix_filename(filename, name_length);
case EXTEND_HUMAN:
; /* ignored */
break;
#ifdef OSK
case EXTEND_OS68K:
case EXTEND_XOSK:
#endif
case EXTEND_UNIX:
break;
case EXTEND_MACOS:
macos_to_unix_filename(filename, name_length);
break;
default:
generic_to_unix_filename(filename, name_length);
}
parse_ok:
if(strncmp("-lhd-", method_id, 5) == 0)
{
if(arc_handler.isfile)
arc_handler.pos += hdrsiz;
goto retry_read; /* Skip directory entry */
}
for(i = 0; lzh_methods[i]; i++)
if(strncmp(method_id, lzh_methods[i], sizeof(method_id)) == 0)
break;
if(!lzh_methods[i])
return NULL;
entry = new_entry_node(filename, name_length);
if(entry == NULL)
return NULL;
entry->comptype = i + ARCHIVEC_LZHED + 1;
entry->compsize = compsize;
entry->origsize = origsize;
if(arc_handler.isfile)
{
arc_handler.pos += hdrsiz;
entry->start = arc_handler.pos;
entry->cache = NULL;
url_skip(url, compsize);
arc_handler.pos += compsize;
}
else
{
long n;
entry->start = 0;
entry->cache = url_dump(url, compsize, &n);
if(n != compsize)
{
free_entry_node(entry);
return NULL;
}
}
return entry;
}