-
Notifications
You must be signed in to change notification settings - Fork 2
/
zxs.c
519 lines (406 loc) · 14.7 KB
/
zxs.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
/* zxs.c: Routines for .zxs snapshots
Copyright (c) 1998,2003,2015 Philip Kendall
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.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
E-mail: philip-fuse@shadowmagic.org.uk
*/
#include "config.h"
#include <string.h>
#ifdef HAVE_ZLIB_H
#define ZLIB_CONST
#include <zlib.h>
#endif /* #ifdef HAVE_ZLIB_H */
#include "internals.h"
static libspectrum_error
read_chunk( libspectrum_snap *snap, const libspectrum_byte **buffer,
const libspectrum_byte *end );
typedef libspectrum_error (*read_chunk_fn)( libspectrum_snap *snap,
int *compression,
const libspectrum_byte **buffer,
const libspectrum_byte *end,
size_t data_length,
int parameter );
static libspectrum_error
inflate_block( libspectrum_byte **uncompressed, size_t *uncompressed_length,
const libspectrum_byte **compressed, size_t compressed_length )
{
#ifdef HAVE_ZLIB_H
libspectrum_dword header_length, expected_crc32, actual_crc32;
libspectrum_byte *zlib_buffer;
unsigned long actual_length;
int error;
/* First, look at the compression header */
header_length = libspectrum_read_dword( compressed );
if( header_length != 12 ) {
libspectrum_print_error( LIBSPECTRUM_ERROR_UNKNOWN,
"zxs_inflate_block: unknown header length %lu",
(unsigned long)header_length );
return LIBSPECTRUM_ERROR_UNKNOWN;
}
compressed_length -= 12;
expected_crc32 = libspectrum_read_dword( compressed );
*uncompressed_length = libspectrum_read_dword( compressed );
/* Some space to put the zlib header for decompression */
zlib_buffer = libspectrum_new( libspectrum_byte, ( compressed_length + 6 ) );
/* zlib's header */
zlib_buffer[0] = 0x78; zlib_buffer[1] = 0xda;
memcpy( &zlib_buffer[2], *compressed, compressed_length );
*compressed += compressed_length;
*uncompressed = libspectrum_new( libspectrum_byte, *uncompressed_length );
actual_length = *uncompressed_length;
error = uncompress( *uncompressed, &actual_length, zlib_buffer,
compressed_length + 6 );
/* At this point, we expect to get a Z_DATA_ERROR, as we don't have
the Adler-32 checksum of the data. There is a 1 in 65521 chance
that the random bytes will match, so we might (very rarely) get
Z_OK */
if( error != Z_DATA_ERROR && error != Z_OK ) {
libspectrum_free( *uncompressed ); libspectrum_free( zlib_buffer );
libspectrum_print_error( LIBSPECTRUM_ERROR_CORRUPT,
"zxs_inflate_block: unexpected zlib error" );
return LIBSPECTRUM_ERROR_CORRUPT;
}
if( *uncompressed_length != actual_length ) {
libspectrum_free( *uncompressed ); libspectrum_free( zlib_buffer );
libspectrum_print_error(
LIBSPECTRUM_ERROR_CORRUPT,
"zxs_inflate_block: block expanded to 0x%04lx, not the expected 0x%04lx bytes",
actual_length, (unsigned long)*uncompressed_length
);
return LIBSPECTRUM_ERROR_CORRUPT;
}
libspectrum_free( zlib_buffer );
actual_crc32 = crc32( 0, Z_NULL, 0 );
actual_crc32 = crc32( actual_crc32, *uncompressed, *uncompressed_length );
if( actual_crc32 != expected_crc32 ) {
libspectrum_free( *uncompressed );
libspectrum_print_error(
LIBSPECTRUM_ERROR_CORRUPT,
"zxs_inflate_block: crc 0x%08x does not match expected 0x%08x",
actual_crc32, expected_crc32
);
return LIBSPECTRUM_ERROR_CORRUPT;
}
return LIBSPECTRUM_ERROR_NONE;
#else /* #ifdef HAVE_ZLIB_H */
/* No zlib, so can't inflate the block */
return LIBSPECTRUM_ERROR_UNKNOWN;
#endif /* #ifdef HAVE_ZLIB_H */
}
static libspectrum_error
read_riff_chunk( libspectrum_snap *snap, int *compression GCC_UNUSED,
const libspectrum_byte **buffer, const libspectrum_byte *end,
size_t data_length GCC_UNUSED, int parameter GCC_UNUSED)
{
char id[5];
libspectrum_error error;
if( end - *buffer < 4 ) {
libspectrum_print_error(
LIBSPECTRUM_ERROR_CORRUPT,
"zxs_read_riff_chunk: not enough data for form type"
);
return LIBSPECTRUM_ERROR_CORRUPT;
}
memcpy( id, *buffer, 4 ); id[4] = '\0'; *buffer += 4;
if( strcmp( id, "SNAP" ) ) {
libspectrum_print_error( LIBSPECTRUM_ERROR_UNKNOWN,
"zxs_read_riff_chunk: unknown form type '%s'",
id );
return LIBSPECTRUM_ERROR_UNKNOWN;
}
while( *buffer < end ) {
error = read_chunk( snap, buffer, end );
if( error ) return error;
}
return LIBSPECTRUM_ERROR_NONE;
}
static libspectrum_error
read_fmtz_chunk( libspectrum_snap *snap, int *compression,
const libspectrum_byte **buffer,
const libspectrum_byte *end GCC_UNUSED,
size_t data_length, int parameter GCC_UNUSED )
{
libspectrum_word model;
if( data_length != 8 ) {
libspectrum_print_error( LIBSPECTRUM_ERROR_UNKNOWN,
"zxs_read_fmtz_chunk: unknown length %lu",
(unsigned long)data_length );
return LIBSPECTRUM_ERROR_UNKNOWN;
}
*buffer += 2; /* Skip version number */
model = libspectrum_read_word( buffer );
switch( model ) {
case 0x0010: case 0x0020:
libspectrum_snap_set_machine( snap, LIBSPECTRUM_MACHINE_48 );
break;
case 0x0030:
libspectrum_snap_set_machine( snap, LIBSPECTRUM_MACHINE_128 );
break;
case 0x0040:
libspectrum_snap_set_machine( snap, LIBSPECTRUM_MACHINE_PLUS2 );
break;
case 0x0050:
libspectrum_snap_set_machine( snap, LIBSPECTRUM_MACHINE_PLUS2A );
break;
case 0x0060:
libspectrum_snap_set_machine( snap, LIBSPECTRUM_MACHINE_PLUS3 );
break;
default:
libspectrum_print_error(
LIBSPECTRUM_ERROR_UNKNOWN,
"zxs_read_fmtz_chunk: unknown machine type 0x%04x", model
);
return LIBSPECTRUM_ERROR_UNKNOWN;
}
*buffer += 2; /* Skip hardware flags */
*compression = libspectrum_read_word( buffer );
switch( *compression ) {
case 0x0008: /* Deflation */
*compression = 1; break;
case 0xffff: /* Not compressed */
*compression = 0; break;
default:
libspectrum_print_error(
LIBSPECTRUM_ERROR_UNKNOWN,
"zxs_read_fmtz_chunk: unknown compression type 0x%04x", *compression
);
return LIBSPECTRUM_ERROR_UNKNOWN;
}
return LIBSPECTRUM_ERROR_NONE;
}
static libspectrum_error
read_rz80_chunk( libspectrum_snap *snap, int *compression GCC_UNUSED,
const libspectrum_byte **buffer,
const libspectrum_byte *end GCC_UNUSED,
size_t data_length, int parameter GCC_UNUSED )
{
if( data_length != 33 ) {
libspectrum_print_error( LIBSPECTRUM_ERROR_UNKNOWN,
"zxs_read_rZ80_chunk: unknown length %lu",
(unsigned long)data_length );
return LIBSPECTRUM_ERROR_UNKNOWN;
}
libspectrum_snap_set_a ( snap, **buffer ); (*buffer)++;
libspectrum_snap_set_f ( snap, **buffer ); (*buffer)++;
libspectrum_snap_set_bc ( snap, libspectrum_read_word( buffer ) );
libspectrum_snap_set_de ( snap, libspectrum_read_word( buffer ) );
libspectrum_snap_set_hl ( snap, libspectrum_read_word( buffer ) );
libspectrum_snap_set_a_ ( snap, **buffer ); (*buffer)++;
libspectrum_snap_set_f_ ( snap, **buffer ); (*buffer)++;
libspectrum_snap_set_bc_ ( snap, libspectrum_read_word( buffer ) );
libspectrum_snap_set_de_ ( snap, libspectrum_read_word( buffer ) );
libspectrum_snap_set_hl_ ( snap, libspectrum_read_word( buffer ) );
libspectrum_snap_set_ix ( snap, libspectrum_read_word( buffer ) );
libspectrum_snap_set_iy ( snap, libspectrum_read_word( buffer ) );
libspectrum_snap_set_pc ( snap, libspectrum_read_word( buffer ) );
libspectrum_snap_set_sp ( snap, libspectrum_read_word( buffer ) );
libspectrum_snap_set_i ( snap, **buffer ); (*buffer)++;
libspectrum_snap_set_r ( snap, **buffer ); (*buffer)++;
libspectrum_snap_set_iff1( snap, **buffer ); (*buffer)++;
libspectrum_snap_set_iff2( snap, **buffer ); (*buffer)++;
libspectrum_snap_set_im ( snap, **buffer ); (*buffer)++;
libspectrum_snap_set_tstates( snap, libspectrum_read_dword( buffer ) );
return LIBSPECTRUM_ERROR_NONE;
}
static libspectrum_error
read_r048_chunk( libspectrum_snap *snap, int *compression GCC_UNUSED,
const libspectrum_byte **buffer,
const libspectrum_byte *end GCC_UNUSED,
size_t data_length, int parameter GCC_UNUSED )
{
if( data_length != 9 ) {
libspectrum_print_error(
LIBSPECTRUM_ERROR_UNKNOWN,
"zxs_read_r048_chunk: unknown length %lu", (unsigned long)data_length
);
return LIBSPECTRUM_ERROR_UNKNOWN;
}
libspectrum_snap_set_out_ula( snap, **buffer ); (*buffer)++;
*buffer += 8; /* Skip key data */
return LIBSPECTRUM_ERROR_NONE;
}
static libspectrum_error
read_r128_chunk( libspectrum_snap *snap, int *compression GCC_UNUSED,
const libspectrum_byte **buffer,
const libspectrum_byte *end GCC_UNUSED,
size_t data_length, int parameter GCC_UNUSED )
{
size_t i;
if( data_length != 18 ) {
libspectrum_print_error( LIBSPECTRUM_ERROR_UNKNOWN,
"zxs_read_r128_chunk: unknown length %lu",
(unsigned long)data_length );
return LIBSPECTRUM_ERROR_UNKNOWN;
}
libspectrum_snap_set_out_128_memoryport( snap, **buffer ); (*buffer)++;
libspectrum_snap_set_out_ay_registerport( snap, **buffer ); (*buffer)++;
for( i = 0; i < 16; i++ ) {
libspectrum_snap_set_ay_registers( snap, i, **buffer ); (*buffer)++;
}
return LIBSPECTRUM_ERROR_NONE;
}
static libspectrum_error
read_rplus3_chunk( libspectrum_snap *snap, int *compression GCC_UNUSED,
const libspectrum_byte **buffer,
const libspectrum_byte *end GCC_UNUSED, size_t data_length,
int parameter GCC_UNUSED )
{
if( data_length != 1 ) {
libspectrum_print_error( LIBSPECTRUM_ERROR_UNKNOWN,
"zxs_read_rplus3_chunk: unknown length %lu",
(unsigned long)data_length );
return LIBSPECTRUM_ERROR_UNKNOWN;
}
libspectrum_snap_set_out_plus3_memoryport( snap, **buffer ); (*buffer)++;
return LIBSPECTRUM_ERROR_NONE;
}
static libspectrum_error
read_ram_chunk( libspectrum_snap *snap, int *compression,
const libspectrum_byte **buffer,
const libspectrum_byte *end GCC_UNUSED,
size_t data_length, int parameter )
{
int page = parameter;
libspectrum_byte *buffer2; size_t uncompressed_length;
libspectrum_error error;
if( *compression ) {
error = inflate_block( &buffer2, &uncompressed_length,
buffer, data_length );
if( error ) return error;
if( uncompressed_length != 0x4000 ) {
libspectrum_free( buffer2 );
libspectrum_print_error(
LIBSPECTRUM_ERROR_CORRUPT,
"zxs_read_ram_chunk: page %d does not expand to 0x4000 bytes", page
);
return LIBSPECTRUM_ERROR_MEMORY;
}
} else { /* Uncompressed data */
if( data_length != 0x4000 ) {
libspectrum_print_error(
LIBSPECTRUM_ERROR_UNKNOWN,
"zxs_read_ram_chunk: page %d has unknown length %lu", page,
(unsigned long)data_length
);
return LIBSPECTRUM_ERROR_UNKNOWN;
}
buffer2 = libspectrum_new( libspectrum_byte, 0x4000 );
memcpy( buffer2, buffer, 0x4000 ); *buffer += 0x4000;
}
libspectrum_snap_set_pages( snap, page, buffer2 );
return LIBSPECTRUM_ERROR_NONE;
}
static libspectrum_error
skip_chunk( libspectrum_snap *snap GCC_UNUSED, int *compression GCC_UNUSED,
const libspectrum_byte **buffer,
const libspectrum_byte *end GCC_UNUSED,
size_t data_length, int parameter GCC_UNUSED )
{
*buffer += data_length;
return LIBSPECTRUM_ERROR_NONE;
}
struct read_chunk_t {
const char *id;
read_chunk_fn function;
int parameter;
};
static struct read_chunk_t read_chunks[] = {
{ "RIFF", read_riff_chunk, 0 },
{ "fmtz", read_fmtz_chunk, 0 },
{ "rZ80", read_rz80_chunk, 0 },
{ "r048", read_r048_chunk, 0 },
{ "r128", read_r128_chunk, 0 },
{ "r+3 ", read_rplus3_chunk, 0 },
{ "ram0", read_ram_chunk, 0 },
{ "ram1", read_ram_chunk, 1 },
{ "ram2", read_ram_chunk, 2 },
{ "ram3", read_ram_chunk, 3 },
{ "ram4", read_ram_chunk, 4 },
{ "ram5", read_ram_chunk, 5 },
{ "ram6", read_ram_chunk, 6 },
{ "ram7", read_ram_chunk, 7 },
{ "LIST", skip_chunk, 0 },
};
static libspectrum_error
read_chunk_header( char *id, libspectrum_dword *data_length,
const libspectrum_byte **buffer,
const libspectrum_byte *end )
{
if( end - *buffer < 8 ) {
libspectrum_print_error(
LIBSPECTRUM_ERROR_CORRUPT,
"zxs_read_chunk_header: not enough data for chunk header"
);
return LIBSPECTRUM_ERROR_CORRUPT;
}
memcpy( id, *buffer, 4 ); id[4] = '\0'; *buffer += 4;
*data_length = libspectrum_read_dword( buffer );
return LIBSPECTRUM_ERROR_NONE;
}
static libspectrum_error
read_chunk( libspectrum_snap *snap, const libspectrum_byte **buffer,
const libspectrum_byte *end )
{
char id[5];
libspectrum_dword data_length;
libspectrum_error error;
size_t i; int done;
int compression;
error = read_chunk_header( id, &data_length, buffer, end );
if( error ) return error;
if( *buffer + data_length > end ) {
libspectrum_print_error(
LIBSPECTRUM_ERROR_CORRUPT,
"zxs_read_chunk: chunk length goes beyond end of file"
);
return LIBSPECTRUM_ERROR_CORRUPT;
}
done = 0;
for( i = 0; !done && i < ARRAY_SIZE( read_chunks ); i++ ) {
if( !strcmp( id, read_chunks[i].id ) ) {
error = read_chunks[i].function( snap, &compression, buffer, end,
data_length, read_chunks[i].parameter );
if( error ) return error;
done = 1;
}
}
if( !done ) {
libspectrum_print_error( LIBSPECTRUM_ERROR_UNKNOWN,
"zxs_read_chunk: unknown chunk id '%s'", id );
*buffer += data_length;
}
if( data_length % 2 ) (*buffer)++;
return LIBSPECTRUM_ERROR_NONE;
}
libspectrum_error
libspectrum_zxs_read( libspectrum_snap *snap, const libspectrum_byte *buffer,
size_t length )
{
libspectrum_error error;
/* Set machine type in case it's not set later */
libspectrum_snap_set_machine( snap, LIBSPECTRUM_MACHINE_48 );
error = read_chunk( snap, &buffer, buffer + length );
if( error ) {
/* Tidy up any RAM pages we may have allocated */
size_t i;
for( i = 0; i < 8; i++ ) {
libspectrum_byte *page = libspectrum_snap_pages( snap, i );
if( page ) {
libspectrum_free( page );
libspectrum_snap_set_pages( snap, i, NULL );
}
}
return error;
}
return LIBSPECTRUM_ERROR_NONE;
}