-
Notifications
You must be signed in to change notification settings - Fork 1
/
ctcadpt.c
3597 lines (3064 loc) · 133 KB
/
ctcadpt.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* CTCADPT.C (c) Copyright James A. Pierson, 2002-2012 */
/* (c) Copyright Roger Bowler, 2000-2012 */
/* (c) Copyright Willem Konynenberg, 2000-2009 */
/* (c) Copyright Vic Cross, 2001-2009 */
/* Hercules Channel-to-Channel Emulation Support */
// vmnet (C) Copyright Willem Konynenberg, 2000-2009
// CTCT (C) Copyright Vic Cross, 2001-2009
// CTCE (C) Copyright Peter J. Jansen, 2014-2016
// Notes:
// This module contains the remaining CTC emulation modes that
// have not been moved to seperate modules. There is also logic
// to allow old style 3088 device definitions for compatibility
// and may be removed in a future release.
//
// Please read README.NETWORKING for more info.
//
#include "hstdinc.h"
#define _CTCADPT_C_
#define _HENGINE_DLL_
#include "hercules.h"
#include "devtype.h"
#include "ctcadpt.h"
#include "opcode.h"
#include "devtype.h"
// --------------------------------------------------------------------
// CTCE Info also for use by CTCE Tracing when requested
// --------------------------------------------------------------------
typedef struct _CTCE_INFO
{
BYTE state_x_prev; /* This side previous state */
BYTE state_y_prev; /* Other side previous state */
BYTE actions; /* Triggered by CCW received */
BYTE state_new; /* The updated FSM state */
BYTE x_unit_stat; /* Resulting device unit stat */
BYTE scb; /* Last SCB returned */
BYTE busy_waits; /* Number of times waited for */
/* a Busy condition to end */
BYTE de_ready; /* Device-End status */
/* indicating ready to be */
/* presented, yielding ... */
u_int sent : 1; /* = 1 : CTCE_Send done */
u_int attn_can : 1; /* = 1 : Atttention Cancelled */
u_int con_lost : 1; /* = 1 : contention lost */
u_int con_won : 1; /* = 1 : contention won */
int wait_rc; /* CTCE_Send Wait RC if used */
int de_ready_attn_rc; /* device_attention RC */
int working_attn_rc; /* device_attention RC */
/* from transition to */
/* "Working(D)" state */
int sok_buf_len; /* socket buffer length */
}
CTCE_INFO;
// --------------------------------------------------------------------
// CTCE_Cmd_Xfr enumeration type used by CTCE_Trace
// --------------------------------------------------------------------
enum CTCE_Cmd_Xfr
{
CTCE_LCL, /* Cmd remains Local only */
CTCE_SND, /* Cmd Send to y-side */
CTCE_RCV /* Cmd Received from y-side */
};
// ====================================================================
// Declarations
// ====================================================================
static int CTCT_Init( DEVBLK *dev, int argc, char *argv[] );
static void CTCT_Read( DEVBLK* pDEVBLK, U16 sCount,
BYTE* pIOBuf, BYTE* pUnitStat,
U16* pResidual, BYTE* pMore );
static void CTCT_Write( DEVBLK* pDEVBLK, U16 sCount,
BYTE* pIOBuf, BYTE* pUnitStat,
U16* pResidual );
static void* CTCT_ListenThread( void* argp );
static void CTCE_ExecuteCCW( DEVBLK* pDEVBLK, BYTE bCode,
BYTE bFlags, BYTE bChained,
U16 sCount, BYTE bPrevCode,
int iCCWSeq, BYTE* pIOBuf,
BYTE* pMore, BYTE* pUnitStat,
U16* pResidual );
static int CTCE_Init( DEVBLK *dev, int argc, char *argv[] );
static void CTCE_Send( DEVBLK* pDEVBLK, U16 sCount,
BYTE* pIOBuf, BYTE* pUnitStat,
U16* pResidual, CTCE_INFO* pCTCE_Info );
static void* CTCE_RecvThread( void* argp );
static void* CTCE_ListenThread( void* argp );
static void CTCE_Halt( DEVBLK* pDEVBLK );
static U32 CTCE_ChkSum( const BYTE* pBuf, const U16 BufLen );
static void CTCE_Trace( const DEVBLK* pDEVBLK,
const U16 sCount,
const enum CTCE_Cmd_Xfr eCTCE_Cmd_Xfr,
const CTCE_INFO* pCTCE_Info,
const BYTE* pCTCE_Buf,
const BYTE* pUnitStat );
static int CTCE_Connect_Timeout( int sockfd,
const struct sockaddr* saptr,
const socklen_t salen,
const int usec );
static int VMNET_Init( DEVBLK *dev, int argc, char *argv[] );
static int VMNET_Write( DEVBLK *dev, BYTE *iobuf,
U16 count, BYTE *unitstat );
static int VMNET_Read( DEVBLK *dev, BYTE *iobuf,
U16 count, BYTE *unitstat );
// --------------------------------------------------------------------
// Definitions for CTC general data blocks
// --------------------------------------------------------------------
typedef struct _CTCG_PARMBLK
{
int listenfd;
struct sockaddr_in addr;
DEVBLK* dev;
}
CTCG_PARMBLK;
// --------------------------------------------------------------------
// CTCE Send-Receive Socket Prefix at the start of the DEVBLK buf
// --------------------------------------------------------------------
typedef struct _CTCE_SOKPFX
{
BYTE CmdReg; /* CTCE command register */
BYTE FsmSta; /* CTCE FSM state */
U16 sCount; /* CTCE sCount copy */
U16 PktSeq; /* CTCE Packet Sequence ID */
U16 SndLen; /* CTCE Packet Sent Length */
U16 DevNum; /* CTCE Sender's devnum */
U16 ssid; /* CTCE Sender's ssid */
}
CTCE_SOKPFX;
// --------------------------------------------------------------------
// CTCE Equivalent of CTCG_PARMBLK
// --------------------------------------------------------------------
typedef struct _CTCE_PARMBLK
{
int listenfd[2]; /* [0] = read, [1] = write */
struct sockaddr_in addr;
DEVBLK* dev;
}
CTCE_PARMBLK;
// --------------------------------------------------------------------
// CTCE Constants (generated by a small REXX script)
// --------------------------------------------------------------------
#define CTCE_PREPARE 0
#define CTCE_CONTROL 1
#define CTCE_READ 2
#define CTCE_WRITE 3
#define CTCE_SENSE_COMMAND_BYTE 4
#define CTCE_READ_BACKWARD 6
#define CTCE_WRITE_END_OF_FILE 7
#define CTCE_NO_OPERATION 8
#define CTCE_SET_EXTENDED_MODE 9
#define CTCE_SENSE_ADAPTER_STATE 10
#define CTCE_SENSE_ID 11
#define CTCE_READ_CONFIG_DATA 12
#define CTCE_SET_BASIC_MODE 15
static char *CTCE_CmdStr[16] = {
"PRE" , // 0 = 00 = Prepare
"CTL" , // 1 = 01 = Control
"RED" , // 2 = 02 = Read
"WRT" , // 3 = 03 = Write
"SCB" , // 4 = 04 = Sense Command Byte
"???" , // 5 = 05 = Not Used
"RBK" , // 6 = 06 = Read Backward
"WEF" , // 7 = 07 = Write End Of File
"NOP" , // 8 = 10 = No Operation
"SEM" , // 9 = 11 = Set Extended Mode
"SAS" , // 10 = 12 = Sense Adapter State
"SID" , // 11 = 13 = Sense ID
"RCD" , // 12 = 14 = Read Configuration Data
"???" , // 13 = 15 = Invalid Command Code
"CB0" , // 14 = 16 = Invalid Command Code Used to Report SCB 0
"SBM" // 15 = 17 = Set Basic Mode
};
static BYTE CTCE_command[256] = {
14, 3, 2, 8,10, 3, 2, 1,13, 3, 2, 8, 6, 3, 2, 1,
13, 3, 2, 8, 4, 3, 2, 1,13, 3, 2, 8, 6, 3, 2, 1,
13, 3, 2, 8,13, 3, 2, 1,13, 3, 2, 8, 6, 3, 2, 1,
13, 3, 2, 8, 4, 3, 2, 1,13, 3, 2, 8, 6, 3, 2, 1,
13, 3, 2,15,13, 3, 2, 1,13, 3, 2,15, 6, 3, 2, 1,
13, 3, 2,15, 4, 3, 2, 1,13, 3, 2,15, 6, 3, 2, 1,
13, 3, 2,15,13, 3, 2, 1,13, 3, 2,15, 6, 3, 2, 1,
13, 3, 2,15, 4, 3, 2, 1,13, 3, 2,15, 6, 3, 2, 1,
13, 7, 2, 8,13, 7, 2, 1,13, 7, 2, 8, 6, 7, 2, 1,
13, 7, 2, 8, 4, 7, 2, 1,13, 7, 2, 8, 6, 7, 2, 1,
13, 7, 2, 8,13, 7, 2, 1,13, 7, 2, 8, 6, 7, 2, 1,
13, 7, 2, 8, 4, 7, 2, 1,13, 7, 2, 8, 6, 7, 2, 1,
13, 7, 2, 9,13, 7, 2, 1,13, 7, 2,13, 6, 7, 2, 1,
13, 7, 2,13, 4, 7, 2, 1,13, 7, 2,13, 6, 7, 2, 1,
13, 7, 2, 0,11, 7, 2, 1,13, 7, 2,13, 6, 7, 2, 1,
13, 7, 2,13, 4, 7, 2, 1,13, 7, 2,13, 6, 7, 2, 1
};
/* In base (non-extended) mode the WEOF (WEF) */
/* command does not exist but classifies as */
/* a regular WRITE command. The WEOF-to-WRT */
/* mapping is performed with this macro: */
#define CTCE_CMD(c) (pDEVBLK->ctcxmode == 1 ? (CTCE_command[c]) : \
((CTCE_command[c])==7 ? 3 : (CTCE_command[c])))
#define IS_CTCE_CCW_PRE(c) ((CTCE_command[c]==0))
#define IS_CTCE_CCW_CTL(c) ((CTCE_command[c]==1))
#define IS_CTCE_CCW_RED(c) ((CTCE_command[c]==2))
#define IS_CTCE_CCW_WRT(c) ((CTCE_CMD( c) ==3))
#define IS_CTCE_CCW_SCB(c) ((CTCE_command[c]==4))
#define IS_CTCE_CCW_RBK(c) ((CTCE_command[c]==6))
#define IS_CTCE_CCW_WEF(c) ((CTCE_CMD( c )==7))
#define IS_CTCE_CCW_NOP(c) ((CTCE_command[c]==8))
#define IS_CTCE_CCW_SEM(c) ((CTCE_command[c]==9))
#define IS_CTCE_CCW_SBM(c) ((CTCE_command[c]==15))
#define IS_CTCE_CCW_SAS(c) ((CTCE_command[c]==10))
#define IS_CTCE_CCW_SID(c) ((CTCE_command[c]==11))
#define IS_CTCE_CCW_RCD(c) ((CTCE_command[c]==12))
#define IS_CTCE_CCW_DEP(c) ((CTCE_CMD( c )<7)) /* Any Dependent Command */
#define IS_CTCE_CCW_RDA(c) (((CTCE_command[c]&0xFB)==2)) /* Read or Read Backward */
#define IS_CTCE_CCW_WRA(c) (((CTCE_command[c]&0xFB)==3)) /* Write or Write EOF */
/* Macros for classifying CTC states follow. */
/* These are numbered 0 thru 7 as per the */
/* column numbers 0-3 and 4-7 in the table */
/* in section 2.13 in SA22-7203-00 by IBM, */
/* which is (alomost) the same as the table */
/* in section 3.15 in SA22-7901-01 by IBM. */
/* */
/* But in base (non-extended) mode, the table */
/* in section 2.13 in SA77-7901-01 applies, */
/* omitting column 5 for the Not-Ready state: */
/* base (non-extended) mode considers this */
/* the same as Available. We perform this */
/* Base-Not-Ready mapping into Available with */
/* this macro: */
#define CTCE_STATE(c) (pDEVBLK->ctcxmode == 1 ? ((c)&0x07) : \
(((c)&0x07)==0x05 ? 0x04 : ((c)&0x07)))
#define IS_CTCE_YWP(c) (((c)&0x07)==0x00)
#define IS_CTCE_YWC(c) (((c)&0x07)==0x01)
#define IS_CTCE_YWR(c) (((c)&0x07)==0x02)
#define IS_CTCE_YWW(c) (((c)&0x07)==0x03)
#define IS_CTCE_YAV(c) ((CTCE_STATE(c))==0x04)
#define IS_CTCE_YNR(c) ((CTCE_STATE(c))==0x05)
#define IS_CTCE_XWK(c) (((c)&0x07)==0x06)
#define IS_CTCE_XIP(c) (((c)&0x07)==0x07)
/* These two are useful combinations : */
/* - The 0 (YWP) or 4 (YAV) states READY */
#define IS_CTCE_YAP(c) (((CTCE_STATE(c))&0x03)==0x00)
/* - Any Y working state: YWP, YWC, YWR or YWW */
#define IS_CTCE_YWK(c) (((c)&0x04)==0x00)
/* - Any of the states Cntl, Read, or Write */
#define IS_CTCE_CRW(c) ((((c)&0x04)==0x00) && (((c)&0x07)!=0x00))
/* A special one is "X available" (XAV) which */
/* includes the not ready state. */
#define IS_CTCE_XAV(c) (((c)<6))
/* And the corresponding SET macros for these */
/* The first four, i.e. a SET to any YWK, */
/* includes the setting of the CTCE_WAIT bit. */
#define SET_CTCE_YWP(c) (c=(((c)&0xF8)|0x00))
#define SET_CTCE_YWC(c) (c=(((c)&0xF8)|0x01))
#define SET_CTCE_YWR(c) (c=(((c)&0xF8)|0x02))
#define SET_CTCE_YWW(c) (c=(((c)&0xF8)|0x03))
#define SET_CTCE_YAV(c) (c=(((c)&0xF8)|0x04))
#define SET_CTCE_YNR(c) (c=(((c)&0xF8)|0x05))
#define SET_CTCE_XWK(c) (c=(((c)&0xF8)|0x06))
#define SET_CTCE_XIP(c) (c=((c)|0x07))
/* One letter CTC state abbreviations */
static char *CTCE_StaStr[8] = {"P", "C", "R", "W", "A", "N", "X", "I"};
/* The CTCE CCW command will trigger actions */
/* which are dependent on the CTCE state. */
/* These different action flags are : */
#define CTCE_WEOF (0x80)
#define CTCE_SEND (0x40)
#define CTCE_WAIT (0x20)
#define CTCE_ATTN (0x10)
#define CTCE_MATCH (0x08)
/* Corresponding macros to test for these */
#define IS_CTCE_WEOF(c) (((c)&CTCE_WEOF)==CTCE_WEOF)
#define IS_CTCE_SEND(c) (((c)&CTCE_SEND)==CTCE_SEND)
#define IS_CTCE_WAIT(c) (((c)&CTCE_WAIT)==CTCE_WAIT)
#define IS_CTCE_ATTN(c) (((c)&CTCE_ATTN)==CTCE_ATTN)
#define IS_CTCE_MATCH(c) (((c)&CTCE_MATCH)==CTCE_MATCH)
/* And the corresponding SET macros for these */
#define SET_CTCE_WEOF(c) (c|=CTCE_WEOF)
#define SET_CTCE_SEND(c) (c|=CTCE_SEND)
#define SET_CTCE_WAIT(c) (c|=CTCE_WAIT)
#define SET_CTCE_ATTN(c) (c|=CTCE_ATTN)
#define SET_CTCE_MATCH(c) (c|=CTCE_MATCH)
/* And the corresponding CLeaR macros */
#define CLR_CTCE_WEOF(c) (c&=~CTCE_WEOF)
#define CLR_CTCE_SEND(c) (c&=~CTCE_SEND)
#define CLR_CTCE_WAIT(c) (c&=~CTCE_WAIT)
#define CLR_CTCE_ATTN(c) (c&=~CTCE_ATTN)
#define CLR_CTCE_MATCH(c) (c&=~CTCE_MATCH)
/* To CLeaR all flags */
#define CLR_CTCE_ALLF(c) (c&=~CTCE_WEOF)
/* Enhanced CTC processing is selected by */
/* omitting default MTU bufsize CTCE_MTU_MIN, */
/* or by specifying a larger number. The */
/* default is equal to 61592, calculated as */
/* sizeof(CTCE_SOKPFX) + */
/* sizeof(U16=pSokBuf->sCount=2) + */
/* 61578 (=0xF08A) */
/* the latter number is the largest data */
/* sCount seen used by CTC programs to date. */
/* If that number would be too small one day, */
/* a severe error message will instruct the */
/* user to specify an increased MTU bufsize */
/* in the device configuration statement. */
#define CTCE_MTU_MIN ( (int)( 61578 + sizeof(CTCE_SOKPFX) + sizeof(U16 /* sCount */) ) )
/**********************************************************************/
/* A summary of the Channel-to-Channel command operations this CTCE */
/* device emulates can be found in IBM publications SA22-7203-00 in */
/* section 2.13, and in SA22-7091-01 sections 2.13 and 3.15. The */
/* tables show the device states of both sides, and the influence of */
/* CCW commands depending on this state. Our CTCE implemention is */
/* assisted by a Finite State Machine (FSM) table closely matching */
/* the figures in these prublications. */
/* */
/* Eeach CTCE side is in a given state at any point in time, which */
/* corresponds to the columns in the FSM table, matching columns 0 */
/* through 7 in the publications mentionned. Each CCW command has a */
/* row in the FSM table. A CCW command received will (1) trigger a */
/* transition to a new_state, (2) cause a Unit Status update, and (3) */
/* cause a number of actions to be carried out. */
/* */
/* The FSM table coding is assisted with macro's for the state each */
/* CTCE side (x=local, y=remote) can have, matching the FSM column */
/* column numbers 0-7: Prepare, Control, Read, Write, Available, */
/* Not-ready, X-working (=P/C/R/W) or Int-pending, all represented by */
/* a single letter: P, C, R, W, A, N, X, I. Additionally, the CTCE */
/* FSM table uses U for Unchanged to cover the case of no state */
/* change whatsoever, e.g. for CCW commands SAS, SID, RCD and others. */
/* Please see macro's CTCE_NEW_X_STATE & CTCE_NEW_Y_STATE down below. */
/**********************************************************************/
#define P 0
#define C 1
#define R 2
#define W 3
#define A 4
#define N 5
#define X 6
#define I 7
#define U 255
/**********************************************************************/
/* Each CTCE FSM table entry contains a macro up to 7 letters long: */
/* */
/* +---------- new_state = P, C, R, W, A or U */
/* |++-------- Unit Status bits encoded with up to two letters: */
/* ||| . CD = CE + DE */
/* ||| . C = CE */
/* ||| . BA = BUSY + ATTN */
/* ||| . B = BUSY */
/* ||| . UC = Unit Check */
/* |||+------- S = Send this commands also to the other (y-)side */
/* ||||+------ M = a Matching command for the other (y-)side */
/* |||||+----- W = our (x-)side must Wait for a matching command */
/* ||||||+---- A = cause Attention interrupt at the other y-side */
/* ||||||| */
#define PC_S_W { P, CSW_CE , 0, CTCE_SEND | CTCE_WAIT }
#define C__S_WA { C, 0 , 0, CTCE_SEND | CTCE_WAIT | CTCE_ATTN }
#define R__S_WA { R, 0 , 0, CTCE_SEND | CTCE_WAIT | CTCE_ATTN }
#define W__S_WA { W, 0 , 0, CTCE_SEND | CTCE_WAIT | CTCE_ATTN }
#define CC_SMW { C, CSW_CE , 0, CTCE_SEND | CTCE_MATCH | CTCE_WAIT }
#define R__SMW { R, 0 , 0, CTCE_SEND | CTCE_MATCH | CTCE_WAIT }
#define W__SMW { W, 0 , 0, CTCE_SEND | CTCE_MATCH | CTCE_WAIT }
#define ACDSM { A, CSW_CE | CSW_DE , 0, CTCE_SEND | CTCE_MATCH }
#define ACDS { A, CSW_CE | CSW_DE , 0, CTCE_SEND }
#define AUCS { A, CSW_UC , 0, CTCE_SEND }
#define CDSM { U, CSW_CE | CSW_DE , 0, CTCE_SEND | CTCE_MATCH }
#define CDS { U, CSW_CE | CSW_DE , 0, CTCE_SEND }
#define CD { U, CSW_CE | CSW_DE , 0, 0 }
#define B { U, CSW_BUSY , 0, 0 }
#define BA { U, CSW_BUSY | CSW_ATTN, 0, 0 }
#define UC { U, CSW_UC , 0, 0 }
#define UCS { U, CSW_UC , 0, CTCE_SEND }
/**********************************************************************/
/* Now finally the CTCE FSM table: */
/**********************************************************************/
static struct CTCE_FsmEnt {
BYTE new_state;
BYTE x_unit_stat;
BYTE y_unit_stat;
BYTE actions;
}
const CTCE_Fsm[16][8] = {
/* cmd/stat P C R W A N X I */
/* PRE */ {ACDSM , CD , CD , CD ,PC_S_W , UCS , B , B },
/* CTL */ {CC_SMW , BA , BA , BA ,C__S_WA, UCS , B , B },
/* RED */ {R__SMW , BA , BA ,ACDSM ,R__S_WA, UCS , B , B },
/* WRT */ {W__SMW , BA ,ACDSM , BA ,W__S_WA, UCS , B , B },
/* SCB */ { CD ,ACDSM , CD , CD , CD , UCS , B , B },
/* nus */ { UC , UC , UC , UC , UC , UC , B , B },
/* RBK */ {R__SMW , BA , BA ,ACDSM ,R__S_WA, UCS , B , B },
/* WEF */ { CDS , BA ,ACDSM , BA , CDS , UCS , B , B },
/* NOP */ { CD , BA , BA , BA , CD , UC , B , B },
/* SEM */ { CDS , BA , BA , BA ,ACDS ,AUCS , B , B },
/* SAS */ { CD , CD , CD , CD , CD , CD , B , B },
/* SID */ { CD , CD , CD , CD , CD , CD , B , B },
/* RCD */ { CD , CD , CD , CD , CD , CD , B , B },
/* inv */ { UC , UC , UC , UC , UC , UC , B , B },
/* CB0 */ { UC , UC , UC , UC , UC , UC , B , B },
/* SBM */ { CDS , BA , BA , BA ,ACDS ,AUCS , B , B }
};
#undef P
#undef C
#undef R
#undef W
#undef A
#undef N
#undef X
#undef I
#undef U
#undef PC_S_W
#undef C__S_WA
#undef R__S_WA
#undef W__S_WA
#undef CC_SMW
#undef R__SMW
#undef W__SMW
#undef ACDSM
#undef ACDS
#undef AUCS
#undef CDSM
#undef CDS
#undef CD
#undef B
#undef BA
#undef UC
#undef UCS
#define CTCE_ACTIONS_PRT(s) IS_CTCE_WEOF(s) ? _(" WEOF") : _("") \
, IS_CTCE_WAIT(s) ? _(" WAIT") : _("") \
, IS_CTCE_MATCH(s) ? _(" MATCH") : _("") \
, IS_CTCE_ATTN(s) ? _(" ATTN") : _("")
#define CTCE_X_STATE_FSM_IDX \
( ( ( pDEVBLK->ctcexState & 0x04 ) == 0x00 ) ? 0x06 : CTCE_STATE( pDEVBLK->ctceyState ) )
#define CTCE_Y_STATE_FSM_IDX \
( ( ( pDEVBLK->ctceyState & 0x04 ) == 0x00 ) ? 0x06 : CTCE_STATE( pDEVBLK->ctcexState ) )
#define CTCE_NEW_X_STATE(c) \
( ( CTCE_Fsm[CTCE_CMD( c )][CTCE_X_STATE_FSM_IDX].new_state != 255 ) ? \
( CTCE_Fsm[CTCE_CMD( c )][CTCE_X_STATE_FSM_IDX].new_state ) : \
( pDEVBLK->ctcexState & 0x07 ) )
#define CTCE_NEW_Y_STATE(c) \
( ( CTCE_Fsm[CTCE_CMD( c )][CTCE_Y_STATE_FSM_IDX].new_state != 255 ) ? \
( CTCE_Fsm[CTCE_CMD( c )][CTCE_Y_STATE_FSM_IDX].new_state ) : \
( pDEVBLK->ctceyState & 0x07 ) )
#define CTCE_DISABLE_NAGLE
#define CTCE_UDP
/* The following macro's attempt to maximize source commonality between */
/* different Hercules versions, whilst adhering to different styles. */
#define CTCX_DEVNUM(p) p->devnum
#define CTCE_FILENAME pDEVBLK->filename + 2
/**********************************************************************/
/* This table is used by channel.c to determine if a CCW code is an */
/* immediate command or not */
/* The table is addressed in the DEVHND structure as 'DEVIMM immed' */
/* 0 : Command is NOT an immediate command */
/* 1 : Command is an immediate command */
/* Note : An immediate command is defined as a command which returns */
/* CE (channel end) during initialisation (that is, no data is */
/* actually transfered). In this case, IL is not indicated for a CCW */
/* Format 0 or for a CCW Format 1 when IL Suppression Mode is in */
/* effect */
/**********************************************************************/
static BYTE CTCE_immed_commands[256] =
{
/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, /* 0x */
0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, /* 1x */
0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, /* 2x */
0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, /* 3x */
0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, /* 4x */
0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, /* 5x */
0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, /* 6x */
0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, /* 7x */
0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, /* 8x */
0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, /* 9x */
0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, /* Ax */
0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, /* Bx */
0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1, /* Cx */
0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1, /* Dx */
0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1, /* Ex */
0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1 /* Fx */
};
// X0XX X011 No Operation
// MMMM M111 Control
// 1100 0011 Set Extended Mode
// 10XX X011 Set Basic Mode
// 1110 0011 Prepare
// 1XXX XX01 Write EOF (but not treated as such !)
// --------------------------------------------------------------------
// Device Handler Information Block
// --------------------------------------------------------------------
DEVHND ctcadpt_device_hndinfo =
{
&CTCX_Init, /* Device Initialisation */
&CTCX_ExecuteCCW, /* Device CCW execute */
&CTCX_Close, /* Device Close */
&CTCX_Query, /* Device Query */
NULL, /* Device Start channel pgm */
NULL, /* Device End channel pgm */
NULL, /* Device Resume channel pgm */
NULL, /* Device Suspend channel pgm */
NULL, /* Device Read */
NULL, /* Device Write */
NULL, /* Device Query used */
NULL, /* Device Reserve */
NULL, /* Device Release */
NULL, /* Device Attention */
NULL, /* Immediate CCW Codes */
NULL, /* Signal Adapter Input */
NULL, /* Signal Adapter Output */
NULL, /* Hercules suspend */
NULL /* Hercules resume */
};
DEVHND ctct_device_hndinfo =
{
&CTCT_Init, /* Device Initialisation */
&CTCX_ExecuteCCW, /* Device CCW execute */
&CTCX_Close, /* Device Close */
&CTCX_Query, /* Device Query */
NULL, /* Device Start channel pgm */
NULL, /* Device End channel pgm */
NULL, /* Device Resume channel pgm */
NULL, /* Device Suspend channel pgm */
NULL, /* Device Read */
NULL, /* Device Write */
NULL, /* Device Query used */
NULL, /* Device Reserve */
NULL, /* Device Release */
NULL, /* Device Attention */
NULL, /* Immediate CCW Codes */
NULL, /* Signal Adapter Input */
NULL, /* Signal Adapter Output */
NULL, /* Hercules suspend */
NULL /* Hercules resume */
};
DEVHND ctce_device_hndinfo =
{
&CTCE_Init, /* Device Initialisation */
&CTCE_ExecuteCCW, /* Device CCW execute */
&CTCX_Close, /* Device Close */
&CTCX_Query, /* Device Query */
NULL, /* Device Start channel pgm */
NULL, /* Device End channel pgm */
NULL, /* Device Resume channel pgm */
NULL, /* Device Suspend channel pgm */
NULL, /* Device Read */
NULL, /* Device Write */
NULL, /* Device Query used */
NULL, /* Device Reserve */
NULL, /* Device Release */
NULL, /* Device Attention */
CTCE_immed_commands, /* Immediate CCW Codes */
NULL, /* Signal Adapter Input */
NULL, /* Signal Adapter Output */
NULL, /* Hercules suspend */
NULL /* Hercules resume */
};
DEVHND vmnet_device_hndinfo =
{
&VMNET_Init, /* Device Initialisation */
&CTCX_ExecuteCCW, /* Device CCW execute */
&CTCX_Close, /* Device Close */
&CTCX_Query, /* Device Query */
NULL, /* Device Start channel pgm */
NULL, /* Device End channel pgm */
NULL, /* Device Resume channel pgm */
NULL, /* Device Suspend channel pgm */
NULL, /* Device Read */
NULL, /* Device Write */
NULL, /* Device Query used */
NULL, /* Device Reserve */
NULL, /* Device Release */
NULL, /* Device Attention */
NULL, /* Immediate CCW Codes */
NULL, /* Signal Adapter Input */
NULL, /* Signal Adapter Output */
NULL, /* Hercules suspend */
NULL /* Hercules resume */
};
extern DEVHND ctci_device_hndinfo;
extern DEVHND lcs_device_hndinfo;
// ====================================================================
// Primary Module Entry Points
// ====================================================================
// --------------------------------------------------------------------
// Device Initialization Handler (Generic)
// --------------------------------------------------------------------
int CTCX_Init( DEVBLK* pDEVBLK, int argc, char *argv[] )
{
pDEVBLK->devtype = 0x3088;
// The first argument is the device emulation type
if( argc < 1 )
{
logmsg( _("HHCCT001E %4.4X: Incorrect number of parameters\n"),
pDEVBLK->devnum );
return -1;
}
if((pDEVBLK->hnd = hdl_ghnd(argv[0])))
{
if(pDEVBLK->hnd->init == &CTCX_Init)
return -1;
free(pDEVBLK->typname);
pDEVBLK->typname = strdup(argv[0]);
return (pDEVBLK->hnd->init)( pDEVBLK, --argc, ++argv );
}
logmsg (_("HHCCT034E %s: Unrecognized/unsupported CTC emulation type\n"),
argv[0]);
return -1;
}
// -------------------------------------------------------------------
// Query the device definition (Generic)
// -------------------------------------------------------------------
void CTCX_Query( DEVBLK* pDEVBLK,
char** ppszClass,
int iBufLen,
char* pBuffer )
{
BEGIN_DEVICE_CLASS_QUERY( "CTCA", pDEVBLK, ppszClass, iBufLen, pBuffer );
snprintf( pBuffer, iBufLen, "%s", pDEVBLK->filename );
}
// -------------------------------------------------------------------
// Close the device (Generic)
// -------------------------------------------------------------------
int CTCX_Close( DEVBLK* pDEVBLK )
{
// Close the device file (if not already closed)
if( pDEVBLK->fd >= 0 )
{
if (socket_is_socket( pDEVBLK->fd ))
close_socket( pDEVBLK->fd );
else
close( pDEVBLK->fd );
pDEVBLK->fd = -1; // indicate we're now closed
}
return 0;
}
// -------------------------------------------------------------------
// Execute a Channel Command Word (Generic)
// -------------------------------------------------------------------
void CTCX_ExecuteCCW( DEVBLK* pDEVBLK, BYTE bCode,
BYTE bFlags, BYTE bChained,
U16 sCount, BYTE bPrevCode,
int iCCWSeq, BYTE* pIOBuf,
BYTE* pMore, BYTE* pUnitStat,
U16* pResidual )
{
int iNum; // Number of bytes to move
BYTE bOpCode; // CCW opcode with modifier
// bits masked off
UNREFERENCED( bFlags );
UNREFERENCED( bChained );
UNREFERENCED( bPrevCode );
UNREFERENCED( iCCWSeq );
// Intervention required if the device file is not open
if( pDEVBLK->fd < 0 &&
!IS_CCW_SENSE( bCode ) &&
!IS_CCW_CONTROL( bCode ) )
{
pDEVBLK->sense[0] = SENSE_IR;
*pUnitStat = CSW_CE | CSW_DE | CSW_UC;
return;
}
// Mask off the modifier bits in the CCW bOpCode
if( ( bCode & 0x07 ) == 0x07 )
bOpCode = 0x07;
else if( ( bCode & 0x03 ) == 0x02 )
bOpCode = 0x02;
else if( ( bCode & 0x0F ) == 0x0C )
bOpCode = 0x0C;
else if( ( bCode & 0x03 ) == 0x01 )
bOpCode = pDEVBLK->ctcxmode ? ( bCode & 0x83 ) : 0x01;
else if( ( bCode & 0x1F ) == 0x14 )
bOpCode = 0x14;
else if( ( bCode & 0x47 ) == 0x03 )
bOpCode = 0x03;
else if( ( bCode & 0xC7 ) == 0x43 )
bOpCode = 0x43;
else
bOpCode = bCode;
// Process depending on CCW bOpCode
switch (bOpCode)
{
case 0x01: // 0MMMMM01 WRITE
//------------------------------------------------------------
// WRITE
//------------------------------------------------------------
// Return normal status if CCW count is zero
if( sCount == 0 )
{
*pUnitStat = CSW_CE | CSW_DE;
break;
}
// Write data and set unit status and residual byte count
switch( pDEVBLK->ctctype )
{
case CTC_CTCT:
CTCT_Write( pDEVBLK, sCount, pIOBuf, pUnitStat, pResidual );
break;
case CTC_VMNET:
*pResidual = sCount - VMNET_Write( pDEVBLK, pIOBuf,
sCount, pUnitStat );
break;
}
break;
case 0x81: // 1MMMMM01 WEOF
//------------------------------------------------------------
// WRITE EOF
//------------------------------------------------------------
// Return normal status
*pUnitStat = CSW_CE | CSW_DE;
break;
case 0x02: // MMMMMM10 READ
case 0x0C: // MMMM1100 RDBACK
// -----------------------------------------------------------
// READ & READ BACKWARDS
// -----------------------------------------------------------
// Read data and set unit status and residual byte count
switch( pDEVBLK->ctctype )
{
case CTC_CTCT:
CTCT_Read( pDEVBLK, sCount, pIOBuf, pUnitStat, pResidual, pMore );
break;
case CTC_VMNET:
*pResidual = sCount - VMNET_Read( pDEVBLK, pIOBuf,
sCount, pUnitStat );
break;
}
break;
case 0x07: // MMMMM111 CTL
// -----------------------------------------------------------
// CONTROL
// -----------------------------------------------------------
*pUnitStat = CSW_CE | CSW_DE;
break;
case 0x03: // M0MMM011 NOP
// -----------------------------------------------------------
// CONTROL NO-OPERATON
// -----------------------------------------------------------
*pUnitStat = CSW_CE | CSW_DE;
break;
case 0x43: // 00XXX011 SBM
// -----------------------------------------------------------
// SET BASIC MODE
// -----------------------------------------------------------
// Command reject if in basic mode
if( pDEVBLK->ctcxmode == 0 )
{
pDEVBLK->sense[0] = SENSE_CR;
*pUnitStat = CSW_CE | CSW_DE | CSW_UC;
break;
}
// Reset extended mode and return normal status
pDEVBLK->ctcxmode = 0;
*pResidual = 0;
*pUnitStat = CSW_CE | CSW_DE;
break;
case 0xC3: // 11000011 SEM
// -----------------------------------------------------------
// SET EXTENDED MODE
// -----------------------------------------------------------
pDEVBLK->ctcxmode = 1;
*pResidual = 0;
*pUnitStat = CSW_CE | CSW_DE;
break;
case 0xE3: // 11100011
// -----------------------------------------------------------
// PREPARE (PREP)
// -----------------------------------------------------------
*pUnitStat = CSW_CE | CSW_DE;
break;
case 0x14: // XXX10100 SCB
// -----------------------------------------------------------
// SENSE COMMAND BYTE
// -----------------------------------------------------------
*pUnitStat = CSW_CE | CSW_DE;
break;
case 0x04: // 00000100 SENSE
// -----------------------------------------------------------
// SENSE
// -----------------------------------------------------------
// Command reject if in basic mode
if( pDEVBLK->ctcxmode == 0 )
{
pDEVBLK->sense[0] = SENSE_CR;
*pUnitStat = CSW_CE | CSW_DE | CSW_UC;
break;
}
// Calculate residual byte count
iNum = ( sCount < pDEVBLK->numsense ) ?
sCount : pDEVBLK->numsense;
*pResidual = sCount - iNum;
if( sCount < pDEVBLK->numsense )
*pMore = 1;
// Copy device sense bytes to channel I/O buffer
memcpy( pIOBuf, pDEVBLK->sense, iNum );
// Clear the device sense bytes
memset( pDEVBLK->sense, 0, sizeof( pDEVBLK->sense ) );
// Return unit status
*pUnitStat = CSW_CE | CSW_DE;
break;
case 0xE4: // 11100100 SID
// -----------------------------------------------------------
// SENSE ID
// -----------------------------------------------------------
// Calculate residual byte count
iNum = ( sCount < pDEVBLK->numdevid ) ?
sCount : pDEVBLK->numdevid;
*pResidual = sCount - iNum;
if( sCount < pDEVBLK->numdevid )
*pMore = 1;
// Copy device identifier bytes to channel I/O buffer
memcpy( pIOBuf, pDEVBLK->devid, iNum );
// Return unit status
*pUnitStat = CSW_CE | CSW_DE;
break;
default:
// ------------------------------------------------------------
// INVALID OPERATION
// ------------------------------------------------------------
// Set command reject sense byte, and unit check status
pDEVBLK->sense[0] = SENSE_CR;
*pUnitStat = CSW_CE | CSW_DE | CSW_UC;
}
}
// ====================================================================
// CTCT Support
// ====================================================================
//
// CTCT_Init
//
static int CTCT_Init( DEVBLK *dev, int argc, char *argv[] )
{
char str[80]; // Thread name
int rc; // Return code
int mtu; // MTU size (binary)
int lport; // Listen port (binary)
int rport; // Destination port (binary)
char* listenp; // Listening port number
char* remotep; // Destination port number
char* mtusize; // MTU size (characters)
char* remaddr; // Remote IP address
struct in_addr ipaddr; // Work area for IP address
BYTE c; // Character work area
TID tid; // Thread ID for server
CTCG_PARMBLK parm; // Parameters for the server
char address[20]=""; // temp space for IP address
dev->devtype = 0x3088;
dev->ctctype = CTC_CTCT;
SetSIDInfo( dev, 0x3088, 0x08, 0x3088, 0x01 );
// Check for correct number of arguments
if (argc != 4)
{
logmsg( _("HHCCT002E %4.4X: Incorrect number of parameters\n"),
dev->devnum );
return -1;
}
// The first argument is the listening port number
listenp = *argv++;
if( strlen( listenp ) > 5 ||
sscanf( listenp, "%u%c", &lport, &c ) != 1 ||
lport < 1024 || lport > 65534 )
{
logmsg( _("HHCCT003E %4.4X: Invalid port number: %s\n"),
dev->devnum, listenp );
return -1;
}