-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathcon1052c.c
646 lines (552 loc) · 23 KB
/
con1052c.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
/* CON1052.C (c)Copyright Jan Jaeger, 2004-2012 */
/* Emulated Console Printer Keyboard on Hercules HMC */
/* */
/* Released under "The Q Public License Version 1" */
/* (http://www.hercules-390.org/herclic.html) as modifications to */
/* Hercules. */
/*-------------------------------------------------------------------*/
/* This module contains device handling functions for integrated */
/* 1052 and 3215 console printer keyboard devices for the Hercules */
/* ESA/390 emulator. */
/*-------------------------------------------------------------------*/
#include "hstdinc.h"
#include "hercules.h"
#include "devtype.h"
#include "opcode.h"
#include "sr.h"
/*-------------------------------------------------------------------*/
/* Tweakable build constants */
/*-------------------------------------------------------------------*/
#define BUFLEN_1052 150 /* 1052 Send/Receive buffer */
/*-------------------------------------------------------------------*/
/* Forward reference */
/*-------------------------------------------------------------------*/
#if defined( OPTION_DYNAMIC_LOAD )
static
#endif
DEVHND con1052_device_hndinfo;
/*-------------------------------------------------------------------*/
/* Ivan Warren 20040227 */
/* */
/* 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: ("false") Command is *NOT* an immediate command */
/* 1: ("true") Command *IS* an immediate command */
/* */
/* Note: An immediate command is defined as a command which returns */
/* CE (channel end) during initialization (that is, no data is */
/* actually transfered). In this case, IL is not indicated for a */
/* Format 0 or Format 1 CCW when IL Suppression Mode is in effect. */
/* */
/*-------------------------------------------------------------------*/
static BYTE con1052_immed [256] =
/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
{ 0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0, /* 00 */ // 03, 0B
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 10 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 20 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 30 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 40 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 50 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 60 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 70 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 80 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 90 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* A0 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* B0 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* C0 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* D0 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* E0 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; /* F0 */
/*-------------------------------------------------------------------*/
/* MinGW OPTION_DYNAMIC_LOAD (Windows, but *not* MSVC) */
/*-------------------------------------------------------------------*/
#if defined( WIN32 ) && !defined( _MSVC_ ) \
&& defined( OPTION_DYNAMIC_LOAD ) \
&& !defined( HDL_USE_LIBTOOL )
SYSBLK *psysblk;
#define sysblk (*psysblk)
#endif
/*-------------------------------------------------------------------*/
/* Default Command Prefixes */
/*-------------------------------------------------------------------*/
static const char default_pfxs[] =
{
0x2F, // / slash
0x5C, // \ backslash
0x60, // ` backtick
0x3D, // = equals
0x7E, // ~ tilde
0x40, // @ at sign
0x24, // $ dollar
0x25, // % percent
0x5E, // ^ caret
0x26, // & ampersand
0x5F, // _ underline
0x3A, // : colon
0x3F, // ? question
0x30, // 0 zero
0x31, // 1 one
0x32, // 2 two
0x33, // 3 three
0x34, // 4 four
0x35, // 5 five
0x36, // 6 six
0x37, // 7 seven
0x38, // 8 eight
0x39, // 9 nine
};
static char used_pfxs[ sizeof( default_pfxs ) ] = {0};
/*-------------------------------------------------------------------*/
/* CLOSE THE 1052/3215 DEVICE HANDLER */
/*-------------------------------------------------------------------*/
static int con1052_close_device( DEVBLK *dev )
{
/* If the first character of our command prefix matches
one of the characters in our list of default command
prefixes, then mark that command prefix character as
being unused and once again available for reuse.
*/
char* p;
size_t i;
p = memchr( default_pfxs, dev->filename[0], sizeof( default_pfxs ));
if (p)
{
i = (p - default_pfxs);
used_pfxs[i] = FALSE;
}
return 0;
}
/*-------------------------------------------------------------------*/
/* QUERY THE 1052/3215 DEVICE DEFINITION */
/*-------------------------------------------------------------------*/
static void con1052_query_device( DEVBLK *dev, char **devclass,
int buflen, char *buffer )
{
BEGIN_DEVICE_CLASS_QUERY( "CON", dev, devclass, buflen, buffer );
snprintf( buffer, buflen-1, "*syscons cmdpref(%s)%s IO[%"PRIu64"]",
dev->filename, !dev->prompt1052 ? " noprompt" : "", dev->excps );
}
/*-------------------------------------------------------------------*/
/* INITIALIZE THE 1052/3215 DEVICE HANDLER */
/*-------------------------------------------------------------------*/
static int con1052_init_handler( DEVBLK *dev, int argc, char *argv[] )
{
int ac;
DEVBLK *our_dev, *their_dev;
char *our_pfx, *their_pfx, *p;
size_t our_pfxlen, their_pfxlen, shorter_pfxlen, i;
/* For re-initialisation, close the existing file, if any */
if (dev->fd >= 0)
(dev->hnd->close)( dev );
/* reset excp count */
dev->excps = 0;
/* Integrated console is always connected */
dev->connected = 1;
/* Set number of sense bytes */
dev->numsense = 1;
/* Initialize device dependent fields */
dev->keybdrem = 0;
/* Set length of console buffer reserving extra room for
possible newline character and null string terminator.
*/
dev->bufsize = BUFLEN_1052 +1 +1;
/* Assume we want to prompt */
dev->prompt1052 = 1;
/* Initialize command prefix string to undefined */
strlcpy( dev->filename, "", sizeof( dev->filename ));
/* Determine device type. Default to 1052 */
if (!sscanf( dev->typname, "%hx", &dev->devtype))
dev->devtype = 0x1052;
/* Initialize the device identifier bytes */
dev->devid[0] = 0xFF;
dev->devid[1] = dev->devtype >> 8;
dev->devid[2] = dev->devtype & 0xFF;
dev->devid[3] = 0x00;
dev->devid[4] = dev->devtype >> 8;
dev->devid[5] = dev->devtype & 0xFF;
dev->devid[6] = 0x00;
dev->numdevid = 7;
/* Process optional arguments */
for (ac=0; argc > 0; ac++, argc--)
{
if (strcasecmp( argv[ac], "noprompt" ) == 0)
dev->prompt1052 = 0;
else
strlcpy( dev->filename, argv[ac], sizeof( dev->filename ));
}
/* Set default command prefix if one wasn't specified */
if (!dev->filename[0])
{
p = memchr( used_pfxs, 0, sizeof( used_pfxs ));
if (!p)
{
// "%1d:%04X COMM: default command prefixes exhausted"
WRMSG( HHC01085, "E", SSID_TO_LCSS( dev->ssid ), dev->devnum );
return -1;
}
i = (p - used_pfxs);
used_pfxs[i] = TRUE;
dev->filename[0] = default_pfxs[i];
dev->filename[1] = 0;
}
/* Check if valid command prefix: cannot be a subset or superset
of any other console printer keyboard device's command prefix.
*/
our_dev = dev;
our_pfx = our_dev->filename;
our_pfxlen = strlen( our_pfx );
for (their_dev = sysblk.firstdev; their_dev; their_dev = their_dev->nextdev)
{
if (1
&& their_dev != our_dev
&& their_dev->allocated
&& their_dev->hnd == &con1052_device_hndinfo
)
{
their_pfx = their_dev->filename;
their_pfxlen = strlen( their_pfx );
shorter_pfxlen = min( their_pfxlen, our_pfxlen );
if (strncmp( our_pfx, their_pfx, shorter_pfxlen ) == 0)
{
// "%1d:%04X COMM: device %1d:%04X already using prefix %s"
WRMSG( HHC01086, "E",
SSID_TO_LCSS( our_dev -> ssid ), our_dev -> devnum,
SSID_TO_LCSS( their_dev -> ssid ), their_dev -> devnum,
their_pfx
);
return -1;
}
}
}
/* If the first character of our command prefix matches
one of the characters in our list of default command
prefixes, then mark that command prefix character as
being used and no longer available for use.
*/
p = memchr( default_pfxs, our_pfx[0], sizeof( default_pfxs ));
if (p)
{
i = (p - default_pfxs);
used_pfxs[i] = TRUE;
}
/* PROGRAMMING NOTE: it is CRITICAL that we set our file
descriptor integer to a non-zero value greater than 2
(even though we'll never use it) in order to force the
config.c "detach_devblk" function to call our 'close'
function so we can mark our prefix as being once again
available for reuse.
*/
dev->fd = 999; /* CRITICAL! See above Programming Note */
return 0;
}
/*-------------------------------------------------------------------*/
/* CONSOLE PRINTER KEYBOARD PANEL COMMAND FUNCTION */
/*-------------------------------------------------------------------*/
#if defined( OPTION_DYNAMIC_LOAD )
static void* con1052_panel_command( char *cmd )
{
DEVBLK *dev;
char *input;
int i;
size_t pfxlen;
void* (*next_panel_command_handler)( char *cmd );
/* Scan device chain looking for integrated console printer keyboard
devices whose command prefix string (kept in dev->filename field)
matches the command prefix used in the command that was entered.
*/
for (dev = sysblk.firstdev; dev; dev = dev->nextdev)
{
if (1
&& dev->allocated
&& dev->hnd == &con1052_device_hndinfo
&& (pfxlen = strlen( dev->filename )) > 0
&& strncasecmp( cmd, dev->filename, pfxlen ) == 0
)
{
/* Echo that they typed to the Hercules console */
#if defined( OPTION_SCP_MSG_PREFIX )
// "%s%s"
WRMSG( HHC00008, "I", "", cmd );
#else
LOGMSG( "%s%s\n", "", cmd );
#endif
/* Convert ASCII input to EBCDIC */
input = cmd + pfxlen;
for (i=0; i < dev->bufsize && input[i] != '\0'; i++)
dev->buf[i] = isprint( input[i] ) ?
host_to_guest( input[i] ) : ' ';
/* Update number of bytes in keyboard buffer */
dev->keybdrem = i;
dev->buflen = i;
/* Wakup the channel if it's waiting for input
or present unsolicited attention interrupt.
*/
obtain_lock( &dev->lock );
if (dev->kbwaiters)
{
signal_condition( &dev->kbcond );
release_lock( &dev->lock );
}
else
{
release_lock( &dev->lock );
device_attention( dev, CSW_ATTN );
}
return NULL;
}
}
/* The entered command wasn't meant for us. Pass it
on to the next command handler, if there is one.
*/
next_panel_command_handler = HDL_FINDNXT( con1052_panel_command );
if (next_panel_command_handler)
return next_panel_command_handler( cmd );
return NULL;
}
#endif // defined( OPTION_DYNAMIC_LOAD )
/*-------------------------------------------------------------------*/
/* EXECUTE A 1052/3215 CHANNEL COMMAND WORD */
/*-------------------------------------------------------------------*/
static void con1052_execute_ccw( DEVBLK *dev, BYTE code, BYTE flags,
BYTE chained, U32 count, BYTE prevcode, int ccwseq,
BYTE *iobuf, BYTE *more, BYTE *unitstat, U32 *residual )
{
U32 len; /* Length of data */
U32 num; /* Number of bytes to move */
BYTE c; /* Print character */
UNREFERENCED( chained );
UNREFERENCED( prevcode );
UNREFERENCED( ccwseq );
/* Unit check with intervention required if no client connected */
if (dev->connected == 0 && !IS_CCW_SENSE( code ))
{
dev->sense[0] = SENSE_IR;
*unitstat = CSW_UC;
return;
}
/* Process depending on CCW opcode */
switch (code) {
case 0x01:
/*---------------------------------------------------------------*/
/* WRITE, NO CARRIER RETURN */
/*---------------------------------------------------------------*/
case 0x09:
/*---------------------------------------------------------------*/
/* WRITE, AUTO CARRIER RETURN */
/*---------------------------------------------------------------*/
/* Calculate number of bytes to write and set residual count */
num = (count < BUFLEN_1052) ? count : BUFLEN_1052;
*residual = count - num;
/* Translate channel buffer data to ASCII */
for (len = 0; len < num; len++)
{
c = guest_to_host( iobuf[len] );
if (1
&& c != 0x0d
&& c != 0x0a
&& !isprint(c)
)
c = ' ';
iobuf[len] = c;
}
/* Perform end of record processing if not data-chaining */
if ((flags & CCW_FLAGS_CD) == 0)
{
/* CCW opcode == Write, Auto Carrier Return? */
if (code == 0x09)
iobuf[len++] = '\n';
}
/* Append string terminator */
iobuf[len] = '\0';
/* Process multiline messages */
{
char* str = (char*) iobuf;
char* nl;
while (str && *str)
{
nl = strchr( str, '\n' );
if (nl) *nl++ = 0;
#if defined( OPTION_SCP_MSG_PREFIX )
// "%s%s"
WRMSG( HHC00001, "I", dev->filename, str );
#else
LOGMSG( "%s%s\n", dev->filename, str );
#endif
str = nl;
}
}
/* Return normal status */
*unitstat = CSW_CE | CSW_DE;
break;
case 0x03:
/*---------------------------------------------------------------*/
/* CONTROL NO-OPERATION */
/*---------------------------------------------------------------*/
*unitstat = CSW_CE | CSW_DE;
break;
case 0x0A:
/*---------------------------------------------------------------*/
/* READ INQUIRY */
/*---------------------------------------------------------------*/
/* Solicit console input if no data in the device buffer */
if (!dev->keybdrem)
{
/* Display prompting message on console if allowed */
if (dev->prompt1052)
// "Enter input for console %1d:%04X"
WRMSG( HHC00010, "A", SSID_TO_LCSS(dev->ssid), dev->devnum );
obtain_lock( &dev->lock );
{
dev->kbwaiters++;
wait_condition( &dev->kbcond, &dev->lock );
dev->kbwaiters--;
}
release_lock( &dev->lock );
}
/* Calculate number of bytes to move and residual byte count */
len = dev->keybdrem;
num = (count < len) ? count : len;
*residual = count - num;
if (count < len) *more = 1;
/* Copy data from device buffer to channel buffer */
memcpy( iobuf, dev->buf, num );
/* If data chaining is specified, save remaining data */
if ((flags & CCW_FLAGS_CD) && len > count)
{
memmove( dev->buf, dev->buf + count, len - count );
dev->keybdrem = len - count;
}
else
{
dev->keybdrem = 0;
}
/* Return normal status */
*unitstat = CSW_CE | CSW_DE;
break;
case 0x0B:
/*---------------------------------------------------------------*/
/* AUDIBLE ALARM */
/*---------------------------------------------------------------*/
// "RRR...RING...GGG!\a"
WRMSG( HHC00009, "I" );
// *residual = 0;
*unitstat = CSW_CE | CSW_DE;
break;
case 0x04:
/*---------------------------------------------------------------*/
/* SENSE */
/*---------------------------------------------------------------*/
/* Calculate residual byte count */
num = (count < dev->numsense) ? count : dev->numsense;
*residual = count - num;
if (count < dev->numsense) *more = 1;
/* Copy device sense bytes to channel I/O buffer */
memcpy( iobuf, dev->sense, num );
/* Clear the device sense bytes */
memset( dev->sense, 0, sizeof( dev->sense ));
/* Return unit status */
*unitstat = CSW_CE | CSW_DE;
break;
case 0xE4:
/*---------------------------------------------------------------*/
/* SENSE ID */
/*---------------------------------------------------------------*/
/* Calculate residual byte count */
num = (count < dev->numdevid) ? count : dev->numdevid;
*residual = count - num;
if (count < dev->numdevid) *more = 1;
/* Copy device identifier bytes to channel I/O buffer */
memcpy( iobuf, dev->devid, num );
/* Return unit status */
*unitstat = CSW_CE | CSW_DE;
break;
default:
/*---------------------------------------------------------------*/
/* INVALID OPERATION */
/*---------------------------------------------------------------*/
/* Set command reject sense byte, and unit check status */
dev->sense[0] = SENSE_CR;
*unitstat = CSW_CE | CSW_DE | CSW_UC;
} /* end switch(code) */
} /* end function con1052_execute_ccw */
/*-------------------------------------------------------------------*/
/* HERCULES DYNAMIC LOADER (HDL) CONTROL SECTIONS */
/*-------------------------------------------------------------------*/
#if defined( OPTION_DYNAMIC_LOAD )
static
#endif
DEVHND con1052_device_hndinfo =
{
&con1052_init_handler, /* Device Initialisation */
&con1052_execute_ccw, /* Device CCW execute */
&con1052_close_device, /* Device Close */
&con1052_query_device, /* Device Query */
NULL, /* Device Extended Query */
NULL, /* Device Start channel pgm */
NULL, /* Device End channel pgm */
NULL, /* Device Resume channel pgm */
NULL, /* Device Suspend channel pgm */
NULL, /* Device Halt channel pgm */
NULL, /* Device Read */
NULL, /* Device Write */
NULL, /* Device Query used */
NULL, /* Device Reserve */
NULL, /* Device Release */
NULL, /* Device Attention */
con1052_immed, /* Immediate CCW Codes */
NULL, /* Signal Adapter Input */
NULL, /* Signal Adapter Output */
NULL, /* Signal Adapter Sync */
NULL, /* Signal Adapter Output Mult */
NULL, /* QDIO subsys desc */
NULL, /* QDIO set subchan ind */
NULL, /* Hercules suspend */
NULL /* Hercules resume */
};
/*-------------------------------------------------------------------*/
/* Libtool static name collision resolution */
/*-------------------------------------------------------------------*/
/* Note : lt_dlopen will look for symbol & modulename_LTX_symbol */
/*-------------------------------------------------------------------*/
#if !defined(HDL_BUILD_SHARED) && defined(HDL_USE_LIBTOOL)
#define hdl_ddev hdt1052c_LTX_hdl_ddev
#define hdl_depc hdt1052c_LTX_hdl_depc
#define hdl_reso hdt1052c_LTX_hdl_reso
#define hdl_init hdt1052c_LTX_hdl_init
#define hdl_fini hdt1052c_LTX_hdl_fini
#endif
/*-------------------------------------------------------------------*/
/* HERCULES DYNAMIC LOADER (HDL) CONTROL SECTIONS */
/*-------------------------------------------------------------------*/
#if defined( OPTION_DYNAMIC_LOAD )
HDL_DEPENDENCY_SECTION;
{
HDL_DEPENDENCY( HERCULES );
HDL_DEPENDENCY( DEVBLK );
HDL_DEPENDENCY( SYSBLK );
}
END_DEPENDENCY_SECTION
#if defined( WIN32 ) && !defined( HDL_USE_LIBTOOL ) && !defined(_MSVC_ )
#undef sysblk
HDL_RESOLVER_SECTION;
{
HDL_RESOLVE_PTRVAR( psysblk, sysblk );
HDL_RESOLVE( panel_command );
}
END_RESOLVER_SECTION
#endif
HDL_DEVICE_SECTION;
{
HDL_DEVICE( 1052-C, con1052_device_hndinfo );
HDL_DEVICE( 3215-C, con1052_device_hndinfo );
}
END_DEVICE_SECTION
HDL_REGISTER_SECTION;
{
HDL_REGISTER( panel_command, con1052_panel_command );
}
END_REGISTER_SECTION
#endif // defined( OPTION_DYNAMIC_LOAD )