-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathfz.c
726 lines (629 loc) · 14.4 KB
/
fz.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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
/*
* This file is part of the Advance project.
*
* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Andrea Mazzoleni
*
* 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.
*
* In addition, as a special exception, Andrea Mazzoleni
* gives permission to link the code of this program with
* the MAME library (or with modified versions of MAME that use the
* same license as MAME), and distribute linked combinations including
* the two. You must obey the GNU General Public License in all
* respects for all of the code used other than MAME. If you modify
* this file, you may extend this exception to your version of the
* file, but you are not obligated to do so. If you do not wish to
* do so, delete this exception statement from your version.
*/
#include "portable.h"
#include "fz.h"
#include "endianrw.h"
/* Zip format */
#define ZIP_LO_filename_length 0x1A
#define ZIP_LO_extra_field_length 0x1C
#define ZIP_LO_FIXED 0x1E /* size of fixed data structure */
/**************************************************************************/
/* unlocked interface for streams (faster than locked) */
static FILE* fopen_lock(const char* name, const char* mode)
{
FILE* f;
f = fopen(name, mode);
#if HAVE_FLOCKFILE
if (f)
flockfile(f);
#endif
return f;
}
static int fclose_lock(FILE *f)
{
#if HAVE_FUNLOCKFILE
funlockfile(f);
#endif
return fclose(f);
}
static size_t fread_lock(void* data, size_t size, size_t count, FILE* f)
{
#if HAVE_FREAD_UNLOCKED
return fread_unlocked(data, size, count, f);
#else
return fread(data, size, count, f);
#endif
}
static size_t fwrite_lock(const void* data, size_t size, size_t count, FILE* f)
{
#if HAVE_FWRITE_UNLOCKED
return fwrite_unlocked(data, size, count, f);
#else
return fwrite(data, size, count, f);
#endif
}
static int feof_lock(FILE* f)
{
#if HAVE_FEOF_UNLOCKED
return feof_unlocked(f);
#else
return feof(f);
#endif
}
static int fgetc_lock(FILE* f)
{
#if HAVE_FGETC_UNLOCKED
return fgetc_unlocked(f);
#else
return fgetc(f);
#endif
}
/**************************************************************************/
/* fz interface */
#define INFLATE_INPUT_BUFFER_MAX 4096
adv_error fzgrow(adv_fz* f, size_t size)
{
if (f->type == fz_memory_write) {
if (f->virtual_size < size) {
unsigned char* data = realloc(f->data_write, size);
if (!data)
return -1;
f->data_write = data;
f->virtual_size = size;
}
return 0;
} else {
return -1;
}
}
/**
* Read from a file.
* The semantic is like the C fread() function.
*/
size_t fzread(void *buffer, size_t size, size_t number, adv_fz* f)
{
if (f->type == fz_file) {
return fread_lock(buffer, size, number, f->f);
} else {
size_t total_size;
/* adjust the number of record to read */
total_size = size * number;
if (f->virtual_pos + total_size >= f->virtual_size) {
number = (f->virtual_size - f->virtual_pos) / size;
if (!number)
return 0;
total_size = size * number;
}
if (f->type == fz_memory_read) {
memcpy(buffer, f->data_read + f->virtual_pos, total_size);
f->virtual_pos += total_size;
return number;
} else if (f->type == fz_memory_write) {
memcpy(buffer, f->data_write + f->virtual_pos, total_size);
f->virtual_pos += total_size;
return number;
} else if (f->type == fz_file_compressed) {
int err = Z_STREAM_END;
f->z.next_out = buffer;
f->z.avail_out = total_size;
while (f->z.avail_out) {
if (!f->z.avail_in) {
size_t run = INFLATE_INPUT_BUFFER_MAX;
if (run > f->remaining)
run = f->remaining;
f->z.next_in = f->zbuffer;
run = fread_lock(f->zbuffer, 1, run, f->f);
f->remaining -= run;
/* add an extra byte at the end, required by the zlib library */
if (run && !f->remaining)
++run;
f->z.avail_in = run;
}
if (!f->z.avail_in)
break;
err = inflate(&f->z, Z_NO_FLUSH);
if (err != Z_OK)
break;
}
total_size -= f->z.avail_out;
f->virtual_pos += total_size;
return total_size / size;
}
}
return 0;
}
/**
* Write to a file.
* This function works only for files opened with fzopen().
* The semantic is like the C fwrite() function.
*/
size_t fzwrite(const void *buffer, size_t size, size_t number, adv_fz* f)
{
if (f->type == fz_file) {
return fwrite_lock(buffer, size, number, f->f);
} else if (f->type == fz_memory_write) {
size_t total_size;
/* adjust the number of record to write */
total_size = size * number;
if (fzgrow(f, f->virtual_pos + total_size) != 0)
return -1;
memcpy(f->data_write + f->virtual_pos, buffer, total_size);
f->virtual_pos += total_size;
return number;
} else {
return -1;
}
}
static adv_fz* fzalloc(void)
{
adv_fz* f;
f = malloc(sizeof(adv_fz));
if (!f)
return 0;
f->type = fz_invalid;
f->virtual_pos = 0;
f->virtual_size = 0;
f->real_offset = 0;
f->real_size = 0;
f->data_read = 0;
f->data_write = 0;
f->f = 0;
return f;
}
/**
* Open a normal file.
* The semantic is like the C fopen() function.
*/
adv_fz* fzopen(const char* file, const char* mode)
{
adv_fz* f = fzalloc();
if (!f)
return 0;
f->type = fz_file;
f->f = fopen_lock(file, mode);
if (!f->f) {
free(f);
return 0;
}
return f;
}
/**
* Open a normal file doing all the write access in memory.
* The semantic is like the C fopen() function.
*/
adv_fz* fzopennullwrite(const char* file, const char* mode)
{
adv_fz* f = fzalloc();
if (!f)
goto err;
f->type = fz_memory_write;
f->virtual_pos = 0;
f->f = fopen_lock(file, "rb");
if (f->f) {
struct stat st;
if (fstat(fileno(f->f), &st) != 0) {
goto err_close;
}
f->data_write = malloc(st.st_size);
if (!f->data_write) {
goto err_close;
}
f->virtual_size = st.st_size;
if (fread_lock(f->data_write, st.st_size, 1, f->f) != 1) {
goto err_data;
}
fclose_lock(f->f);
f->f = 0;
} else {
if (strchr(mode, 'w')!=0 || strchr(mode, 'a')!=0) {
/* creation allowed */
f->data_write = 0;
f->virtual_size = 0;
} else {
/* creation not possible */
goto err_free;
}
}
return f;
err_data:
free(f->data_write);
err_close:
fclose_lock(f->f);
err_free:
free(f);
err:
return 0;
}
/**
* Open an uncompressed file part of a ZIP archive.
* \param file ZIP archive.
* \param offset Offset in the archive.
* \param size Size of the data.
*/
adv_fz* fzopenzipuncompressed(const char* file, off_t offset, unsigned size)
{
unsigned char buf[ZIP_LO_FIXED];
unsigned filename_length;
unsigned extra_field_length;
adv_fz* f = fzalloc();
if (!f)
return 0;
f->type = fz_file;
f->virtual_pos = 0;
f->virtual_size = size;
f->f = fopen_lock(file, "rb");
if (!f->f) {
free(f);
return 0;
}
if (fseeko(f->f, offset, SEEK_SET) != 0) {
fclose_lock(f->f);
free(f);
return 0;
}
if (fread_lock(buf, ZIP_LO_FIXED, 1, f->f)!=1) {
fclose_lock(f->f);
free(f);
return 0;
}
filename_length = le_uint16_read(buf+ZIP_LO_filename_length);
extra_field_length = le_uint16_read(buf+ZIP_LO_extra_field_length);
/* calculate offset to data and seek there */
offset += ZIP_LO_FIXED + filename_length + extra_field_length;
f->real_offset = offset;
f->real_size = size;
if (fseeko(f->f, f->real_offset, SEEK_SET) != 0) {
fclose_lock(f->f);
free(f);
return 0;
}
return f;
}
static void compressed_init(adv_fz* f)
{
int err;
memset(&f->z, 0, sizeof(f->z));
f->z.zalloc = 0;
f->z.zfree = 0;
f->z.opaque = 0;
f->z.next_in = 0;
f->z.avail_in = 0;
f->z.next_out = 0;
f->z.avail_out = 0;
f->zbuffer = (unsigned char*)malloc(INFLATE_INPUT_BUFFER_MAX+1); /* +1 for the extra byte at the end */
f->remaining = f->real_size;
/*
* windowBits is passed < 0 to tell that there is no zlib header.
* Note that in this case inflate *requires* an extra "dummy" byte
* after the compressed stream in order to complete decompression and
* return Z_STREAM_END.
*/
err = inflateInit2(&f->z, -MAX_WBITS);
assert(err == Z_OK);
}
static void compressed_done(adv_fz* f)
{
inflateEnd(&f->z);
free(f->zbuffer);
}
/**
* Open an compressed file part of a ZIP archive.
* \param file ZIP archive.
* \param offset Offset in the archive.
* \param size_compressed Size of the compressed data.
* \param size_uncompressed Size of the uncompressed data.
*/
adv_fz* fzopenzipcompressed(const char* file, off_t offset, unsigned size_compressed, unsigned size_uncompressed)
{
unsigned char buf[ZIP_LO_FIXED];
unsigned filename_length;
unsigned extra_field_length;
adv_fz* f = fzalloc();
if (!f)
return 0;
f->type = fz_file_compressed;
f->virtual_pos = 0;
f->virtual_size = size_uncompressed;
f->f = fopen_lock(file, "rb");
if (!f->f) {
free(f);
return 0;
}
if (fseeko(f->f, offset, SEEK_SET) != 0) {
fclose_lock(f->f);
free(f);
return 0;
}
if (fread_lock(buf, ZIP_LO_FIXED, 1, f->f)!=1) {
fclose_lock(f->f);
free(f);
return 0;
}
filename_length = le_uint16_read(buf+ZIP_LO_filename_length);
extra_field_length = le_uint16_read(buf+ZIP_LO_extra_field_length);
/* calculate offset to data and seek there */
offset += ZIP_LO_FIXED + filename_length + extra_field_length;
f->real_offset = offset;
f->real_size = size_compressed;
if (fseeko(f->f, f->real_offset, SEEK_SET) != 0) {
fclose_lock(f->f);
free(f);
return 0;
}
compressed_init(f);
return f;
}
/**
* Open a memory range as a file.
* \param data Data.
* \param size Size of the data.
*/
adv_fz* fzopenmemory(const unsigned char* data, unsigned size)
{
adv_fz* f = fzalloc();
if (!f)
return 0;
f->type = fz_memory_read;
f->virtual_pos = 0;
f->virtual_size = size;
f->data_read = data;
return f;
}
/**
* Close a file.
* The semantic is like the C fclose() function.
*/
adv_error fzclose(adv_fz* f)
{
if (f->type == fz_file) {
fclose_lock(f->f);
free(f);
} else if (f->type == fz_file_part) {
fclose_lock(f->f);
free(f);
} else if (f->type == fz_file_compressed) {
compressed_done(f);
fclose_lock(f->f);
free(f);
} else if (f->type == fz_memory_read) {
free(f);
} else if (f->type == fz_memory_write) {
free(f->data_write);
free(f);
} else {
return -1;
}
return 0;
}
/**
* Read a char from the file.
* The semantic is like the C fgetc() function.
* It assume to read a binary file without any "\r", "\n" conversion.
*/
int fzgetc(adv_fz* f)
{
if (f->type == fz_file) {
return fgetc_lock(f->f);
} else {
unsigned char r;
if (fzread(&r, 1, 1, f)==1)
return r;
else
return EOF;
}
}
/**
* Unread a char from the file.
* This function works only for files opened with fzopen().
* The semantic is like the C fungetc() function.
*/
adv_error fzungetc(int c, adv_fz* f)
{
if (f->type == fz_file) {
return ungetc(c, f->f);
} else {
return -1;
}
}
/**
* Read a string from the file.
* The semantic is like the C fgets() function.
*/
char* fzgets(char *s, int n, adv_fz* f)
{
char* r;
if (n < 2) {
r = 0;
} else {
int c = fzgetc(f);
if (c == EOF) {
r = 0;
} else {
r = s;
while (n > 1) {
*s++ = (char)c;
--n;
if (c == '\n')
break;
if (n > 1)
c = fzgetc(f);
}
if (n) {
*s = 0;
} else {
r = 0;
}
}
}
return r;
}
/**
* Check if the file pointer is at the end.
* The semantic is like the C feof() function.
*/
adv_error fzeof(adv_fz* f)
{
if (f->type == fz_file) {
return feof_lock(f->f);
} else {
return f->virtual_pos >= f->virtual_size;
}
}
/**
* Get the current position in the file.
* The semantic is like the C ftell() function.
*/
off_t fztell(adv_fz* f)
{
if (f->type == fz_file) {
return ftell(f->f);
} else {
return f->virtual_pos;
}
}
/**
* Get the size of the file.
*/
off_t fzsize(adv_fz* f)
{
if (f->type == fz_file) {
struct stat st;
if (fstat(fileno(f->f), &st) != 0) {
return -1;
}
return st.st_size;
} else {
return f->virtual_size;
}
}
/**
* Seek to an arbitrary position.
* The semantic is like the C fseek() function.
*/
adv_error fzseek(adv_fz* f, off_t offset, int mode)
{
if (f->type == fz_file) {
switch (mode) {
case SEEK_SET :
return fseeko(f->f, f->real_offset + offset, SEEK_SET);
case SEEK_CUR :
return fseeko(f->f, offset, SEEK_CUR);
case SEEK_END :
if (f->real_size)
return fseeko(f->f, f->real_size - offset, SEEK_SET);
else
return fseeko(f->f, offset, SEEK_END);
default:
return -1;
}
} else {
off_t pos;
switch (mode) {
case SEEK_SET :
pos = offset;
break;
case SEEK_CUR :
pos = f->virtual_pos + offset;
break;
case SEEK_END :
pos = f->virtual_size - offset;
break;
default:
return -1;
}
if (pos < 0 || pos > f->virtual_size)
return -1;
if (f->type == fz_memory_read) {
f->virtual_pos = pos;
return 0;
} else if (f->type == fz_memory_write) {
if (fzgrow(f, pos) != 0)
return -1;
f->virtual_pos = pos;
return 0;
} else if (f->type == fz_file_part) {
if (fseeko(f->f, f->real_offset + f->virtual_pos, SEEK_SET) != 0)
return -1;
f->virtual_pos = pos;
return 0;
} else if (f->type == fz_file_compressed) {
off_t offset;
if (pos < f->virtual_pos) {
/* if backward reopen the file */
int err;
compressed_done(f);
err = fseeko(f->f, f->real_offset, SEEK_SET);
f->virtual_pos = 0;
compressed_init(f);
if (err != 0)
return -1;
}
/* data to read */
offset = pos - f->virtual_pos;
/* read all the data */
while (offset > 0) {
unsigned char buffer[256];
off_t run = offset;
if (run > 256)
run = 256;
if (fzread(buffer, run, 1, f) != 1)
return -1;
offset -= run;
}
return 0;
} else {
return -1;
}
}
}
adv_error le_uint8_fzread(adv_fz* f, unsigned* v)
{
unsigned char p[1];
if (fzread(p, 1, 1, f) != 1)
return -1;
*v = le_uint8_read(p);
return 0;
}
adv_error le_uint16_fzread(adv_fz* f, unsigned* v)
{
unsigned char p[2];
if (fzread(p, 2, 1, f) != 1)
return -1;
*v = le_uint16_read(p);
return 0;
}
adv_error le_uint32_fzread(adv_fz* f, unsigned* v)
{
unsigned char p[4];
if (fzread(p, 4, 1, f) != 1)
return -1;
*v = le_uint32_read(p);
return 0;
}