-
Notifications
You must be signed in to change notification settings - Fork 92
/
cckdmap.c
1280 lines (1119 loc) · 45.7 KB
/
cckdmap.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
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* cckdmap.c (C) Copyright "Fish" (David B. Trout), 2019-2022 */
/* (C) and others 2022-2023 */
/* Compressed dasd file map */
/* */
/* Released under "The Q Public License Version 1" */
/* (http://www.hercules-390.org/herclic.html) as modifications to */
/* Hercules. */
/*-------------------------------------------------------------------*/
/* This program is a CCKD64 debugging tool that reads a dasd */
/* file and reports the physical sequence of all of its areas, */
/* including free space. The report is in physical file offset */
/* sequence. It allows you to determine not only how many (and */
/* where) all free space gaps are, but also where each track's */
/* data resides, the size of the track data area, where both the */
/* device header and compressed device headers, L1 table and all */
/* L2 tables are located. This allows you to determine whether */
/* the preferred L2 table area (which immediately follows the L1 */
/* table) contains only L2 tables, or whether is also contains */
/* track data or free space, and whether or not all of a file's */
/* L2 tables are where they should be (within the preferred L2 */
/* area). It allows us to determine whether dasdinit created */
/* the file correctly or not and whether cckdcomp compressed */
/* the file correctly or not, and thus whether the cckd garbage */
/* collector's cckd_gc_l2 (Reposition level 2 tables) function */
/* will likely be invoked or not (which is known to be buggy). */
/* */
/* Usage: cckdmap.exe [ -i | -t | -v ] infile */
/* */
/*-------------------------------------------------------------------*/
#include "hstdinc.h"
#include "hercules.h"
#include "dasdblks.h"
#include "devtype.h"
#include "opcode.h"
#include "ccwarn.h"
#define UTILITY_NAME "cckdmap"
#define UTILITY_DESC "Compressed dasd file map"
/*-------------------------------------------------------------------*/
/* Global variables */
/*-------------------------------------------------------------------*/
char* pgm = NULL; /* less any extension (.ext) */
SPCTAB64* spacetab = NULL; /* Spaces table */
U64 filesize = 0; /* File size (i.e. st_size) */
U64 total_unknown = 0; /* Total unknown space */
U64 L2_lower_pos = 0; /* L2 lower bound position */
int hdrerr = 0; /* Non-zero = header errors */
int numspace = 0; /* Number of spaces in table */
S32 num_L1tab = 0; /* Number of L1 tab entries */
int num_act_L2tab = 0; /* Number of active L2 tabs */
bool cckd64 = false; /* true = CCKD64 input */
bool swaps_needed = false; /* true = endian swap needed */
bool fba = false; /* true = FBA, false = CKD */
bool shadow = false; /* true = shadow, else base */
bool data = false; /* Consolidated tracks report*/
bool verbose = false; /* Report detailed track info*/
bool overlap = false; /* Space overlaps next space */
bool new_format = false; /* "NEW" free chain format */
bool info_only = false; /* Summary Information Only */
CCKD_FREEBLK freeblk32 = {0}; /* Free block (file) */
CCKD64_FREEBLK freeblk = {0}; /* Free block (file) */
CCKD_DEVHDR cdevhdr32 = {0}; /* CCKD device header */
CCKD_L1ENT* L1tab32 = NULL; /* CCKD Level 1 table */
CCKD_L2ENT L2tab32[256] = {0}; /* CCKD Level 2 table */
CCKD64_DEVHDR cdevhdr = {0}; /* CCKD64 device header */
CCKD64_L1ENT* L1tab = NULL; /* CCKD64 Level 1 table */
CCKD64_L2ENT L2tab[256] = {0}; /* CCKD64 Level 2 table */
/*-------------------------------------------------------------------*/
/* Display command syntax and return -1 */
/*-------------------------------------------------------------------*/
static int syntax()
{
// Usage: %s [ -i | -t | -v ] infile
// infile Input file
// options:
// -t report consolidated track data
// -v verbose (report detailed track data)
WRMSG( HHC03000, "I", pgm );
return -1;
}
/*-------------------------------------------------------------------*/
/* Helper macros */
/*-------------------------------------------------------------------*/
#define SWAP_CCKD64_DEVHDR(p) do if (swaps_needed) cckd64_swapend_chdr( p ); while (0)
#define SWAP_CCKD64_L1TAB(p) do if (swaps_needed) cckd64_swapend_l1( p, num_L1tab ); while (0)
#define SWAP_CCKD64_L2TAB(p) do if (swaps_needed) cckd64_swapend_l2( p ); while (0)
/*-------------------------------------------------------------------*/
/* Convert 32-bit CCKD control block to 64-bit CCKD64 */
/*-------------------------------------------------------------------*/
static void cdevhdr_to_64()
{
if (!cckd64)
{
memcpy( cdevhdr.cdh_vrm, cdevhdr32.cdh_vrm, sizeof( cdevhdr.cdh_vrm ));
memcpy( cdevhdr.cdh_cyls, cdevhdr32.cdh_cyls, sizeof( cdevhdr.cdh_cyls ));
cdevhdr.num_L1tab = cdevhdr32.num_L1tab;
cdevhdr.num_L2tab = cdevhdr32.num_L2tab;
cdevhdr.cdh_opts = cdevhdr32.cdh_opts;
cdevhdr.cdh_size = cdevhdr32.cdh_size;
cdevhdr.cdh_used = cdevhdr32.cdh_used;
cdevhdr.cdh_nullfmt = cdevhdr32.cdh_nullfmt;
cdevhdr.free_off = cdevhdr32.free_off;
cdevhdr.free_total = cdevhdr32.free_total;
cdevhdr.free_largest = cdevhdr32.free_largest;
cdevhdr.free_num = cdevhdr32.free_num;
cdevhdr.free_imbed = cdevhdr32.free_imbed;
cdevhdr.cmp_algo = cdevhdr32.cmp_algo;
cdevhdr.cmp_parm = cdevhdr32.cmp_parm;
}
}
static void L1tab_to_64()
{
if (!cckd64)
{
CCKD_L1ENT* L32 = L1tab32; // input 32
CCKD64_L1ENT* L64 = L1tab; // input 64
S32 i;
for (i=0; i < num_L1tab; ++i)
{
if (L32[i] == CCKD_MAXSIZE)
L64[i] = CCKD64_MAXSIZE;
else
L64[i] = L32[i];
}
}
}
static void L2tab_to_64()
{
if (!cckd64)
{
int i;
for (i=0; i < 256; ++i)
{
if (L2tab32[i].L2_trkoff == CCKD_MAXSIZE)
L2tab[i].L2_trkoff = CCKD64_MAXSIZE;
else
L2tab[i].L2_trkoff = L2tab32[i].L2_trkoff;
L2tab[i].L2_len = L2tab32[i].L2_len;
L2tab[i].L2_size = L2tab32[i].L2_size;
}
}
}
/*-------------------------------------------------------------------*/
/* Determine if endian swaps are going to be needed or not */
/*-------------------------------------------------------------------*/
static bool are_swaps_needed( const CCKD64_DEVHDR* cdevhdr64 )
{
bool running_on_big_endian_system = are_big_endian();
return
(0
|| (1
&& running_on_big_endian_system
&& !(cdevhdr64->cdh_opts & CCKD_OPT_BIGEND)
)
|| (1
&& !running_on_big_endian_system
&& (cdevhdr64->cdh_opts & CCKD_OPT_BIGEND)
)
);
}
/*-------------------------------------------------------------------*/
/* Append new entry to spaces table (array) */
/*-------------------------------------------------------------------*/
#define ADD_SPACE( spc ) \
add_spc_to_table( &spc )
static void add_spc_to_table( SPCTAB64* spc )
{
spacetab = realloc( spacetab, (numspace + 1) * sizeof( SPCTAB64 ));
memcpy( &spacetab[ numspace++ ], spc, sizeof( SPCTAB64 ));
}
/*-------------------------------------------------------------------*/
/* Remove old entry from spaces table (array) */
/*-------------------------------------------------------------------*/
#define DEL_SPACE( i ) \
del_spc_from_table( i )
static void del_spc_from_table( int i )
{
memmove( &spacetab[ i ], &spacetab[ i+1 ], (numspace - (i+1)) * sizeof( SPCTAB64 ));
numspace--;
}
/*-------------------------------------------------------------------*/
/* Sort the spaces table */
/*-------------------------------------------------------------------*/
static int sort_spacetab_by_file_offset( const void* a, const void* b )
{
const SPCTAB64 *s1 = a,
*s2 = b;
if (s1->spc_off < s2->spc_off) return -1;
if (s1->spc_off > s2->spc_off) return +1;
if (s1->spc_siz < s2->spc_siz) return -1;
if (s1->spc_siz > s2->spc_siz) return +1;
if (s1->spc_typ < s2->spc_typ) return -1;
if (s1->spc_typ > s2->spc_typ) return +1;
if (s1->spc_val < s2->spc_val) return -1;
if (s1->spc_val > s2->spc_val) return +1;
return 0;
}
/*-------------------------------------------------------------------*/
/* Return calculated Garbage Collector State value (0-4) */
/*-------------------------------------------------------------------*/
static int dev_gc_state()
{
U64 size, fsiz;
int gc;
size = cdevhdr.cdh_size;
fsiz = cdevhdr.free_total;
if (fsiz >= (size = size/2)) gc = 0; // critical 50% - 100%
else if (fsiz >= (size = size/2)) gc = 1; // severe 25% - 50%
else if (fsiz >= (size = size/2)) gc = 2; // moderate 12.5% - 25%
else if (fsiz >= (size = size/2)) gc = 3; // light 6.3% - 12.5%
else gc = 4; // none 0% - 6.3%
// Adjust the state based on the number of free spaces
if (cdevhdr.free_num > 800 && gc > 0) gc--;
if (cdevhdr.free_num > 1800 && gc > 0) gc--;
if (cdevhdr.free_num > 3000) gc = 0;
return gc;
}
/*-------------------------------------------------------------------*/
/* MAIN */
/*-------------------------------------------------------------------*/
int main( int argc, char* argv[] )
{
char* file; /* File name */
char pathname[MAX_PATH]; /* File path in host format */
char str_size [64]; /* Work area for fmt_S64 */
char str_used [64]; /* Work area for fmt_S64 */
char str_total [64]; /* Work area for fmt_S64 */
char str_largest [64]; /* Work area for fmt_S64 */
char track_range [32]; /* Work area for fmt_S64 */
char space_type [32]; /* spc_typ_to_str work area */
off_t curpos; /* Work: saved file position */
CKDDEV* ckdtab = NULL; /* Device table entry */
FBADEV* fbatab = NULL; /* Device table entry */
CKD_DEVHDR devhdr = {0}; /* CKD device header */
SPCTAB64 spc = {0}; /* Space table entry */
char ser[12+1] = {0}; /* Serial number */
int rc; /* Return code */
int fd; /* File descriptor integer */
int i, k; /* Loop variables */
int tracks; /* Total tracks */
int L1track; /* L1 table track number */
size_t len_size, len_used; /* Return value from fmt_S64 */
size_t len_total, len_largest; /* Return value from fmt_S64 */
U64 seek_total; /* Distance from L2 to track */
U32 active_tracks; /* Total active tracks */
U32 cyls; /* Total cylinders */
U32 heads; /* Heads per cylinder */
U32 trksize; /* Track size */
U32 imgtyp; /* Dasd image format */
U32 size32; /* Work: CCKD I/O size */
U32 size; /* Work: CCKD64 I/O size */
U16 devtype; /* Device type (e.g. 0x3390) */
INITIALIZE_UTILITY( UTILITY_NAME, UTILITY_DESC, &pgm );
/* Parse options */
for (argc--, argv++; argc > 0; argc--, argv++)
{
/* End of options? */
if (argv[0][0] != '-')
break;
if (0
|| strcasecmp( argv[0], "-i" ) == 0
|| strcasecmp( argv[0], "--info" ) == 0
)
{
info_only = true; /* Report only summary information */
data = false;
verbose = false;
}
else if (0
|| strcasecmp( argv[0], "-t" ) == 0
|| strcasecmp( argv[0], "--tracks" ) == 0
)
{
info_only = false;
data = true; /* Consolidated tracks report */
verbose = false;
}
else if (0
|| strcasecmp( argv[0], "-v" ) == 0
|| strcasecmp( argv[0], "--verbose" ) == 0
)
{
info_only = false;
data = false;
verbose = true; /* Report detailed track info */
}
else
{
// "Unrecognized option: %s"
FWRMSG( stderr, HHC03001, "E", argv[0] );
return syntax();
}
}
/* Parse arguments */
if (argc < 1)
{
// "Missing input-file specification"
FWRMSG( stderr, HHC03002, "E" );
return syntax();
}
if (argc > 1)
{
// "Extraneous parameter: %s"
FWRMSG( stderr, HHC03003, "E", argv[1] );
return syntax();
}
file = argv[0];
// ""
// "%s of: \"%s\""
// ""
WRMSG( HHC03020, "I" );
WRMSG( HHC03021, "I", pgm, file );
/* Open file and verify correct format */
hostpath( pathname, file, sizeof( pathname ));
if ((fd = HOPEN( pathname, O_RDONLY | O_BINARY )) < 0)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "open()", strerror( errno ));
return -1;
}
/* Add an EOF record right away */
if ((curpos = lseek( fd, 0, SEEK_END )) < 0)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "lseek()", strerror( errno ));
return -1;
}
spc.spc_typ = SPCTAB_EOF;
spc.spc_off = curpos;
spc.spc_siz = curpos;
spc.spc_len = curpos;
spc.spc_val = -1;
spc.spc_val2 = -1;
ADD_SPACE( spc );
/* Save file size for later */
filesize = curpos;
// "File size: (%s bytes)"
fmt_S64( str_size, (S64) filesize );
WRMSG( HHC03007, "I", str_size );
/* Read the device header */
size = (U32) CKD_DEVHDR_SIZE;
if ((curpos = lseek( fd, 0, SEEK_SET )) < 0)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "lseek()", strerror( errno ));
return -1;
}
if ((rc = read( fd, &devhdr, size )) < (int) size)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "read()", strerror( errno ));
return -1;
}
/* Input must be a compressed type */
if (!((imgtyp = dh_devid_typ( devhdr.dh_devid )) & ANY_CMP_OR_SF_TYP))
{
// "Unsupported dasd image file format"
FWRMSG( stderr, HHC03004, "E" );
return -1;
}
/* Remember whether input is CCKD/CFBA or CCKD64/CFBA64 */
if (imgtyp & ANY64_CMP_OR_SF_TYP)
cckd64 = true;
/* Remember whether input is CFBA/CFBA64 or CCKD/CCKD64 */
if (imgtyp & FBA_CMP_OR_SF_TYP)
fba = true;
/* Remember whether input is shadow or not */
if (imgtyp & ANY_SF_TYP)
shadow = true;
/* Add CKD device header to spaces table */
spc.spc_typ = SPCTAB_DEVHDR;
spc.spc_off = 0;
spc.spc_siz = CKD_DEVHDR_SIZE;
spc.spc_len = spc.spc_siz;
spc.spc_val = -1;
spc.spc_val2 = -1;
ADD_SPACE( spc );
/* Read the compressed device header... */
/* Init the size of the device header */
size = CCKD64_DEVHDR_SIZE;
size32 = CCKD_DEVHDR_SIZE;
if (cckd64)
{
if ((curpos = lseek( fd, CCKD64_DEVHDR_POS, SEEK_SET )) < 0)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "lseek()", strerror( errno ));
return -1;
}
if ((rc = read( fd, &cdevhdr, size )) < (int) size)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "read()", strerror( errno ));
return -1;
}
}
else
{
if ((curpos = lseek( fd, CCKD_DEVHDR_POS, SEEK_SET )) < 0)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "lseek()", strerror( errno ));
return -1;
}
if ((rc = read( fd, &cdevhdr32, size32 )) < (int) size32)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "read()", strerror( errno ));
return -1;
}
/* Convert 32-bit CCKD/CFBA header to 64-bit CCKD64/CFBA64 */
cdevhdr_to_64();
}
/* Add compressed device header to spaces table */
spc.spc_typ = SPCTAB_CDEVHDR;
spc.spc_off = curpos;
spc.spc_siz = cckd64 ? size : size32;
spc.spc_len = spc.spc_siz;
spc.spc_val = -1;
spc.spc_val2 = -1;
ADD_SPACE( spc );
/* Determine whether endian swaps are going to be needed or not */
swaps_needed = are_swaps_needed( &cdevhdr );
/* Swap compressed device header before processing */
SWAP_CCKD64_DEVHDR( &cdevhdr );
/* Save some values for reporting */
devtype = devhdr.dh_devtyp;
FETCH_LE_FW( heads, devhdr.dh_heads );
FETCH_LE_FW( trksize, devhdr.dh_trksize );
FETCH_LE_FW( cyls, cdevhdr.cdh_cyls );
if (fba)
// (for fba, cyls is total sectors and tracks is blkgrps)
tracks = (cyls + CFBA_BLKS_PER_GRP - 1) / CFBA_BLKS_PER_GRP;
else
tracks = cyls * heads;
/* Locate the CKD/FBA dasd table entry */
if (fba)
{
if (!(fbatab = dasd_lookup( DASD_FBADEV, NULL, devtype, cyls )))
{
// "Device type '%2.2X' not found in dasd table"
FWRMSG( stderr, HHC03005, "E", devtype );
return -1;
}
}
else
{
if (!(ckdtab = dasd_lookup( DASD_CKDDEV, NULL, devtype, cyls )))
{
// "Device type '%2.2X' not found in dasd table"
FWRMSG( stderr, HHC03005, "E", devtype );
return -1;
}
}
/* Read the free space chain and add to table */
if (cdevhdr.free_num)
{
int free_num;
/* Save the number of free spaces */
free_num = (int) cdevhdr.free_num;
/* Init the size of a free space block */
size = (U32) CCKD64_FREEBLK_SIZE;
size32 = (U32) CCKD_FREEBLK_SIZE;
/* First, determine which format the INITIAL free space CHAIN
was written in: old format or "new" format, determined by
whether or not the very first free space block contains the
literal "FREE_BLK" or not (see documentation).
*/
curpos = cdevhdr.free_off; // (position of first free block)
if (lseek( fd, curpos, SEEK_SET ) < 0)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "lseek()", strerror( errno ));
return -1;
}
if (cckd64)
{
if ((rc = read( fd, &freeblk, size )) < (int) size)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "read()", strerror( errno ));
return -1;
}
if (mem_eq( &freeblk, "FREE_BLK", 8))
new_format = true;
}
else // (32-bit CCKD)
{
if ((rc = read( fd, &freeblk32, size32 )) < (int) size32)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "read()", strerror( errno ));
return -1;
}
if (mem_eq( &freeblk32, "FREE_BLK", 8))
new_format = true;
}
/* Now we know HOW to read in the initial free space chain... */
if (new_format)
{
/* Read the entire free space chain in all at once */
int chainbytes = free_num * (cckd64 ? size : size32);
void* freechain = malloc( chainbytes );
if (lseek( fd, curpos + (cckd64 ? size : size32), SEEK_SET ) < 0)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "lseek()", strerror( errno ));
return -1;
}
if ((rc = read( fd, freechain, chainbytes )) < (int) chainbytes)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "read()", strerror( errno ));
return -1;
}
/* Then add each of those free spaces to our table */
{
CCKD64_FREEBLK* block = freechain;
CCKD_FREEBLK* block32 = freechain;
for (i=0; i < free_num; ++i)
{
/* Convert 32-bit CCKD free block to 64-bit */
if (cckd64)
{
memcpy( &freeblk, &block[i], size );
}
else // (32-bit CCKD)
{
memcpy( &freeblk32, &block32[i], size32 );
freeblk.fb_offnxt = freeblk32.fb_offnxt;
freeblk.fb_len = freeblk32.fb_len;
}
/* Add free space entry */
spc.spc_typ = SPCTAB_FREE;
spc.spc_off = freeblk.fb_offset;
spc.spc_siz = freeblk.fb_len;
spc.spc_len = spc.spc_siz;
spc.spc_val = -1;
spc.spc_val2 = -1;
ADD_SPACE( spc );
}
}
/* Clean up after ourselves */
free( freechain );
}
else // (old format: chase each free space block individually)
{
/* Read each entry in the chain one by one */
freeblk.fb_offnxt = curpos; // (init pos of "next" block)
for (i=0; i < free_num; i++)
{
/* Offset of next free space block in the chain */
curpos = freeblk.fb_offnxt;
if (lseek( fd, curpos, SEEK_SET ) < 0)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "lseek()", strerror( errno ));
return -1;
}
if (cckd64)
{
if ((rc = read( fd, &freeblk, size )) < (int) size)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "read()", strerror( errno ));
return -1;
}
}
else // (32-bit CCKD)
{
if ((rc = read( fd, &freeblk32, size32 )) < (int) size32)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "read()", strerror( errno ));
return -1;
}
freeblk.fb_offnxt = freeblk32.fb_offnxt;
freeblk.fb_len = freeblk32.fb_len;
}
/* Add free space entry */
spc.spc_typ = SPCTAB_FREE;
spc.spc_off = curpos;
spc.spc_siz = freeblk.fb_len;
spc.spc_len = spc.spc_siz;
spc.spc_val = -1;
spc.spc_val2 = -1;
ADD_SPACE( spc );
}
}
}
/* Report the dasd device header fields */
memcpy( ser, devhdr.dh_serial, sizeof( devhdr.dh_serial ));
if (fba)
{
// dh_devid: %s (%s-bit C%s%s %s)
// dh_heads: %u (total sectors)
// dh_trksize: %u (sector size)
// dh_devtyp: 0x%02.2X (%s)
// dh_fileseq: 0x%02.2X
// dh_highcyl: %u
// dh_serial: %s
WRMSG( HHC03048, "I", dh_devid_str( imgtyp ),
cckd64 ? "64" : "32",
"FBA",
cckd64 ? "64" : "",
shadow ? "shadow file" : "base image",
heads, trksize,
devhdr.dh_devtyp, fbatab->name,
devhdr.dh_fileseq,
fetch_hw( devhdr.dh_highcyl ),
ser );
}
else
{
// dh_devid: %s (%s-bit C%s%s %s)
// dh_heads: %u
// dh_trksize: %u
// dh_devtyp: 0x%02.2X (%s)
// dh_fileseq: 0x%02.2X
// dh_highcyl: %u
// dh_serial: %s
WRMSG( HHC03022, "I", dh_devid_str( imgtyp ),
cckd64 ? "64" : "32",
"CKD",
cckd64 ? "64" : "",
shadow ? "shadow file" : "base image",
heads, trksize,
devhdr.dh_devtyp, ckdtab->name,
devhdr.dh_fileseq,
fetch_hw( devhdr.dh_highcyl ),
ser );
}
/* Report the compressed device header fields */
len_size = fmt_S64( str_size, (S64) cdevhdr.cdh_size );
len_used = fmt_S64( str_used, (S64) cdevhdr.cdh_used );
len_total = fmt_S64( str_total, (S64) cdevhdr.free_total );
len_largest = fmt_S64( str_largest, (S64) cdevhdr.free_largest );
fmt_S64( track_range, (S64) tracks );
if (fba)
{
// cdh_vrm: %u.%u.%u
// cdh_opts: 0x%02.2X
// num_L1tab: %"PRId32
// num_L2tab: %"PRId32
// cdh_cyls: %"PRIu32" (%s blkgrps)
// cdh_size: 0x%10.10"PRIX64" (%*s bytes)
// cdh_used: 0x%10.10"PRIX64" (%*s bytes)
// free_off: 0x%10.10"PRIX64" (%s format)
// free_total: 0x%10.10"PRIX64" (%*s bytes)
// free_largest: 0x%10.10"PRIX64" (%*s bytes)
// free_num: %"PRId64
// free_imbed: %"PRIu64
// cdh_nullfmt: %u (%s)
// cmp_algo: %u (%s)
// cmp_parm: %"PRId16" %s(%s)
WRMSG( HHC03024, "I"
, (U32) cdevhdr.cdh_vrm[0], (U32) cdevhdr.cdh_vrm[1], (U32) cdevhdr.cdh_vrm[2]
, cdevhdr.cdh_opts
, cdevhdr.num_L1tab
, cdevhdr.num_L2tab
, cyls, track_range
, cdevhdr.cdh_size, (int) max( len_size, len_used ), str_size
, cdevhdr.cdh_used, (int) max( len_used, len_size ), str_used
, cdevhdr.free_off, new_format ? "NEW" : "old"
, cdevhdr.free_total, (int) max( len_total, len_largest ), str_total
, cdevhdr.free_largest, (int) max( len_total, len_largest ), str_largest
, cdevhdr.free_num
, cdevhdr.free_imbed
, (U32) cdevhdr.cdh_nullfmt, cdevhdr.cdh_nullfmt == CKD_NULLTRK_FMT0 ? "ha r0 EOF" :
cdevhdr.cdh_nullfmt == CKD_NULLTRK_FMT1 ? "ha r0" :
cdevhdr.cdh_nullfmt == CKD_NULLTRK_FMT2 ? "linux" : "???"
, (U32) cdevhdr.cmp_algo, !cdevhdr.cmp_algo ? "none" :
(cdevhdr.cmp_algo & CCKD_COMPRESS_ZLIB) ? "zlib" :
(cdevhdr.cmp_algo & CCKD_COMPRESS_BZIP2) ? "bzip2" : "INVALID"
, cdevhdr.cmp_parm
, cdevhdr.cmp_parm < 0 ? "" : " "
, cdevhdr.cmp_parm < 0 ? "default" :
cdevhdr.cmp_parm == 0 ? "none" :
cdevhdr.cmp_parm <= 3 ? "low" :
cdevhdr.cmp_parm <= 6 ? "medium" : "high"
);
}
else
{
// cdh_vrm: %u.%u.%u
// cdh_opts: 0x%02.2X
// num_L1tab: %"PRId32
// num_L2tab: %"PRId32
// cdh_cyls: %"PRIu32" (%s tracks)
// cdh_size: 0x%10.10"PRIX64" (%*s bytes)
// cdh_used: 0x%10.10"PRIX64" (%*s bytes)
// free_off: 0x%10.10"PRIX64" (%s format)
// free_total: 0x%10.10"PRIX64" (%*s bytes)
// free_largest: 0x%10.10"PRIX64" (%*s bytes)
// free_num: %"PRId64
// free_imbed: %"PRIu64
// cdh_nullfmt: %u (%s)
// cmp_algo: %u (%s)
// cmp_parm: %"PRId16" %s(%s)
WRMSG( HHC03023, "I"
, (U32) cdevhdr.cdh_vrm[0], (U32) cdevhdr.cdh_vrm[1], (U32) cdevhdr.cdh_vrm[2]
, cdevhdr.cdh_opts
, cdevhdr.num_L1tab
, cdevhdr.num_L2tab
, cyls, track_range
, cdevhdr.cdh_size, (int) max( len_size, len_used ), str_size
, cdevhdr.cdh_used, (int) max( len_used, len_size ), str_used
, cdevhdr.free_off, new_format ? "NEW" : "old"
, cdevhdr.free_total, (int) max( len_total, len_largest ), str_total
, cdevhdr.free_largest, (int) max( len_total, len_largest ), str_largest
, cdevhdr.free_num
, cdevhdr.free_imbed
, (U32) cdevhdr.cdh_nullfmt, cdevhdr.cdh_nullfmt == CKD_NULLTRK_FMT0 ? "ha r0 EOF" :
cdevhdr.cdh_nullfmt == CKD_NULLTRK_FMT1 ? "ha r0" :
cdevhdr.cdh_nullfmt == CKD_NULLTRK_FMT2 ? "linux" : "???"
, (U32) cdevhdr.cmp_algo, !cdevhdr.cmp_algo ? "none" :
(cdevhdr.cmp_algo & CCKD_COMPRESS_ZLIB) ? "zlib" :
(cdevhdr.cmp_algo & CCKD_COMPRESS_BZIP2) ? "bzip2" : "INVALID"
, cdevhdr.cmp_parm
, cdevhdr.cmp_parm < 0 ? "" : " "
, cdevhdr.cmp_parm < 0 ? "default" :
cdevhdr.cmp_parm == 0 ? "none" :
cdevhdr.cmp_parm <= 3 ? "low" :
cdevhdr.cmp_parm <= 6 ? "medium" : "high"
);
}
/* Retrieve and report garbage collector state, but ONLY if
the image is over 100MB in size. This prevents "scaring"
the user about SEVERELY fragmented files when the file
is too small to be much of a concern, as is usually the
case with e.g. shadow files.
*/
if (cdevhdr.cdh_size > (100 * _1M))
{
int gc = dev_gc_state();
const char *gc_str, *sev;
if (gc <= 1) gc_str = "SEVERELY", sev = "W";
else if (gc <= 2) gc_str = "moderately", sev = "W";
else if (gc <= 3) gc_str = "slightly", sev = "I";
else gc_str = "not", sev = "I";
// "Image is %s fragmented%s"
WRMSG( HHC03020, "I" );
WRMSG( HHC03050, sev, gc_str, gc <= 1 ? "!" : "." );
}
/* cdevhdr inconsistencies check */
hdrerr = 0;
hdrerr |= cdevhdr.cdh_size != filesize && cdevhdr.cdh_size != cdevhdr.free_off ? 0x0001 : 0;
hdrerr |= cdevhdr.cdh_size != cdevhdr.free_total + cdevhdr.cdh_used ? 0x0002 : 0;
hdrerr |= cdevhdr.free_largest > cdevhdr.free_total - cdevhdr.free_imbed ? 0x0004 : 0;
hdrerr |= cdevhdr.free_off == 0 && cdevhdr.free_num != 0 ? 0x0008 : 0;
hdrerr |= cdevhdr.free_off == 0 && cdevhdr.free_total != cdevhdr.free_imbed ? 0x0010 : 0;
hdrerr |= cdevhdr.free_off != 0 && cdevhdr.free_total == 0 ? 0x0020 : 0;
hdrerr |= cdevhdr.free_off != 0 && cdevhdr.free_num == 0 ? 0x0040 : 0;
hdrerr |= cdevhdr.free_num == 0 && cdevhdr.free_total != cdevhdr.free_imbed ? 0x0080 : 0;
hdrerr |= cdevhdr.free_num != 0 && cdevhdr.free_total <= cdevhdr.free_imbed ? 0x0100 : 0;
hdrerr |= cdevhdr.free_imbed > cdevhdr.free_total ? 0x0200 : 0;
if (hdrerr != 0)
{
// "Compressed device header inconsistency(s) found! code: %4.4X"
WRMSG( HHC03020, "I" );
FWRMSG( stderr, HHC03008, "W", hdrerr );
}
/* Save the number of L1 table entries */
num_L1tab = cdevhdr.num_L1tab;
/* Init the size of the L1 table */
size = (num_L1tab * CCKD64_L1ENT_SIZE);
size32 = (num_L1tab * CCKD_L1ENT_SIZE);
/* Allocate room for the L1 table */
if (!(L1tab = (CCKD64_L1ENT*) calloc( 1, size )))
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "calloc()", strerror( errno ));
return -1;
}
/* Read the L1 table */
if (cckd64)
{
/* Read the L1 table */
if ((curpos = lseek( fd, CCKD64_L1TAB_POS, SEEK_SET )) < 0)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "lseek()", strerror( errno ));
return -1;
}
if ((rc = read( fd, L1tab, size )) < (int) size)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "read()", strerror( errno ));
return -1;
}
}
else // (32-bit CCKD)
{
/* Allocate room for the L1 table */
if (!(L1tab32 = (CCKD_L1ENT*) calloc( 1, size32 )))
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "calloc()", strerror( errno ));
return -1;
}
/* Read the L1 table */
if ((curpos = lseek( fd, CCKD_L1TAB_POS, SEEK_SET )) < 0)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "lseek()", strerror( errno ));
return -1;
}
if ((rc = read( fd, L1tab32, size32 )) < (int) size32)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "read()", strerror( errno ));
return -1;
}
/* Convert 32-bit L1 table to 64-bit CCKD64 */
L1tab_to_64();
free( L1tab32 );
L1tab32 = NULL;
}
/* Swap the L1 table before processing it */
SWAP_CCKD64_L1TAB( L1tab );
/* Add the L1 table to spaces table */
spc.spc_typ = SPCTAB_L1;
spc.spc_off = curpos;
spc.spc_siz = cckd64 ? size : size32;
spc.spc_len = spc.spc_siz;
spc.spc_val = 0;
spc.spc_val2 = tracks - 1;
ADD_SPACE( spc );
/* Get past L1 table to where L2 tables should start */
curpos += (cckd64 ? size : size32);
/* Add the calculated L2 tables LOWER bounds to spaces table */
L2_lower_pos = curpos;
spc.spc_typ = SPCTAB_L2LOWER;
spc.spc_off = L2_lower_pos;
spc.spc_siz = 0;
spc.spc_len = 0;
spc.spc_val = -1;
spc.spc_val2 = -1;
ADD_SPACE( spc );
/* Init the size of each L2 table */
size = CCKD64_L2TAB_SIZE;
size32 = CCKD_L2TAB_SIZE;
/* Read in all of the L2 tables */
for (i=0; i < num_L1tab; i++)
{
L1track = (i * 256);
/* Skip non-existent L2 tables */
if (0
|| L1tab[i] == CCKD64_NOSIZE
|| L1tab[i] == CCKD64_MAXSIZE
)
continue; // (skip non-existent L2 table)
/* Read this L2 table */
if ((curpos = lseek( fd, L1tab[i], SEEK_SET )) < 0)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "lseek()", strerror( errno ));
return -1;
}
if (cckd64)
{
if ((rc = read( fd, L2tab, size )) < (int) size)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "read()", strerror( errno ));
return -1;
}
}
else // (32-bit CCKD)
{
if ((rc = read( fd, L2tab32, size32 )) < (int) size32)
{
// "%s error: %s"
FWRMSG( stderr, HHC03006, "E", "read()", strerror( errno ));
return -1;
}
/* Convert 32-bit L2 table to 64-bit CCKD64 */
L2tab_to_64();