summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/testprot/tpctl/results.c
blob: 02665bf03a5f45c5c16b151dacdfaff3510585b0 (plain) (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
// --------------------------------------------
//
// Copyright (c) 1990 Microsoft Corporation
//
// Module Name:
//
//     results.c
//
// Abstract:
//
//     This module handles the printing of the results of a given command.
//
// Author:
//
//     Tom Adams (tomad) 2-Apr-1991
//
// Revision History:
//
//     2-Apr-1991    tomad
//
//     created
//
//     Sanjeev Katariya (sanjeevk)
//         4-12-1993   #5963    Events printed out are not being used/tested  for one to one
//                              correspondence The IndicationStatus. Thereby I am adding a
//                              MAY_DIFFER flag to the event
//
//     Tim Wynsma (timothyw)  4-27-94
//         Added performance testing
//                            5-18-94
//         Revised output format for performance tests; cleanup
//                            6-08-94
//         Chgd perf output format for client/server model
//
// --------------------------------------------

#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>

#include <windows.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "tpctl.h"
#include "parse.h"



VOID
TpctlPrintResults(
    PREQUEST_RESULTS Results,
    DWORD CmdCode,
    NDIS_OID OID
    )

// ----------
//
// Routine Description:
//
// Arguments:
//
// Return Value:
//
// ---------

{
    DWORD Status;
    LPSTR TmpBuf;
    DWORD BytesWritten;
    BOOL ErrorReturned = FALSE;

    TmpBuf = GlobalBuf;

    TmpBuf += (BYTE)sprintf(TmpBuf,"\n\tCmdCode = %s\n",
                                TpctlGetCmdCode( CmdCode ));

    if ( CmdCode == SETINFO )
    {
        //ASSERT( Results->OID == OID );
        //ASSERT( Results->NdisRequestType == NdisRequestSetInformation );

        TmpBuf += (BYTE)sprintf(TmpBuf,"\tOID = %d\n",OID);
    }

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tReturn Status = %s\n",
                                TpctlGetStatus( Results->RequestStatus ));

    if ( Results->RequestStatus != STATUS_SUCCESS )
    {
        ErrorReturned = TRUE;
    }

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tRequest Pended = %s",
                                Results->RequestPended ? "TRUE" : "FALSE");

    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER" );

    if ( CmdCode == OPEN )
    {
        if ( Results->OpenRequestStatus != NDIS_STATUS_SUCCESS )
        {
            TmpBuf += (BYTE)sprintf(TmpBuf,"\n\tWARNING: Secondary Open Request failed.\n");
            TmpBuf += (BYTE)sprintf(TmpBuf,"\tRequest OID = 0x%08lX\n",Results->OID);
            TmpBuf += (BYTE)sprintf(TmpBuf,"\tRequest Returned Status = %s\n",
                                TpctlGetStatus( Results->OpenRequestStatus ));

            if ( Results->OpenRequestStatus != STATUS_SUCCESS )
            {
                ErrorReturned = TRUE;
            }

            TmpBuf += (BYTE)sprintf(TmpBuf,"\tBytesWritten = %d\n",
                                Results->BytesReadWritten);

            TmpBuf += (BYTE)sprintf(TmpBuf,"\tBytesNeeded = %d\n\n",
                                Results->BytesNeeded);

            TmpBuf += (BYTE)sprintf(TmpBuf,"\n\tThe open instance exists but some tests may not\n");
            TmpBuf += (BYTE)sprintf(TmpBuf,"\twork properly due to this failure.\n");
        }
    }

    if ( Verbose )
    {
        if ( !WriteFile(GetStdHandle( STD_OUTPUT_HANDLE ),
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to screen failed, returned 0x%lx\n",(PVOID)Status);
        }
    }

    if ( CommandsFromScript )
    {
        if ( !WriteFile(Scripts[ScriptIndex].LogHandle,
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to logfile failed, returned 0x%lx\n",(PVOID)Status);
        }

    }
    else if ( CommandLineLogging )
    {
        if( !WriteFile( CommandLineLogHandle,
                        GlobalBuf,
                        (TmpBuf-GlobalBuf),
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to logfile failed, returned 0x%lx\n",(PVOID)Status);
        }
    }
}



VOID
TpctlPrintStressResults(
    IN PSTRESS_RESULTS Results,
    IN BOOL Ack10
    )

// ---------
//
// Routine Description:
//
// Arguments:
//
// Return Value:
//
// --------

{
    PGLOBAL_COUNTERS gc;
    PINSTANCE_COUNTERS ic;
    DWORD i;
    DWORD Status;
    LPSTR TmpBuf;
    DWORD BytesWritten;


    //ASSERT( Results->Signature == STRESS_RESULTS_SIGNATURE );

    TmpBuf = GlobalBuf;
    TmpBuf += (BYTE)sprintf(TmpBuf,"\nCLIENT STRESS STATISTICS:\n\n");
    TmpBuf += (BYTE)sprintf(TmpBuf,"Client Address %02X-%02X-%02X-%02X-%02X-%02X - ",
            Results->Address[0],Results->Address[1],Results->Address[2],
            Results->Address[3],Results->Address[4],Results->Address[5]);
    TmpBuf += (BYTE)sprintf(TmpBuf,"OpenInstance %d",Results->OpenInstance);

    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER\n" );
    gc = &Results->Global;

    for ( i=0;i<Results->NumServers;i++ )
    {
        ic = &Results->Servers[i].Instance;
        gc->Sends += ic->Sends;
        gc->Receives += ic->Receives;
        gc->CorruptRecs = ic->CorruptRecs;
    }

    TmpBuf += (BYTE)sprintf(TmpBuf,"Total Packets Sent:\t\t%10lu\n",
                            gc->Sends);
    TmpBuf += (BYTE)sprintf(TmpBuf,"Total Packets Received:\t\t%10lu\n",
                            gc->Receives);

    if ( Ack10 == TRUE )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"Total Packets Lost:\t\t%10lu\n\n",
                                (( 10 * gc->Sends ) - gc->Receives ));
    }
    else
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"Total Packets Lost:\t\t%10lu\n\n",
                                ( gc->Sends - gc->Receives ));
    }

    if ( gc->CorruptRecs > 0 )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"Corrupted Packet Receives:\t%10lu\n\n",
            gc->CorruptRecs);
    }

    if ( gc->InvalidPacketRecs > 0 )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"Invalid Packet Receives:\t%10lu\n\n",
            gc->InvalidPacketRecs);
    }

    //
    // Display the number of packets sent/received per second.
    //

    TmpBuf += (BYTE)sprintf(TmpBuf,"Packets Per Second:\t\t%10lu",
        Results->PacketsPerSecond );

    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER\n" );

    //
    // And then print out the information about each of the Servers
    // involved in the test.
    //

    TmpBuf += (BYTE)sprintf(TmpBuf,"The Client had %d Server(s) for this test as follows:",
        Results->NumServers);

    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER\n" );

    for ( i=0;i<Results->NumServers;i++ )
    {
        //ASSERT( Results->Servers[i].Signature == STRESS_RESULTS_SIGNATURE );

        TmpBuf += (BYTE)sprintf(TmpBuf,"Server # %d - ",i+1);
        TmpBuf += (BYTE)sprintf(TmpBuf,"Address %02X-%02X-%02X-%02X-%02X-%02X - ",
            Results->Servers[i].Address[0],Results->Servers[i].Address[1],
            Results->Servers[i].Address[2],Results->Servers[i].Address[3],
            Results->Servers[i].Address[4],Results->Servers[i].Address[5]);

        TmpBuf += (BYTE)sprintf(TmpBuf,"OpenInstance %d",
            Results->Servers[i].OpenInstance);

        ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER" );
    }

    TmpBuf += (BYTE)sprintf(TmpBuf,"\nSERVER STRESS STATISTICS:\n\n");
    TmpBuf += (BYTE)sprintf(TmpBuf,"Server Instance Counters collected on the Client:\n\n");
    TmpBuf += (BYTE)sprintf(TmpBuf,"Server #");

    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",i+1);
    }
    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER\n" );

    // Number of packets sent to the server.

    TmpBuf += (BYTE)sprintf(TmpBuf,"S:\t");

    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
                                Results->Servers[i].Instance.Sends);
    }
    TmpBuf += (BYTE)sprintf(TmpBuf,"\n");

    // Number of packets received from the server.

    TmpBuf += (BYTE)sprintf(TmpBuf,"R:\t");

    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
                                Results->Servers[i].Instance.Receives);
    }
    TmpBuf += (BYTE)sprintf(TmpBuf,"\n");

    // Number of packets lost in transit to the server and back.

    TmpBuf += (BYTE)sprintf(TmpBuf,"L:\t");

    for ( i=0;i<Results->NumServers;i++ )
    {
        if ( Ack10 == TRUE )
        {
            TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
                (( 10 * Results->Servers[i].Instance.Sends ) -
                  Results->Servers[i].Instance.Receives ));
        }
        else
        {
            TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
                ( Results->Servers[i].Instance.Sends -
                  Results->Servers[i].Instance.Receives ));
        }
    }
    TmpBuf += (BYTE)sprintf(TmpBuf,"\n");

    // Number of packet sends that pended.

    TmpBuf += (BYTE)sprintf(TmpBuf,"SP:\t");

    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].Instance.SendPends);
    }
    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER" );

    // Number of packet sends pending that completed.

    TmpBuf += (BYTE)sprintf(TmpBuf,"SC:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].Instance.SendComps);
    }
    ADD_DIFF_FLAG( TmpBuf, "EQUAL_LAST" );

    // Number of packet sends that failed.

    TmpBuf += (BYTE)sprintf(TmpBuf,"SF:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].Instance.SendFails);
    }
    TmpBuf += (BYTE)sprintf(TmpBuf,"\n");

    // Number of corrupted packets received.

    TmpBuf += (BYTE)sprintf(TmpBuf,"CR:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].Instance.CorruptRecs);
    }
    TmpBuf += (BYTE)sprintf(TmpBuf,"\n");

    TmpBuf += (BYTE)sprintf(TmpBuf,"\nServer Instance Counters collected on the Server:\n\n");

    // Number of packets received from the server.

    TmpBuf += (BYTE)sprintf(TmpBuf,"R:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].S_Instance.Receives);
    }
    TmpBuf += (BYTE)sprintf(TmpBuf,"\n");

    // Number of packets sent to the server.

    TmpBuf += (BYTE)sprintf(TmpBuf,"S:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].S_Instance.Sends);
    }
    TmpBuf += (BYTE)sprintf(TmpBuf,"\n");

    // Number of packets lost in transit to the server and back.

    TmpBuf += (BYTE)sprintf(TmpBuf,"L:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        if ( Ack10 == TRUE )
        {
            TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
                (( 10 * Results->Servers[i].S_Instance.Receives ) -
                   Results->Servers[i].S_Instance.Sends ));
        }
        else
        {
            TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
                ( Results->Servers[i].S_Instance.Receives -
                  Results->Servers[i].S_Instance.Sends ));
        }
    }
    TmpBuf += (BYTE)sprintf(TmpBuf,"\n");

    // Number of packets sends that failed.

    TmpBuf += (BYTE)sprintf(TmpBuf,"SF:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].S_Instance.SendFails);
    }
    TmpBuf += (BYTE)sprintf(TmpBuf,"\n");

    // Number of packets sends that pended.

    TmpBuf += (BYTE)sprintf(TmpBuf,"SP:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].S_Instance.SendPends);
    }
    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER" );

    // Number of packets sends pending that completed.

    TmpBuf += (BYTE)sprintf(TmpBuf,"SC:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].S_Instance.SendComps);
    }
    ADD_DIFF_FLAG( TmpBuf, "EQUAL_LAST" );

    // Number of transfer datas on packets.

    TmpBuf += (BYTE)sprintf(TmpBuf,"TD:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].S_Instance.XferData);
    }
    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER" );

    // Number of transfer datas on packets that pended.

    TmpBuf += (BYTE)sprintf(TmpBuf,"TDP:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].S_Instance.XferDataPends);
    }
    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER" );

    // Number of transfer datas on packets that completed.

    TmpBuf += (BYTE)sprintf(TmpBuf,"TDC:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].S_Instance.XferDataComps);
    }
    ADD_DIFF_FLAG( TmpBuf, "EQUAL_LAST" );

    // Number of transfer datas on packets that failed.

    TmpBuf += (BYTE)sprintf(TmpBuf,"TDF:\t");
    for ( i=0;i<Results->NumServers;i++ )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"%10lu",
            Results->Servers[i].S_Instance.XferDataFails);
    }
    TmpBuf += (BYTE)sprintf(TmpBuf,"\n");

    if ( Verbose )
    {
        if ( !WriteFile(GetStdHandle( STD_OUTPUT_HANDLE ),
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to screen failed, returned 0x%lx\n",(PVOID)Status);
        }
    }

    if ( CommandsFromScript )
    {
        if ( !WriteFile(Scripts[ScriptIndex].LogHandle,
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to logfile failed, returned 0x%lx\n",(PVOID)Status);
        }

    }
    else if ( CommandLineLogging )
    {
        if ( !WriteFile(CommandLineLogHandle,
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to logfile failed, returned 0x%lx\n",(PVOID)Status);
        }
    }

    TpctlZeroStressStatistics( Results );
}



VOID
TpctlPrintSendResults(
    PSEND_RECEIVE_RESULTS Results
    )

// ----
//
// Routine Description:
//
// Arguments:
//
// Return Value:
//
// -----

{
    DWORD Status;
    LPSTR TmpBuf;
    DWORD BytesWritten;


    //ASSERT( Results->Signature == SENDREC_RESULTS_SIGNATURE );

    TmpBuf = GlobalBuf;

    TmpBuf += (BYTE)sprintf(TmpBuf,"\n\tPacket Sends          = %10lu\n",
                                Results->Counters.Sends);

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tPacket Pends          = %10lu",
                                Results->Counters.SendPends);

    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER" );

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tPacket Send Completes = %10lu",
                                Results->Counters.SendComps);

    ADD_DIFF_FLAG( TmpBuf, "EQUAL_LAST" );

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tPacket Send Fails     = %10lu\n",
                                Results->Counters.SendFails);

    if ( Verbose )
    {
        if ( !WriteFile(GetStdHandle( STD_OUTPUT_HANDLE ),
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to screen failed, returned 0x%lx\n",(PVOID)Status);
        }
    }

    if ( CommandsFromScript )
    {
        if ( !WriteFile(Scripts[ScriptIndex].LogHandle,
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to logfile failed, returned 0x%lx\n",(PVOID)Status);
        }

    }
    else if ( CommandLineLogging )
    {
        if ( !WriteFile(CommandLineLogHandle,
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to logfile failed, returned 0x%lx\n",(PVOID)Status);
        }
    }
}



VOID
TpctlPrintReceiveResults(
    PSEND_RECEIVE_RESULTS Results
    )

// ------
//
// Routine Description:
//
// Arguments:
//
// Return Value:
//
// ----

{
    DWORD Status;
    LPSTR TmpBuf;
    DWORD BytesWritten;

    //ASSERT( Results->Signature == SENDREC_RESULTS_SIGNATURE );

    TmpBuf = GlobalBuf;

    // Receive statistics
    TmpBuf += (BYTE)sprintf(TmpBuf,"\n\tPacket Receives                = %10lu\n",
                                Results->Counters.Receives);

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tPacket Receive Completes       = %10lu",
                                Results->Counters.ReceiveComps);

    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER" );

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tCorrupt Receives               = %10lu\n",
                                Results->Counters.CorruptRecs);


    // RESEND initiated statistics
    TmpBuf += (BYTE)sprintf(TmpBuf,"\n\tRESEND initiated Packet Sends          = %10lu\n",
                                Results->Counters.Sends);

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tRESEND initiated Packet Send Pends     = %10lu",
                                Results->Counters.SendPends);

    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER" );

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tRESEND initiated Packet Send Completes = %10lu",
                                Results->Counters.SendComps);

    ADD_DIFF_FLAG( TmpBuf, "EQUAL_LAST" );

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tRESEND initiated Packet Send Fails     = %10lu\n",
                                Results->Counters.SendFails);

    // Transfer Data statistics

    TmpBuf += (BYTE)sprintf(TmpBuf,"\n\tPacket Transfer Data           = %10lu\n",
                                Results->Counters.XferData);

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tPacket Transfer Data Pends     = %10lu",
                                Results->Counters.XferDataPends);

    ADD_DIFF_FLAG( TmpBuf, "MAY_DIFFER" );

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tPacket Transfer Data Completes = %10lu",
                                Results->Counters.XferDataComps);

    ADD_DIFF_FLAG( TmpBuf, "EQUAL_LAST" );

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tPacket Transfer Data Fails     = %10lu\n",
                                Results->Counters.XferDataFails);

    if ( Verbose )
    {
        if ( !WriteFile(GetStdHandle(STD_OUTPUT_HANDLE),
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to screen failed, returned 0x%lx\n",(PVOID)Status);
        }
    }

    if ( CommandsFromScript )
    {
        if ( !WriteFile(Scripts[ScriptIndex].LogHandle,
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to logfile failed, returned 0x%lx\n",(PVOID)Status);
        }

    }
    else if ( CommandLineLogging )
    {
        if ( !WriteFile(CommandLineLogHandle,
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to logfile failed, returned 0x%lx\n",(PVOID)Status);
        }
    }
}


VOID
TpctlPrintPerformResults(
    PPERF_RESULTS Results
    )

// ----
//
// Routine Description:
//
// Arguments:
//
// Return Value:
//
// -----

{
    DWORD   Status;
    LPSTR   TmpBuf;
    DWORD   BytesWritten;
    ULONG   speed;
    double  d_speed;
    PULONG  KernelPercent;
    ULONG   NumCpus;

    ASSERT( Results->Signature == PERF_RESULTS_SIGNATURE );
    if (!Results->ResultsExist)
    {
        return;
    }

    if (Results->Mode < 4)
    {
       NumCpus = CpuUsageGetData(&KernelPercent, Results->Milliseconds);
    }
    else if (Results->Mode < 6)
    {
       NumCpus = CpuUsageGetData(&KernelPercent, Results->S_Milliseconds);
    }
    TmpBuf = GlobalBuf;

    switch(Results->Mode)
    {
        case 0:         // client -> address
            TmpBuf += (BYTE)sprintf(TmpBuf, "\n\nPerformance Test 0: Client -> Address\n\n");
            break;

        case 1:         // client -> server
            TmpBuf += (BYTE)sprintf(TmpBuf, "\n\nPerformance Test 1: Client -> Server\n\n");
            break;

        case 2:         // client -> server, server ACKS
            TmpBuf += (BYTE)sprintf(TmpBuf, "\n\nPerformance Test 2: Client -> Server with ACKS\n\n");
            break;

        case 3:         // client -> server, server -> client
            TmpBuf += (BYTE)sprintf(TmpBuf, "\n\nPerformance Test 3: Client <-> Server\n\n");
            break;

        case 4:         // server -> client
            TmpBuf += (BYTE)sprintf(TmpBuf, "\n\nPerformance Test 4: Server -> Client\n\n");
            break;

        case 5:         // client REQS, server -> client
            TmpBuf += (BYTE)sprintf(TmpBuf, "\n\nPerformance Test 5: Server -> Client with REQS\n\n");
            break;

        default:
            printf("\n\nUnknown performance Test: %d\n\n", Results->Mode);
            return;

    }
    if (!NumCpus)
    {
        TmpBuf += (BYTE)sprintf(TmpBuf, "Cpu usage information not available\n\n");
    }
    else if (NumCpus == 1)
    {
        if (KernelPercent[0] > 1000)
        {
            KernelPercent[0] = 1000;
        }
        TmpBuf += (BYTE)sprintf(TmpBuf, "Cpu usage = %d.%d%%\n\n",KernelPercent[0]/10, KernelPercent[0]%10);
    }
    else
    {
        ULONG  cpucnt;
        ULONG  *procPercent;

        procPercent = &KernelPercent[1];
        TmpBuf += (BYTE)sprintf(TmpBuf, "Cpu usage per processor:  ");

        for(cpucnt=0; cpucnt < NumCpus; cpucnt++)
        {
            if ( (cpucnt != 0) && ((cpucnt % 4) == 0) )
            {
                ADD_SKIP_FLAG( TmpBuf, "SKIP_LINE" );
                TmpBuf += (BYTE)sprintf(TmpBuf, "                          ");
            }
            if (*procPercent > 1000)
            {
                *procPercent = 1000;
            }
            TmpBuf += (BYTE)sprintf(TmpBuf, "#%d - %d.%d%%   ",
                        cpucnt, *procPercent/10, *procPercent%10);
        }
        ADD_SKIP_FLAG( TmpBuf, "SKIP_LINE" );
        ADD_SKIP_FLAG( TmpBuf, "SKIP_LINE" );
        TmpBuf += (BYTE)sprintf(TmpBuf, "Average cpu usage = %d.%d%%\n\n",
                                KernelPercent[0]/10, KernelPercent[0]%10);
    }


    TmpBuf += (BYTE)sprintf(TmpBuf, "Sending %d packets of %d bytes each\n\n",
                            Results->PacketCount, Results->PacketSize);

    if (Results->Mode < 4)
    {
        TmpBuf += (BYTE)sprintf(TmpBuf, "Client transmission statistics\n\n");

        TmpBuf += (BYTE)sprintf(TmpBuf,"\tPackets Sent          = %10lu\n", Results->Sends);
        if (Results->SendFails)
        {
            TmpBuf += (BYTE)sprintf(TmpBuf,"\tPacket Send Failures  = %10lu\n",
                                    Results->SendFails);
        }
        if (Results -> Restarts)
        {
            TmpBuf += (BYTE)sprintf(TmpBuf,"\tRestarts Required     = %10lu\n",
                                    Results->Restarts);
        }
        TmpBuf += (BYTE)sprintf(TmpBuf,"\tElapsed time          = %10lu milliseconds\n",
                                Results->Milliseconds);

        d_speed = (1.0 * Results->Sends) / Results->Milliseconds;
        speed   = (ULONG)((1000.0 * d_speed) + 0.5);

        TmpBuf += (BYTE)sprintf(TmpBuf,"\tTransmit Rate         = %10lu packets per second\n",
                                speed);

        d_speed *= Results->PacketSize;
        speed   = (ULONG)(d_speed + 0.5);

        TmpBuf += (BYTE)sprintf(TmpBuf,"\t                      = %10lu Kbytes per second\n\n",
                                speed);

        if (NumCpus && (Results->Mode < 2))
        {
            d_speed *= 100.0;
            d_speed /= KernelPercent[0];
            speed = (ULONG)(d_speed + 0.5);
            TmpBuf += (BYTE)sprintf(TmpBuf, "\tSend KB/sec/cpu       = %8lu.%u\n\n", speed/10, speed%10);
        }

        if (Results->Mode > 0)
        {
            TmpBuf += (BYTE)sprintf(TmpBuf, "Server reception statistics\n\n");
            TmpBuf += (BYTE)sprintf(TmpBuf,"\n\tPackets Received      = %10lu\n",
                                            Results->S_Receives);
            if (Results->S_Receives != Results->PacketCount)
            {
                TmpBuf += (BYTE)sprintf(TmpBuf,"\tPackets Lost          = %10lu\n",
                                            Results->PacketCount - Results->S_Receives);
            }
            if (Results->S_SelfReceives)
            {
                TmpBuf += (BYTE)sprintf(TmpBuf,"\tOwn Packets Received  = %10lu\n",
                                        Results->S_SelfReceives);
            }
        }
    }

    if (Results->Mode > 2)
    {
        TmpBuf += (BYTE)sprintf(TmpBuf, "\nServer transmission statistics\n\n");

        TmpBuf += (BYTE)sprintf(TmpBuf,"\n\tPackets Sent          = %10lu\n", Results->S_Sends);
        if (Results->S_SendFails)
        {
            TmpBuf += (BYTE)sprintf(TmpBuf,"\tPacket Send Failures  = %10lu\n",
                                    Results->S_SendFails);
        }
        if (Results -> S_Restarts)
        {
            TmpBuf += (BYTE)sprintf(TmpBuf,"\tRestarts Required     = %10lu\n",
                                    Results->S_Restarts);
        }
        TmpBuf += (BYTE)sprintf(TmpBuf,"\tElapsed time          = %10lu milliseconds\n",
                                Results->S_Milliseconds);

        d_speed = (1.0 * Results->S_Sends) / Results->S_Milliseconds;
        speed   = (ULONG)((1000.0 * d_speed) + 0.5);

        TmpBuf += (BYTE)sprintf(TmpBuf,"\tTransmit Rate         = %10lu packets per second\n",
                                speed);

        d_speed *= Results->PacketSize;
        speed   = (ULONG)(d_speed + 0.5);

        TmpBuf += (BYTE)sprintf(TmpBuf,"\t                      = %10lu Kbytes per second\n\n",
                                speed);


        TmpBuf += (BYTE)sprintf(TmpBuf, "Client reception statistics\n\n");
        TmpBuf += (BYTE)sprintf(TmpBuf,"\n\tPackets Received      = %10lu\n",
                                            Results->Receives);

       if (NumCpus && (Results->Mode == 4))
       {
           d_speed *= 100.0;
           d_speed /= KernelPercent[0];
           speed = (ULONG)(d_speed + 0.5);
           TmpBuf += (BYTE)sprintf(TmpBuf, "\tReceive KB/sec/cpu    = %8lu.%u\n\n", speed/10, speed%10);
       }

       if (Results->Receives != Results->PacketCount)
       {
           TmpBuf += (BYTE)sprintf(TmpBuf,"\tPackets Lost          = %10lu",
                                       Results->PacketCount - Results->Receives);
           ADD_SKIP_FLAG( TmpBuf, "SKIP_LINE" );
       }
       if (Results->SelfReceives)
       {
           TmpBuf += (BYTE)sprintf(TmpBuf,"\tOwn Packets Received  = %10lu",
                                   Results->SelfReceives);
           ADD_SKIP_FLAG( TmpBuf, "SKIP_LINE" );
       }

    }

    TmpBuf += (BYTE)sprintf(TmpBuf, "\n\n\n");


    if ( Verbose )
    {
        if ( !WriteFile(GetStdHandle( STD_OUTPUT_HANDLE ),
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to screen failed, returned 0x%lx\n",(PVOID)Status);
        }
    }

    if ( CommandsFromScript )
    {
        if ( !WriteFile(Scripts[ScriptIndex].LogHandle,
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to logfile failed, returned 0x%lx\n",(PVOID)Status);
        }

    }
}



VOID
TpctlPrintEventResults(
    PEVENT_RESULTS Event
    )

// ----
//
// Routine Description:
//
// Arguments:
//
// Return Value:
//
// ---

{
    DWORD Status;
    LPSTR TmpBuf;
    DWORD BytesWritten;


    //ASSERT( Event->Signature == EVENT_RESULTS_SIGNATURE );

    TmpBuf = GlobalBuf;

    TmpBuf += (BYTE)sprintf(TmpBuf,"\tEvent Type = %s",
                                TpctlGetEventType( Event->TpEventType ));

    //
    // SanjeevK : #5963
    //            #11324 Enhancement
    //

    if ( ( Event->TpEventType == IndicateStatusComplete ) ||
         ( Event->TpEventType == IndicateStatus         ) )
    {
        ADD_SKIP_FLAG( TmpBuf, "SKIP_LINE" );
    }
    else
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"\n" );
    }

    if ( Event->QueueOverFlowed == TRUE )
    {
        TmpBuf += (BYTE)sprintf(TmpBuf,"\tEvent Queue Overflowed.");
        //
        // SanjeevK : #5963
        //
        // Note: This flag was added since all this does is cause an
        //       this line to be ignored. The event however gets
        //       reported which is the primary aim of this statement.
        //
        ADD_SKIP_FLAG( TmpBuf, "SKIP_LINE" );
    }

    if ( Verbose )
    {
        if ( !WriteFile(GetStdHandle( STD_OUTPUT_HANDLE ),
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to screen failed, returned 0x%lx\n",(PVOID)Status);
        }
    }

    if ( CommandsFromScript )
    {
        if ( !WriteFile(Scripts[ScriptIndex].LogHandle,
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to logfile failed, returned 0x%lx\n",(PVOID)Status);
        }

    }
    else if ( CommandLineLogging )
    {
        if ( !WriteFile(CommandLineLogHandle,
                        GlobalBuf,
                        TmpBuf-GlobalBuf,
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            TpctlErrorLog("\n\tTpctl: WriteFile to logfile failed, returned 0x%lx\n",(PVOID)Status);
        }
    }
}



VOID
TpctlZeroStressStatistics(
    PSTRESS_RESULTS Results
    )

// ----
//
// Routine Description:
//
//     This routine zeros out the stress results buffer.
//
// Arguments:
//
//     Results - the buffer to zero out the contents of.
//
// Return Value:
//
//     None.
//
// ----

{
    DWORD i;

    ZeroMemory (Results->Address, ADDRESS_LENGTH);

    Results->OpenInstance = 0xFFFFFFFF;
    Results->NumServers = 0;

    Results->Global.Sends = 0;
    Results->Global.Receives = 0;
    Results->Global.CorruptRecs = 0;
    Results->Global.InvalidPacketRecs = 0;

    for ( i=0;i<MAX_SERVERS;i++ )
    {
        ZeroMemory (Results->Servers[i].Address, ADDRESS_LENGTH);

        Results->Servers[i].OpenInstance = 0xFFFFFFFF;
        Results->Servers[i].StatsRcvd = FALSE;

        Results->Servers[i].Instance.Sends = 0;
        Results->Servers[i].Instance.SendPends = 0;
        Results->Servers[i].Instance.SendComps = 0;
        Results->Servers[i].Instance.SendFails = 0;
        Results->Servers[i].Instance.Receives = 0;
        Results->Servers[i].Instance.CorruptRecs = 0;

        Results->Servers[i].S_Instance.Sends = 0;
        Results->Servers[i].S_Instance.SendPends = 0;
        Results->Servers[i].S_Instance.SendComps = 0;
        Results->Servers[i].S_Instance.SendFails = 0;
        Results->Servers[i].S_Instance.Receives = 0;
        Results->Servers[i].S_Instance.CorruptRecs = 0;

        Results->Servers[i].S_Global.Sends = 0;
        Results->Servers[i].S_Global.Receives = 0;
        Results->Servers[i].S_Global.CorruptRecs = 0;
        Results->Servers[i].S_Global.InvalidPacketRecs = 0;
    }
}



DWORD
TpctlLog(
    LPSTR String,
    PVOID Input
    )
{
    DWORD Status;

    //
    // If we are in verbose mode, then print the string to the screen.
    //

    if ( Verbose )
    {
        printf( String,Input );

        //
        // If we are reading commands from a script write the string to
        // the script log file.
        //

        if ( CommandsFromScript )
        {
            Status = TpctlScriptLog( String, Input );
        }

        //
        // Otherwise if we are logging commands entered by hand write
        // the string to the commandline log file.
        //

        else if ( CommandLineLogging )
        {
            Status = TpctlCmdLneLog( String,Input );
        }
    }

    return NO_ERROR;
}



DWORD
TpctlErrorLog(
    LPSTR String,
    PVOID Input
    )
{
    DWORD Status;

    //
    // First print the error message to the screen.
    //

    printf( String,Input );

    //
    // If we are reading commands from a script write the string to
    // the script log file.
    //

    if ( CommandsFromScript )
    {
        Status = TpctlScriptLog( String, Input );
    }

    //
    // Otherwise we are logging commands entered by hand write the
    // string to the commandline log file.
    //

    else if ( CommandLineLogging )
    {
        Status = TpctlCmdLneLog( String,Input );
    }

    return NO_ERROR;
}



DWORD
TpctlScriptLog(
    LPSTR String,
    PVOID Input
    )
{
    DWORD Status;
    BYTE Buffer[0x100];
    DWORD BytesWritten;

    //
    // If we are reading commands from a script write the string to
    // the script's log file.
    //

    if ( CommandsFromScript )
    {
        //
        // set up the buffer that will print it to the logfile, and write
        // it out.
        //

        sprintf( Buffer,String,Input );

        if ( !WriteFile(Scripts[ScriptIndex].LogHandle,
                        Buffer,
                        strlen( Buffer ),
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            printf("\n\tTpctlScriptLog: write to logfile failed, returned 0x%lx\n",Status);
            return Status;
        }
    }

    return NO_ERROR;
}



DWORD
TpctlCmdLneLog(
    LPSTR String,
    PVOID Input
    )
{
    DWORD Status;
    BYTE Buffer[0x100];
    DWORD BytesWritten;

    //
    // If we are logging commands entered by hand write the
    // string to that log file.  We will not do this if we are
    // already logging commands to a scriptfile log file..
    //

    if (( CommandLineLogging ) && ( !CommandsFromScript ))
    {
        //
        // Then set up the buffer that will print it to the logfile
        //

        sprintf( Buffer,String,Input );

        //
        // and print it.
        //

        if ( !WriteFile(CommandLineLogHandle,
                        Buffer,
                        strlen( Buffer ),
                        &BytesWritten,
                        NULL ))
        {
            Status = GetLastError();
            printf("\n\tTpctlCmdLneLog: write to command logging file failed, returned 0x%lx\n",
                        Status);
            return Status;
        }
    }

    return NO_ERROR;
}