Codebase list atop / lintian-fixes/main atopconvert.c
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

atopconvert.c @lintian-fixes/mainraw · history · blame

   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
/*
** ATOP - System & Process Monitor
**
** The program 'atop' offers the possibility to view the activity of 
** the system on system-level as well as process-level.
**
** This program converts a raw logfile created by a particular version
** of atop to (by default) the current version of atop.
** ==========================================================================
** Author:      Gerlof Langeveld
** E-mail:      gerlof.langeveld@atoptool.nl
** Initial:     July/August 2018
** --------------------------------------------------------------------------
** Copyright (C) 2018-2022 Gerlof Langeveld
**
** 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, 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
** --------------------------------------------------------------------------
*/
#include <sys/types.h>
#include <sys/param.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <time.h>
#include <stdio.h>
#include <errno.h>
#include <fcntl.h>
#include <stdlib.h>
#include <signal.h>
#include <ctype.h>
#include <sys/utsname.h>
#include <string.h>
#include <regex.h>
#include <zlib.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <unistd.h>
#include <stdarg.h>

#include "atop.h"
#include "photosyst.h"
#include "photoproc.h"
#include "rawlog.h"

#include "prev/netstats_wrong.h"

#include "prev/photosyst_20.h"
#include "prev/photoproc_20.h"

#include "prev/photosyst_21.h"
#include "prev/photoproc_21.h"

#include "prev/photosyst_22.h"
#include "prev/photoproc_22.h"

#include "prev/photosyst_23.h"
#include "prev/photoproc_23.h"

#include "prev/photosyst_24.h"
#include "prev/photoproc_24.h"

#include "prev/photosyst_25.h"
#include "prev/photoproc_25.h"

#include "prev/photosyst_26.h"
#include "prev/photoproc_26.h"

#include "prev/photosyst_27.h"
#include "prev/photoproc_27.h"

#include "prev/photosyst_28.h"
#include "prev/photoproc_28.h"

#include "prev/photosyst_29.h"
#include "prev/photoproc_29.h"


void	justcopy(void *, void *, count_t, count_t);

void	scpu_to_21(void *, void *, count_t, count_t);
void	sdsk_to_21(void *, void *, count_t, count_t);
void	sint_to_22(void *, void *, count_t, count_t);
void	scpu_to_27(void *, void *, count_t, count_t);
void	smem_to_27(void *, void *, count_t, count_t);
void	sdsk_to_27(void *, void *, count_t, count_t);
void	smem_to_28(void *, void *, count_t, count_t);
void	sdsk_to_28(void *, void *, count_t, count_t);
void	smnu_to_28(void *, void *, count_t, count_t);
void	scnu_to_28(void *, void *, count_t, count_t);
void	tgen_to_21(void *, void *, count_t, count_t);
void	tmem_to_21(void *, void *, count_t, count_t);
void	tgen_to_22(void *, void *, count_t, count_t);
void	tcpu_to_26(void *, void *, count_t, count_t);
void	tmem_to_26(void *, void *, count_t, count_t);
void	tcpu_to_28(void *, void *, count_t, count_t);
void	tmem_to_28(void *, void *, count_t, count_t);

///////////////////////////////////////////////////////////////
// Conversion functions
// --------------------
// The structures with system level and process level info
// consists of sub-structures, generally for cpu, memory,
// disk and network values. These sub-structures might have
// changed from a specific version of atop to the next version.
// For modified sub-structures, conversion functions have to be
// written. These conversion functions will be called in a chained
// way for one version increment at the time. Suppose that a
// raw log is offered that has been created by atop 2.0 to be
// converted to atop 2.3, every sub-structure will be converted
// from 2.0 to 2.1, from 2.1 to 2.2 and finally from 2.2 to 2.3.
// When a sub-structure has NOT been changed from one version to
// another, it will just be copied by the generic conversion
// function 'justcopy' to the proper location in the structure
// of the next version.
// All conversion steps are controlled by the convs[] table.
///////////////////////////////////////////////////////////////

// Generic function that just copies an old structure byte-wise to
// a new structure (new structure implicitly padded with binary zeroes)
//
void
justcopy(void *old, void *new, count_t oldsize, count_t newsize)
{
	if (oldsize)
		memcpy(new, old, newsize > oldsize ? oldsize : newsize);
}

// /////////////////////////////////////////////////////////////////
// Specific functions that convert an old sstat sub-structure to
// a new sub-structure (system level)
// /////////////////////////////////////////////////////////////////
void
scpu_to_21(void *old, void *new, count_t oldsize, count_t newsize)
{
	// cfuture[1] --> cfuture[4] in struct percpu
	//
	struct cpustat_20	*c20 = old;
	struct cpustat_21	*c21 = new;
	int			i;

	memcpy(c21, c20, (char *)&c20->all - (char *)c20);	// base values
	memcpy(&c21->all, &c20->all, sizeof(struct percpu_20));

	for (i=0; i < MAXCPU_20; i++)
	    memcpy( &(c21->cpu[i]), &(c20->cpu[i]), sizeof(struct percpu_20));
}

void
sdsk_to_21(void *old, void *new, count_t oldsize, count_t newsize)
{
	// MAXDSK and MAXLVM have been enlarged
	//
	struct dskstat_20	*d20 = old;
	struct dskstat_21	*d21 = new;

	d21->ndsk 	= d20->ndsk;
	d21->nmdd 	= d20->nmdd;
	d21->nlvm 	= d20->nlvm;

	memcpy(d21->dsk, d20->dsk, sizeof d20->dsk);
	memcpy(d21->mdd, d20->mdd, sizeof d20->mdd);
	memcpy(d21->lvm, d20->lvm, sizeof d20->lvm);
}

void
sint_to_22(void *old, void *new, count_t oldsize, count_t newsize)
{
	// members 'type' and 'speedp' added to struct perintf
	//
	struct intfstat_21	*i21 = old;
	struct intfstat_22	*i22 = new;
	int			i;

	i22->nrintf 	= i21->nrintf;

	for (i=0; i < MAXINTF_21; i++)
	{
		memcpy(&(i22->intf[i]), &(i21->intf[i]),
					sizeof(struct perintf_21));

		// correct last members by refilling
		// 
		i22->intf[i].type 	= '?';
		i22->intf[i].speed	= i21->intf[i].speed;
		i22->intf[i].speedp	= i21->intf[i].speed;
		i22->intf[i].duplex	= i21->intf[i].duplex;

		memset(i22->intf[i].cfuture, 0, sizeof i22->intf[i].cfuture);
	}
}

void
scpu_to_27(void *old, void *new, count_t oldsize, count_t newsize)
{
	// cfuture[2] --> cfuture[4] in struct percpu
	//
	struct cpustat_26	*c26 = old;
	struct cpustat_27	*c27 = new;
	int			i;

	memcpy(c27, c26, (char *)&c26->all - (char *)c26);	// base values
	memcpy(&c27->all, &c26->all, sizeof(struct percpu_26));

	for (i=0; i < MAXCPU_26; i++)
	    memcpy( &(c27->cpu[i]), &(c26->cpu[i]), sizeof(struct percpu_26));
}

void
smem_to_27(void *old, void *new, count_t oldsize, count_t newsize)
{
	struct memstat_26	*m26 = old;
	struct memstat_27	*m27 = new;

	memcpy(m27, m26, sizeof *m26);

	m27->oomkills = -1;	// explicitly define 'unused'
}

void
sdsk_to_27(void *old, void *new, count_t oldsize, count_t newsize)
{
	struct dskstat_26	*d26 = old;
	struct dskstat_27	*d27 = new;
	int			i;

	memcpy(d27, d26, oldsize);

	for (i=0; i < d27->ndsk; i++)
	    d27->dsk[i].ndisc = -1;	// explicitly define 'unused'

	for (i=0; i < d27->nmdd; i++)
	    d27->mdd[i].ndisc = -1;	// explicitly define 'unused'

	for (i=0; i < d27->nlvm; i++)
	    d27->lvm[i].ndisc = -1;	// explicitly define 'unused'
}

void
smem_to_28(void *old, void *new, count_t oldsize, count_t newsize)
{
	struct memstat_27	*m27 = old;
	struct memstat_28	*m28 = new;

	memcpy(m28, m27, sizeof *m27);

	m28->tcpsock		= 0;	// new counter
	m28->udpsock		= 0;	// new counter

	m28->commitlim		= m27->commitlim;
	m28->committed		= m27->committed;
	m28->shmem		= m27->shmem;
	m28->shmrss		= m27->shmrss;
	m28->shmswp		= m27->shmswp;
	m28->slabreclaim	= m27->slabreclaim;
	m28->tothugepage	= m27->tothugepage;
	m28->freehugepage	= m27->freehugepage;
	m28->hugepagesz		= m27->hugepagesz;
	m28->vmwballoon		= m27->vmwballoon;
	m28->zfsarcsize		= m27->zfsarcsize;
	m28->swapcached		= m27->swapcached;
	m28->ksmsharing		= m27->ksmsharing;
	m28->ksmshared		= m27->ksmshared;
	m28->zswstored		= m27->zswstored;
	m28->zswtotpool		= m27->zswtotpool;
	m28->oomkills		= m27->oomkills;
	m28->compactstall	= m27->compactstall;
	m28->pgmigrate		= m27->pgmigrate;
	m28->numamigrate	= m27->numamigrate;

        m28->pgouts		= 0;	// new counter
        m28->pgins		= 0;	// new counter
        m28->pagetables		= 0;	// new counter

        memset(m28->cfuture, 0, sizeof m28->cfuture);
}

void
sdsk_to_28(void *old, void *new, count_t oldsize, count_t newsize)
{
	struct dskstat_27	*d27 = old;
	struct dskstat_28	*d28 = new;
	int			i;

	d28->ndsk	= d27->ndsk;
	d28->nmdd	= d27->nmdd;
	d28->nlvm	= d27->nlvm;

	for (i=0; i < d28->ndsk; i++)
	    memcpy(&(d28->dsk[i]), &(d27->dsk[i]), sizeof d27->dsk[i]);

	for (i=0; i < d28->nmdd; i++)
	    memcpy(&(d28->mdd[i]), &(d27->mdd[i]), sizeof d27->mdd[i]);

	for (i=0; i < d28->nlvm; i++)
	    memcpy(&(d28->lvm[i]), &(d27->lvm[i]), sizeof d27->lvm[i]);
}

void
smnu_to_28(void *old, void *new, count_t oldsize, count_t newsize)
{
	struct memnuma_27	*n27 = old;
	struct memnuma_28	*n28 = new;
	int			i;

	n28->nrnuma = n27->nrnuma;

	for (i=0; i < n28->nrnuma; i++)
	{
		n28->numa[i].numanr 		= i;
        	n28->numa[i].frag		= n27->numa[i].frag;
        	n28->numa[i].totmem		= n27->numa[i].totmem;
        	n28->numa[i].freemem		= n27->numa[i].freemem;
        	n28->numa[i].filepage		= n27->numa[i].filepage;
        	n28->numa[i].dirtymem		= n27->numa[i].dirtymem;
        	n28->numa[i].filepage		= n27->numa[i].filepage;
        	n28->numa[i].slabmem		= n27->numa[i].slabmem;
        	n28->numa[i].slabreclaim	= n27->numa[i].slabreclaim;
        	n28->numa[i].active		= n27->numa[i].active;
        	n28->numa[i].inactive		= n27->numa[i].inactive;
        	n28->numa[i].shmem		= n27->numa[i].shmem;
        	n28->numa[i].tothp		= n27->numa[i].tothp;
	} 
}

void
scnu_to_28(void *old, void *new, count_t oldsize, count_t newsize)
{
	struct cpunuma_27	*n27 = old;
	struct cpunuma_28	*n28 = new;
	int			i;

	n28->nrnuma = n27->nrnuma;

	for (i=0; i < n28->nrnuma; i++)
	{
		n28->numa[i].numanr 	= i;
        	n28->numa[i].nrcpu	= n27->numa[i].nrcpu;
        	n28->numa[i].stime	= n27->numa[i].stime;
        	n28->numa[i].utime	= n27->numa[i].utime;
        	n28->numa[i].ntime	= n27->numa[i].ntime;
        	n28->numa[i].itime	= n27->numa[i].itime;
        	n28->numa[i].wtime	= n27->numa[i].wtime;
        	n28->numa[i].Itime	= n27->numa[i].Itime;
        	n28->numa[i].Stime	= n27->numa[i].Stime;
        	n28->numa[i].steal	= n27->numa[i].steal;
        	n28->numa[i].guest	= n27->numa[i].guest;
	} 
}


// /////////////////////////////////////////////////////////////////
// Specific functions that convert an old tstat sub-structure to
// a new sub-structure (process level)
// /////////////////////////////////////////////////////////////////
void
tgen_to_21(void *old, void *new, count_t oldsize, count_t newsize)
{
	// member 'envid' inserted in struct gen
	//
	struct gen_20	*g20 = old;
	struct gen_21	*g21 = new;

	memcpy(g21, g20, (char *)g20->ifuture - (char *)g20);	// base values
	g21->envid = 0;
}

void
tmem_to_21(void *old, void *new, count_t oldsize, count_t newsize)
{
	// members 'pmem' and 'cfuture[4]' inserted in struct mem
	//
	struct mem_20	*m20 = old;
	struct mem_21	*m21 = new;

	m21->minflt	= m20->minflt;
	m21->majflt	= m20->majflt;
	m21->vexec	= m20->vexec;
	m21->vmem	= m20->vmem;
	m21->rmem	= m20->rmem;
	m21->pmem	= 0;
	m21->vgrow	= m20->vgrow;
	m21->rgrow	= m20->rgrow;
	m21->vdata	= m20->vdata;
	m21->vstack	= m20->vstack;
	m21->vlibs	= m20->vlibs;
	m21->vswap	= m20->vswap;
}

void
tgen_to_22(void *old, void *new, count_t oldsize, count_t newsize)
{
	// member 'envid' removed, members 'ctid' and 'vpid' inserted in struct gen
	//
	struct gen_21	*g21 = old;
	struct gen_22	*g22 = new;

	memcpy(g22, g21, (char *)&g21->envid - (char *)g21);	// copy base values
	g22->ctid = g21->envid;
	g22->vpid = 0;
}

void
tcpu_to_26(void *old, void *new, count_t oldsize, count_t newsize)
{
	// unused values appear not to be zeroed in version 2.5
	//
	struct cpu_25	*c25 = old;
	struct cpu_26	*c26 = new;

	memcpy(c26, c25, sizeof *c26);		// copy entire struct

        memset(&(c26->wchan), 0, sizeof c26->wchan);
	c26->rundelay = 0;
}

void
tmem_to_26(void *old, void *new, count_t oldsize, count_t newsize)
{
	// unused values appear not to be zeroed in version 2.5
	//
	struct mem_25	*m25 = old;
	struct mem_26	*m26 = new;

	memcpy(m26, m25, sizeof *m26);		// copy entire struct

	m26->vlock = 0;
}

void
tcpu_to_28(void *old, void *new, count_t oldsize, count_t newsize)
{
	// cgroup counters inserted
	//
	struct cpu_27	*c27 = old;
	struct cpu_28	*c28 = new;

        c28->utime	= c27->utime;
        c28->stime	= c27->stime;
        c28->nice	= c27->nice;
        c28->prio	= c27->prio;
        c28->rtprio	= c27->rtprio;
        c28->policy	= c27->policy;
        c28->curcpu	= c27->curcpu;
        c28->sleepavg	= c27->sleepavg;
        c28->rundelay	= c27->rundelay;

	memcpy(c28->wchan, c27->wchan, sizeof c28->wchan);

        c28->blkdelay	= 0;
        c28->cgcpuweight= 0;
        c28->cgcpumax	= 0;
        c28->cgcpumaxr	= 0;

	memset(c28->ifuture, 0, sizeof c28->ifuture);
	memset(c28->cfuture, 0, sizeof c28->cfuture);
}

void
tmem_to_28(void *old, void *new, count_t oldsize, count_t newsize)
{
	struct mem_27	*m27 = old;
	struct mem_28	*m28 = new;

	memcpy(m28, m27, sizeof *m27);		// copy old struct

	m28->cgmemmax	= 0;
	m28->cgmemmaxr	= 0;
	m28->cgswpmax 	= 0;
	m28->cgswpmaxr	= 0;

	memset(m28->cfuture, 0, sizeof m28->cfuture);
}

///////////////////////////////////////////////////////////////
// conversion definition for various structs in sstat and tstat
//
#define	SETVERSION(major, minor)	((major << 8) | minor)
#define	STROFFSET(str, begin)		((long)((char *)str - (char *)begin))

struct sconvstruct {
	count_t	 structsize;
	void	*structptr;
	void	(*structconv)(void *, void *, count_t, count_t);
};

struct tconvstruct {
	count_t	 structsize;
	long	structoffset;
	void	(*structconv)(void *, void *, count_t, count_t);
};

struct sstat_20		sstat_20;
struct sstat_21		sstat_21;
struct sstat_22		sstat_22;
struct sstat_23		sstat_23;
struct sstat_24		sstat_24;
struct sstat_25		sstat_25;
struct sstat_26		sstat_26;
struct sstat_27		sstat_27;
struct sstat_28		sstat_28;
struct sstat_29		sstat_29;
struct sstat		sstat;

struct tstat_20		tstat_20;
struct tstat_21		tstat_21;
struct tstat_22		tstat_22;
struct tstat_23		tstat_23;
struct tstat_24		tstat_24;
struct tstat_25		tstat_25;
struct tstat_26		tstat_26;
struct tstat_27		tstat_27;
struct tstat_28		tstat_28;
struct tstat_29		tstat_29;
struct tstat		tstat;

struct convertall {
	int			version;	// version of raw log

	unsigned int		sstatlen;	// length of struct sstat
	void			*sstat;		// pointer to sstat struct

	unsigned int		tstatlen;	// length of struct tstat
	void			*tstat;		// pointer to tstat structs

	// conversion definition for subparts within sstat
	struct sconvstruct 	scpu;
	struct sconvstruct 	smem;
	struct sconvstruct 	snet;
	struct sconvstruct 	sintf;
	struct sconvstruct 	sdsk;	
	struct sconvstruct 	snfs;
	struct sconvstruct 	scfs;
	struct sconvstruct 	swww;
	struct sconvstruct 	spsi;
	struct sconvstruct 	sgpu;
	struct sconvstruct 	sifb;
        struct sconvstruct	smnum;
        struct sconvstruct	scnum;
        struct sconvstruct	sllc;

	// conversion definition for subparts within tstat
	struct tconvstruct 	tgen;
	struct tconvstruct 	tcpu;
	struct tconvstruct 	tdsk;
	struct tconvstruct 	tmem;
	struct tconvstruct 	tnet;
	struct tconvstruct 	tgpu;
} convs[] = 
{
	{SETVERSION(2,0),
		 sizeof(struct sstat_20), 	&sstat_20,
		 sizeof(struct tstat_20), 	NULL,

		{sizeof(struct cpustat_20),  	&sstat_20.cpu,	NULL},
		{sizeof(struct memstat_20),  	&sstat_20.mem,	NULL},
		{sizeof(struct netstat_20),  	&sstat_20.net,	NULL},
		{sizeof(struct intfstat_20), 	&sstat_20.intf,	NULL},
		{sizeof(struct dskstat_20),  	&sstat_20.dsk,	NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{sizeof(struct wwwstat_20),  	&sstat_20.www,	NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},

		{sizeof(struct gen_20),  
			STROFFSET(&tstat_20.gen, &tstat_20),	NULL},
		{sizeof(struct cpu_20),
			STROFFSET(&tstat_20.cpu, &tstat_20),	NULL},
		{sizeof(struct dsk_20), 
			STROFFSET(&tstat_20.dsk, &tstat_20),	NULL},
		{sizeof(struct mem_20),
			STROFFSET(&tstat_20.mem, &tstat_20),	NULL},
		{sizeof(struct net_20),
			STROFFSET(&tstat_20.net, &tstat_20),	NULL},
		{0,  				0,		NULL},
	},

	{SETVERSION(2,1), // 2.0 --> 2.1
		 sizeof(struct sstat_21), 	&sstat_21,
		 sizeof(struct tstat_21), 	NULL,

		{sizeof(struct cpustat_21),  	&sstat_21.cpu,	scpu_to_21},
		{sizeof(struct memstat_21),  	&sstat_21.mem,	justcopy},
		{sizeof(struct netstat_21),  	&sstat_21.net,	justcopy},
		{sizeof(struct intfstat_21), 	&sstat_21.intf,	justcopy},
		{sizeof(struct dskstat_21),  	&sstat_21.dsk,	sdsk_to_21},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{sizeof(struct wwwstat_21),  	&sstat_21.www,	justcopy},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},

		{sizeof(struct gen_21),
			STROFFSET(&tstat_21.gen, &tstat_21),	tgen_to_21},
		{sizeof(struct cpu_21),
			STROFFSET(&tstat_21.cpu, &tstat_21),	justcopy},
		{sizeof(struct dsk_21), 
			STROFFSET(&tstat_21.dsk, &tstat_21),	justcopy},
		{sizeof(struct mem_21),
			STROFFSET(&tstat_21.mem, &tstat_21),	tmem_to_21},
		{sizeof(struct net_21),
			STROFFSET(&tstat_21.net, &tstat_21),	justcopy},
		{0,  				0,		NULL},
	},

	{SETVERSION(2,2), // 2.1 --> 2.2
		 sizeof(struct sstat_22), 	&sstat_22,
		 sizeof(struct tstat_22), 	NULL,

		{sizeof(struct cpustat_22),  	&sstat_22.cpu,	justcopy},
		{sizeof(struct memstat_22),  	&sstat_22.mem,	justcopy},
		{sizeof(struct netstat_22),  	&sstat_22.net,	justcopy},
		{sizeof(struct intfstat_22), 	&sstat_22.intf,	sint_to_22},
		{sizeof(struct dskstat_22),  	&sstat_22.dsk,	justcopy},
		{sizeof(struct nfsstat_22),  	&sstat_22.nfs,	NULL},
		{sizeof(struct contstat_22), 	&sstat_22.cfs,	NULL},
		{sizeof(struct wwwstat_22),  	&sstat_22.www,	justcopy},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},

		{sizeof(struct gen_22), 
			STROFFSET(&tstat_22.gen, &tstat_22),	tgen_to_22},
		{sizeof(struct cpu_22),
			STROFFSET(&tstat_22.cpu, &tstat_22),	justcopy},
		{sizeof(struct dsk_22),
			STROFFSET(&tstat_22.dsk, &tstat_22),	justcopy},
		{sizeof(struct mem_22),
			STROFFSET(&tstat_22.mem, &tstat_22),	justcopy},
		{sizeof(struct net_22),
			STROFFSET(&tstat_22.net, &tstat_22),	justcopy},
		{0,  				0,		NULL},
	},

	{SETVERSION(2,3), // 2.2 --> 2.3
		 sizeof(struct sstat_23), 	&sstat_23,
		 sizeof(struct tstat_23), 	NULL,

		{sizeof(struct cpustat_23),  	&sstat_23.cpu,	justcopy},
		{sizeof(struct memstat_23),  	&sstat_23.mem,	justcopy},
		{sizeof(struct netstat_23),  	&sstat_23.net,	justcopy},
		{sizeof(struct intfstat_23), 	&sstat_23.intf,	justcopy},
		{sizeof(struct dskstat_23),  	&sstat_23.dsk,	justcopy},
		{sizeof(struct nfsstat_23),  	&sstat_23.nfs,	justcopy},
		{sizeof(struct contstat_23), 	&sstat_23.cfs,	justcopy},
		{sizeof(struct wwwstat_23),  	&sstat_23.www,	justcopy},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},

		{sizeof(struct gen_23),
			STROFFSET(&tstat_23.gen, &tstat_23),	justcopy},
		{sizeof(struct cpu_23),
			STROFFSET(&tstat_23.cpu, &tstat_23),	justcopy},
		{sizeof(struct dsk_23),
			STROFFSET(&tstat_23.dsk, &tstat_23),	justcopy},
		{sizeof(struct mem_23), 
			STROFFSET(&tstat_23.mem, &tstat_23),	justcopy},
		{sizeof(struct net_23),
			STROFFSET(&tstat_23.net, &tstat_23),	justcopy},
		{0,  				0,		NULL},
	},

	{SETVERSION(2,4), // 2.3 --> 2.4
		 sizeof(struct sstat_24),	&sstat_24,
		 sizeof(struct tstat_24), 	NULL,

		{sizeof(struct cpustat_24),  	&sstat_24.cpu,	justcopy},
		{sizeof(struct memstat_24),  	&sstat_24.mem,	justcopy},
		{sizeof(struct netstat_24),  	&sstat_24.net,	justcopy},
		{sizeof(struct intfstat_24), 	&sstat_24.intf,	justcopy},
		{sizeof(struct dskstat_24),  	&sstat_24.dsk,	justcopy},
		{sizeof(struct nfsstat_24),  	&sstat_24.nfs,	justcopy},
		{sizeof(struct contstat_24), 	&sstat_24.cfs,	justcopy},
		{sizeof(struct wwwstat_24),  	&sstat_24.www,	justcopy},
		{0,  				&sstat_24.psi,	NULL},
		{0,  				&sstat_24.gpu,	NULL},
		{0,  				&sstat_24.ifb,	NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},

		{sizeof(struct gen_24),
			STROFFSET(&tstat_24.gen, &tstat_24),	justcopy},
		{sizeof(struct cpu_24),
			STROFFSET(&tstat_24.cpu, &tstat_24),	justcopy},
		{sizeof(struct dsk_24),
			STROFFSET(&tstat_24.dsk, &tstat_24),	justcopy},
		{sizeof(struct mem_24),
			STROFFSET(&tstat_24.mem, &tstat_24),	justcopy},
		{sizeof(struct net_24),
			STROFFSET(&tstat_24.net, &tstat_24),	justcopy},
		{sizeof(struct gpu_24),
			STROFFSET(&tstat_24.gpu, &tstat_24),	justcopy},
	},

	{SETVERSION(2,5), // 2.4 --> 2.5
		 sizeof(struct sstat_25),	&sstat_25,
		 sizeof(struct tstat_25), 	NULL,

		{sizeof(struct cpustat_25),  	&sstat_25.cpu,	justcopy},
		{sizeof(struct memstat_25),  	&sstat_25.mem,	justcopy},
		{sizeof(struct netstat_25),  	&sstat_25.net,	justcopy},
		{sizeof(struct intfstat_25), 	&sstat_25.intf,	justcopy},
		{sizeof(struct dskstat_25),  	&sstat_25.dsk,	justcopy},
		{sizeof(struct nfsstat_25),  	&sstat_25.nfs,	justcopy},
		{sizeof(struct contstat_25), 	&sstat_25.cfs,	justcopy},
		{sizeof(struct wwwstat_25),  	&sstat_25.www,	justcopy},
		{sizeof(struct pressure_25),  	&sstat_25.psi,	justcopy},
		{sizeof(struct gpustat_25),  	&sstat_25.gpu,	justcopy},
		{sizeof(struct ifbstat_25),  	&sstat_25.ifb,	justcopy},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},

		{sizeof(struct gen_25),
			STROFFSET(&tstat_25.gen, &tstat_25),	justcopy},
		{sizeof(struct cpu_25),
			STROFFSET(&tstat_25.cpu, &tstat_25),	justcopy},
		{sizeof(struct dsk_25),
			STROFFSET(&tstat_25.dsk, &tstat_25),	justcopy},
		{sizeof(struct mem_25),
			STROFFSET(&tstat_25.mem, &tstat_25),	justcopy},
		{sizeof(struct net_25),
			STROFFSET(&tstat_25.net, &tstat_25),	justcopy},
		{sizeof(struct gpu_25),
			STROFFSET(&tstat_25.gpu, &tstat_25),	justcopy},
	},

	{SETVERSION(2,6), // 2.5 --> 2.6
		 sizeof(struct sstat_26),	&sstat_26,
		 sizeof(struct tstat_26), 	NULL,

		{sizeof(struct cpustat_26),  	&sstat_26.cpu,	justcopy},
		{sizeof(struct memstat_26),  	&sstat_26.mem,	justcopy},
		{sizeof(struct netstat_26),  	&sstat_26.net,	justcopy},
		{sizeof(struct intfstat_26), 	&sstat_26.intf,	justcopy},
		{sizeof(struct dskstat_26),  	&sstat_26.dsk,	justcopy},
		{sizeof(struct nfsstat_26),  	&sstat_26.nfs,	justcopy},
		{sizeof(struct contstat_26), 	&sstat_26.cfs,	justcopy},
		{sizeof(struct wwwstat_26),  	&sstat_26.www,	justcopy},
		{sizeof(struct pressure_26),  	&sstat_26.psi,	justcopy},
		{sizeof(struct gpustat_26),  	&sstat_26.gpu,	justcopy},
		{sizeof(struct ifbstat_26),  	&sstat_26.ifb,	justcopy},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},
		{0,  				NULL,		NULL},

		{sizeof(struct gen_26),
			STROFFSET(&tstat_26.gen, &tstat_26),	justcopy},
		{sizeof(struct cpu_26),
			STROFFSET(&tstat_26.cpu, &tstat_26),	tcpu_to_26},
		{sizeof(struct dsk_26),
			STROFFSET(&tstat_26.dsk, &tstat_26),	justcopy},
		{sizeof(struct mem_26),
			STROFFSET(&tstat_26.mem, &tstat_26),	tmem_to_26},
		{sizeof(struct net_26),
			STROFFSET(&tstat_26.net, &tstat_26),	justcopy},
		{sizeof(struct gpu_26),
			STROFFSET(&tstat_26.gpu, &tstat_26),	justcopy},
	},

	{SETVERSION(2,7), // 2.6 --> 2.7
		 sizeof(struct sstat_27),	&sstat_27,
		 sizeof(struct tstat_27), 	NULL,

		{sizeof(struct cpustat_27),  	&sstat_27.cpu,	scpu_to_27},
		{sizeof(struct memstat_27),  	&sstat_27.mem,	smem_to_27},
		{sizeof(struct netstat_27),  	&sstat_27.net,	justcopy},
		{sizeof(struct intfstat_27), 	&sstat_27.intf,	justcopy},
		{sizeof(struct dskstat_27),  	&sstat_27.dsk,	sdsk_to_27},
		{sizeof(struct nfsstat_27),  	&sstat_27.nfs,	justcopy},
		{sizeof(struct contstat_27), 	&sstat_27.cfs,	justcopy},
		{sizeof(struct wwwstat_27),  	&sstat_27.www,	justcopy},
		{sizeof(struct pressure_27),  	&sstat_27.psi,	justcopy},
		{sizeof(struct gpustat_27),  	&sstat_27.gpu,	justcopy},
		{sizeof(struct ifbstat_27),  	&sstat_27.ifb,	justcopy},
		{0,  				&sstat_27.memnuma,	NULL},
		{0,  				&sstat_27.cpunuma,	NULL},
		{0,  				NULL,		NULL},

		{sizeof(struct gen_27),
			STROFFSET(&tstat_27.gen, &tstat_27),	justcopy},
		{sizeof(struct cpu_27),
			STROFFSET(&tstat_27.cpu, &tstat_27),	justcopy},
		{sizeof(struct dsk_27),
			STROFFSET(&tstat_27.dsk, &tstat_27),	justcopy},
		{sizeof(struct mem_27),
			STROFFSET(&tstat_27.mem, &tstat_27),	justcopy},
		{sizeof(struct net_27),
			STROFFSET(&tstat_27.net, &tstat_27),	justcopy},
		{sizeof(struct gpu_27),
			STROFFSET(&tstat_27.gpu, &tstat_27),	justcopy},
	},

	{SETVERSION(2,8), // 2.7 --> 2.8
		 sizeof(struct sstat_28),	&sstat_28,
		 sizeof(struct tstat_28), 	NULL,

		{sizeof(struct cpustat_28),  	&sstat_28.cpu,	   justcopy},
		{sizeof(struct memstat_28),  	&sstat_28.mem,	   smem_to_28},
		{sizeof(struct netstat_28),  	&sstat_28.net,	   justcopy},
		{sizeof(struct intfstat_28), 	&sstat_28.intf,	   justcopy},
		{sizeof(struct dskstat_28),  	&sstat_28.dsk,	   sdsk_to_28},
		{sizeof(struct nfsstat_28),  	&sstat_28.nfs,	   justcopy},
		{sizeof(struct contstat_28), 	&sstat_28.cfs,	   justcopy},
		{sizeof(struct wwwstat_28),  	&sstat_28.www,	   justcopy},
		{sizeof(struct pressure_28),  	&sstat_28.psi,	   justcopy},
		{sizeof(struct gpustat_28),  	&sstat_28.gpu,	   justcopy},
		{sizeof(struct ifbstat_28),  	&sstat_28.ifb,	   justcopy},
		{sizeof(struct memnuma_28), 	&sstat_28.memnuma, smnu_to_28},
		{sizeof(struct cpunuma_28),  	&sstat_28.cpunuma, scnu_to_28},
		{0,  				&sstat_28.llc,	   NULL},

		{sizeof(struct gen_28),
			STROFFSET(&tstat_28.gen, &tstat_28),	justcopy},
		{sizeof(struct cpu_28),
			STROFFSET(&tstat_28.cpu, &tstat_28),	tcpu_to_28},
		{sizeof(struct dsk_28),
			STROFFSET(&tstat_28.dsk, &tstat_28),	justcopy},
		{sizeof(struct mem_28),
			STROFFSET(&tstat_28.mem, &tstat_28),	tmem_to_28},
		{sizeof(struct net_28),
			STROFFSET(&tstat_28.net, &tstat_28),	justcopy},
		{sizeof(struct gpu_28),
			STROFFSET(&tstat_28.gpu, &tstat_28),	justcopy},
	},

	{SETVERSION(2,9), // 2.8 --> 2.9
		 sizeof(struct sstat_29),	&sstat_29,
		 sizeof(struct tstat_29), 	NULL,

		{sizeof(struct cpustat_29),  	&sstat_29.cpu,	   justcopy},
		{sizeof(struct memstat_29),  	&sstat_29.mem,	   justcopy},
		{sizeof(struct netstat_29),  	&sstat_29.net,	   justcopy},
		{sizeof(struct intfstat_29), 	&sstat_29.intf,	   justcopy},
		{sizeof(struct dskstat_29),  	&sstat_29.dsk,	   justcopy},
		{sizeof(struct nfsstat_29),  	&sstat_29.nfs,	   justcopy},
		{sizeof(struct contstat_29), 	&sstat_29.cfs,	   justcopy},
		{sizeof(struct wwwstat_29),  	&sstat_29.www,	   justcopy},
		{sizeof(struct pressure_29),  	&sstat_29.psi,	   justcopy},
		{sizeof(struct gpustat_29),  	&sstat_29.gpu,	   justcopy},
		{sizeof(struct ifbstat_29),  	&sstat_29.ifb,	   justcopy},
		{sizeof(struct memnuma_29), 	&sstat_29.memnuma, justcopy},
		{sizeof(struct cpunuma_29),  	&sstat_29.cpunuma, justcopy},
		{sizeof(struct llcstat_29),  	&sstat_29.llc,	   justcopy},

		{sizeof(struct gen_29),
			STROFFSET(&tstat_29.gen, &tstat_29),	justcopy},
		{sizeof(struct cpu_29),
			STROFFSET(&tstat_29.cpu, &tstat_29),	justcopy},
		{sizeof(struct dsk_29),
			STROFFSET(&tstat_29.dsk, &tstat_29),	justcopy},
		{sizeof(struct mem_29),
			STROFFSET(&tstat_29.mem, &tstat_29),	justcopy},
		{sizeof(struct net_29),
			STROFFSET(&tstat_29.net, &tstat_29),	justcopy},
		{sizeof(struct gpu_29),
			STROFFSET(&tstat_29.gpu, &tstat_29),	justcopy},
	},
};

int	numconvs = sizeof convs / sizeof(struct convertall);

///////////////////////////////////////////////////////////////
// End of conversion functions
///////////////////////////////////////////////////////////////

// function prototypes
//
static int	openin(char *);
static void	readin(int, void *, int);

static int	openout(char *);
static void	writeout(int, void *, int);
static void	writesamp(int, struct rawrecord *, void *, int, void *,
				int, int);

static void	copy_file(int, int);
static void	convert_samples(int, int, struct rawheader *, int,  int);
static void	do_sconvert(struct sconvstruct *, struct sconvstruct *);
static void	do_tconvert(void *, void *,
			struct tconvstruct *, struct tconvstruct *);

static int	getrawsstat(int, struct sstat *, int);
static int	getrawtstat(int, struct tstat *, int, int);
static void	testcompval(int, char *);

int
main(int argc, char *argv[])
{
	int			ifd, ofd;
	struct rawheader	irh, orh;
	int			i, versionix, targetix = -1;
	int			c, major, minor, targetvers;
	char			*infile, *outfile;

	// verify the command line arguments:
	// 	optional flags and mandatory input and output filename
	//
	if (argc < 2)
		prusage(argv[0]);

	while ((c = getopt(argc, argv, "?t:")) != EOF)
	{
		switch (c)
		{
		   case '?':		// usage wanted ?
			prusage(argv[0]);
			break;

		   case 't':		// target version
			if ( sscanf(optarg, "%d.%d", &major, &minor) != 2)
			{
				fprintf(stderr,
					"target version format: major.minor\n");
				prusage(argv[0]);
			}

			targetvers = SETVERSION(major, minor);

			// search for target version in conversion table
			//
			for (i=0, targetix=-1; i < numconvs; i++)
			{
				if (targetvers == convs[i].version)
				{
					targetix = i;
					break;
				}
			}

			if (targetix == -1)	// incorrect target version?
			{
				fprintf(stderr,
					"target version incorrect!");
				prusage(argv[0]);
			}
			break;

		   default:
			prusage(argv[0]);
			break;
		}
	}

	if (optind >= argc)
		prusage(argv[0]);

	infile  = argv[optind++];

	// determine target version (default: latest version)
	//
	if (targetix == -1)	// no specific target version requested?
		targetix = numconvs - 1;

	// open the input file and verify magic number
	//
	if ( (ifd = openin(infile)) == -1)
	{
		prusage(argv[0]);
		exit(2);
	}

	readin(ifd, &irh, sizeof irh);

	if (irh.magic != MYMAGIC)
	{
		fprintf(stderr,
			"File %s does not contain atop/atopsar data "
			"(wrong magic number)\n", infile);
		exit(3);
	}

	printf("Version of %s: %d.%d\n", infile,
			(irh.aversion >> 8) & 0x7f, irh.aversion & 0xff);

	if (irh.rawheadlen != sizeof(struct rawheader) ||
	    irh.rawreclen  != sizeof(struct rawrecord)   )
	{
		fprintf(stderr,
			"File %s created with atop compiled "
			"for other CPU architecture\n", infile);
		exit(3);
	}

	// search for version of input file in conversion table
	//
	for (i=0, versionix=-1; i < numconvs; i++)
	{
		if (convs[i].version == (irh.aversion & 0x7fff))
		{
			versionix = i;
			break;
		}
	}

	if (versionix == -1)
	{
		fprintf(stderr,
			"This version is not supported for conversion!\n");
		exit(11);
	}

	if (versionix > targetix)
	{
		fprintf(stderr, "Downgrading of version is not supported!\n");
		exit(11);
	}

	if (irh.sstatlen != convs[versionix].sstatlen ||
	    irh.tstatlen != convs[versionix].tstatlen   )
	{
 		fprintf(stderr,
 			"File %s contains unexpected internal structures\n",
 			infile);
 		fprintf(stderr, "sstat: %d/%d, tstat: %d/%d\n",
 			irh.sstatlen, convs[versionix].sstatlen,
 	    		irh.tstatlen, convs[versionix].tstatlen);
 				
 		exit(11);
	}

	// handle the output file 
	//
	if (optind >= argc)
		exit(0);

	outfile = argv[optind++];

	if (strcmp(infile, outfile) == 0)
	{
		fprintf(stderr,
	 	    "input file and output file should not be identical!\n");
		exit(12);
	}

	// open the output file 
	//
	if ( (ofd = openout(outfile)) == -1)
	{
		prusage(argv[0]);
		exit(4);
	}

	// write raw header to output file
	//
	orh = irh;

	orh.aversion	= convs[targetix].version | 0x8000;
	orh.sstatlen	= convs[targetix].sstatlen;
	orh.tstatlen	= convs[targetix].tstatlen;

	writeout(ofd, &orh, sizeof orh);

	printf("Version of %s: %d.%d\n", outfile,
			(orh.aversion >> 8) & 0x7f, orh.aversion & 0xff);

	// copy and convert every sample, unless the version of the
	// input file is identical to the target version (then just copy)
	//
	if (versionix < targetix)
		convert_samples(ifd, ofd, &irh, versionix, targetix);
	else
		copy_file(ifd, ofd);

	close(ifd);
	close(ofd);

	return 0;
}

//
// Function that reads the input file sample-by-sample,
// converts it to an output sample and writes that to the output file
//
static void
convert_samples(int ifd, int ofd, struct rawheader *irh, int ivix, int ovix)
{
	struct rawrecord	irr, orr;
	int			i, t;
	count_t			count = 0;

	while ( read(ifd, &irr, irh->rawreclen) == irh->rawreclen)
	{
		count++;

		// read compressed system-level statistics and decompress
		//
		if ( !getrawsstat(ifd, convs[ivix].sstat, irr.scomplen) )
			exit(7);

		// read compressed process-level statistics and decompress
		//
		convs[ivix].tstat = malloc(convs[ivix].tstatlen * irr.ndeviat);

		ptrverify(convs[ivix].tstat,
			"Malloc failed for %d stored tasks\n", irr.ndeviat);

		if ( !getrawtstat(ifd, convs[ivix].tstat,
					irr.pcomplen, irr.ndeviat) )
			exit(7);

		// STEP-BY-STEP CONVERSION FROM OLD VERSION TO NEW VERSION
		// 
		for (i=ivix; i < ovix; i++)
		{
			// convert system-level statistics to newer version
			//
			memset(convs[i+1].sstat, 0, convs[i+1].sstatlen);

			do_sconvert(&(convs[i].scpu),   &(convs[i+1].scpu));
			do_sconvert(&(convs[i].smem),   &(convs[i+1].smem));
			do_sconvert(&(convs[i].snet),   &(convs[i+1].snet));
			do_sconvert(&(convs[i].sintf),  &(convs[i+1].sintf));
			do_sconvert(&(convs[i].sdsk),   &(convs[i+1].sdsk));
			do_sconvert(&(convs[i].snfs),   &(convs[i+1].snfs));
			do_sconvert(&(convs[i].scfs),   &(convs[i+1].scfs));
			do_sconvert(&(convs[i].spsi),   &(convs[i+1].spsi));
			do_sconvert(&(convs[i].sgpu),   &(convs[i+1].sgpu));
			do_sconvert(&(convs[i].sifb),   &(convs[i+1].sifb));
			do_sconvert(&(convs[i].smnum),  &(convs[i+1].smnum));
			do_sconvert(&(convs[i].scnum),  &(convs[i+1].scnum));
			do_sconvert(&(convs[i].swww),   &(convs[i+1].swww));

			// convert process-level statistics to newer version
			//
			convs[i+1].tstat = malloc(convs[i+1].tstatlen *
								irr.ndeviat);
			ptrverify(convs[ivix].tstat,
			   "Malloc failed for %d stored tasks\n", irr.ndeviat);

			memset(convs[i+1].tstat, 0, convs[i+1].tstatlen *
								irr.ndeviat);

			for (t=0; t < irr.ndeviat; t++)	// for every task
			{
				do_tconvert(
				    convs[i].tstat  +(t*convs[i].tstatlen), 
				    convs[i+1].tstat+(t*convs[i+1].tstatlen),
				    &(convs[i].tgen), &(convs[i+1].tgen));

				do_tconvert(
				    convs[i].tstat  +(t*convs[i].tstatlen), 
				    convs[i+1].tstat+(t*convs[i+1].tstatlen),
				    &(convs[i].tcpu), &(convs[i+1].tcpu));

				do_tconvert(
				    convs[i].tstat  +(t*convs[i].tstatlen), 
				    convs[i+1].tstat+(t*convs[i+1].tstatlen),
				    &(convs[i].tdsk), &(convs[i+1].tdsk));

				do_tconvert(
				    convs[i].tstat  +(t*convs[i].tstatlen), 
				    convs[i+1].tstat+(t*convs[i+1].tstatlen),
				    &(convs[i].tmem), &(convs[i+1].tmem));

				do_tconvert(
				    convs[i].tstat  +(t*convs[i].tstatlen), 
				    convs[i+1].tstat+(t*convs[i+1].tstatlen),
				    &(convs[i].tnet), &(convs[i+1].tnet));

				do_tconvert(
				    convs[i].tstat  +(t*convs[i].tstatlen), 
				    convs[i+1].tstat+(t*convs[i+1].tstatlen),
				    &(convs[i].tgpu), &(convs[i+1].tgpu));
			}

			free(convs[i].tstat);
		}

		// write new sample to output file
		//
		orr = irr;

		writesamp(ofd, &orr, convs[ovix].sstat, convs[ovix].sstatlen,
		                     convs[ovix].tstat, convs[ovix].tstatlen,
		                     irr.ndeviat);

		// cleanup
		// 
		free(convs[ovix].tstat);
	}

	printf("Samples converted: %llu\n", count);
}

//
// Function that calls the appropriate function to convert a struct
// from the sstat structure
//
static void
do_sconvert(struct sconvstruct *cur, struct sconvstruct *next)
{
	if (next->structconv)
	{
		(*(next->structconv))(cur->structptr,  next->structptr,
		                      cur->structsize, next->structsize);
	}
}

//
// Function that calls the appropriate function to convert a struct
// from one of the tstat structures
//
static void
do_tconvert(void *curtstat,          void *nexttstat,
	    struct tconvstruct *cur, struct tconvstruct *next)
{
	if (next->structconv)
	{
		(*(next->structconv))(curtstat + cur->structoffset,
		                      nexttstat + next->structoffset,
		                      cur->structsize, next->structsize);
	}
}


//
// Function to copy input file transparently to output file
//
static void
copy_file(int ifd, int ofd)
{
	unsigned char	buf[64*1024];
	int		nr, nw;

	(void) lseek(ifd, 0, SEEK_SET);
	(void) lseek(ofd, 0, SEEK_SET);

	while ( (nr = read(ifd, buf, sizeof buf)) > 0)
	{
		if ( (nw = write(ofd, buf, nr)) < nr)
		{
			if (nw == -1)
			{
				perror("write output file");
				exit(42);
			}
			else
			{
 				fprintf(stderr,
 					"Output file saturated\n");
				exit(42);
			}
		}
	}

	if (nr == -1)
	{
		perror("read input file");
		exit(42);
	}
	else
	{
		printf("Raw file copied (version already up-to-date)\n");
	}
}

//
// Function that opens an existing raw file and
// verifies the magic number
//
static int
openin(char *infile)
{
	int	rawfd;

	/*
	** open raw file for reading
	*/
	if ( (rawfd = open(infile, O_RDONLY)) == -1)
	{
		fprintf(stderr, "%s - ", infile);
		perror("open for reading");
		return -1;
	}

	return rawfd;
}

//
// Function that reads a chunk of bytes from
// the input raw file
//
static void
readin(int rawfd, void *buf, int size)
{
	/*
	** read the requested chunk and verify
	*/
	if ( read(rawfd, buf, size) < size)
	{
		fprintf(stderr, "can not read raw file\n");
		close(rawfd);
		exit(9);
	}
}


//
// Function that creates a raw log for output
//
static int
openout(char *outfile)
{
	int	rawfd;

	/*
	** create new output file
	*/
	if ( (rawfd = creat(outfile, 0666)) == -1)
	{
		fprintf(stderr, "%s - ", outfile);
		perror("create raw output file");
		return -1;
	}

	return rawfd;
}

//
// Function that reads a chunk of bytes from
// the input raw file
//
static void
writeout(int rawfd, void *buf, int size)
{
	/*
	** write the provided chunk and verify
	*/
	if ( write(rawfd, buf, size) < size)
	{
		fprintf(stderr, "can not write raw file\n");
		close(rawfd);
		exit(10);
	}
}

//
// Function that shows the usage message
//
void
prusage(char *name)
{
	fprintf(stderr,
		"Usage: %s [-t version] rawinput [rawoutput]\n", name);
	fprintf(stderr,
		"\t-t version      target version (default: %d.%d) for output\n",
			(convs[numconvs-1].version >> 8) & 0x7f,
			 convs[numconvs-1].version  & 0x7f);

	exit(1);
}


//
// Function to read the system-level statistics from the current offset
//
static int
getrawsstat(int rawfd, struct sstat *sp, int complen)
{
	Byte		*compbuf;
	unsigned long	uncomplen = sizeof(struct sstat);
	int		rv;

	compbuf = malloc(complen);

	ptrverify(compbuf, "Malloc failed for reading compressed sysstats\n");

	if ( read(rawfd, compbuf, complen) < complen)
	{
		free(compbuf);
		fprintf(stderr,
			"Failed to read %d bytes for system\n", complen);
		return 0;
	}

	rv = uncompress((Byte *)sp, &uncomplen, compbuf, complen);

	testcompval(rv, "uncompress");

	free(compbuf);

	return 1;
}

//
// Function to read the process-level statistics from the current offset
//
static int
getrawtstat(int rawfd, struct tstat *pp, int complen, int ndeviat)
{
	Byte		*compbuf;
	unsigned long	uncomplen = sizeof(struct tstat) * ndeviat;
	int		rv;

	compbuf = malloc(complen);

	ptrverify(compbuf, "Malloc failed for reading compressed procstats\n");

	if ( read(rawfd, compbuf, complen) < complen)
	{
		free(compbuf);
		fprintf(stderr,
			"Failed to read %d bytes for tasks\n", complen);
		return 0;
	}

	rv = uncompress((Byte *)pp, &uncomplen, compbuf, complen);

	testcompval(rv, "uncompress");

	free(compbuf);

	return 1;
}

//
// Function that writes a new sample to the output file
//
static void
writesamp(int ofd, struct rawrecord *rr,
	 void *sstat, int sstatlen, void *tstat, int tstatlen, int ntask)
{
	int			rv;
	Byte			scompbuf[sstatlen], *pcompbuf;
	unsigned long		scomplen = sizeof scompbuf;
	unsigned long		pcomplen = tstatlen * ntask;

	/*
	** compress system- and process-level statistics
	*/
	rv = compress(scompbuf, &scomplen,
				(Byte *)sstat, (unsigned long)sstatlen);

	testcompval(rv, "compress");

	pcompbuf = malloc(pcomplen);

	ptrverify(pcompbuf, "Malloc failed for compression buffer\n");

	rv = compress(pcompbuf, &pcomplen, (Byte *)tstat,
						(unsigned long)pcomplen);

	testcompval(rv, "compress");

	rr->scomplen	= scomplen;
	rr->pcomplen	= pcomplen;

	if ( write(ofd, rr, sizeof *rr) == -1)
	{
		perror("write raw record");
		exit(7);
	}

	/*
	** write compressed system status structure to file
	*/
	if ( write(ofd, scompbuf, scomplen) == -1)
	{
		perror("write raw status record");
		exit(7);
	}

	/*
	** write compressed list of process status structures to file
	*/
	if ( write(ofd, pcompbuf, pcomplen) == -1)
	{
		perror("write raw process record");
		exit(7);
	}

	free(pcompbuf);
}


//
// check success of (de)compression
//
static void
testcompval(int rv, char *func)
{
	switch (rv)
	{
	   case Z_OK:
	   case Z_STREAM_END:
	   case Z_NEED_DICT:
		break;

	   case Z_MEM_ERROR:
		fprintf(stderr, "%s: failed due to lack of memory\n", func);
		exit(7);

	   case Z_BUF_ERROR:
		fprintf(stderr, "%s: failed due to lack of room in buffer\n",
								func);
		exit(7);

   	   case Z_DATA_ERROR:
		fprintf(stderr, 
		        "%s: failed due to corrupted/incomplete data\n", func);
		exit(7);

	   default:
		fprintf(stderr,
		        "%s: unexpected error %d\n", func, rv);
		exit(7);
	}
}

//
// generic pointer verification after malloc
//
void
ptrverify(const void *ptr, const char *errormsg, ...)
{
        if (!ptr)
        {
                va_list args;
                va_start(args, errormsg);
                vfprintf(stderr, errormsg, args);
                va_end  (args);

                exit(13);
        }
}