-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathhao.c
760 lines (650 loc) · 22.9 KB
/
hao.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
/* HAO.C (c) Copyright Bernard van der Helm, 2002-2012 */
/* Hercules Automatic Operator Implementation */
/* */
/* Released under "The Q Public License Version 1" */
/* (http://www.hercules-390.org/herclic.html) as modifications to */
/* Hercules. */
/*---------------------------------------------------------------------------*/
/* file: hao.c */
/* */
/* Implementation of the automatic operator within the Hercules emulator. */
/* */
/* (c) Copyright Bernard van der Helm, 2002-2011 */
/* Noordwijkerhout, The Netherlands. */
/*---------------------------------------------------------------------------*/
#include "hstdinc.h"
#define _HAO_C_
#define _HENGINE_DLL_
#include "hercules.h"
#if defined(OPTION_HAO)
/*---------------------------------------------------------------------------*/
/* constants */
/*---------------------------------------------------------------------------*/
#define HAO_WKLEN 256 /* (maximum message length able to tolerate) */
#define HAO_MAXRULE 64 /* (purely arbitrary and easily increasable) */
#define HAO_MAXCAPT 9 /* (maximum number of capturing groups) */
/*---------------------------------------------------------------------------*/
/* local variables */
/*---------------------------------------------------------------------------*/
static TID haotid; /* Herc Auto-Oper thread-id */
static LOCK ao_lock;
static regex_t ao_preg[HAO_MAXRULE];
static char *ao_cmd[HAO_MAXRULE];
static char *ao_tgt[HAO_MAXRULE];
static char ao_msgbuf[LOG_DEFSIZE+1]; /* (plus+1 for NULL termination) */
/*---------------------------------------------------------------------------*/
/* function prototypes */
/*---------------------------------------------------------------------------*/
DLL_EXPORT void hao_command(char *cmd);
static int hao_initialize(void);
static void hao_message(char *buf);
static void hao_clear(void);
static void hao_cmd(char *arg);
static void hao_cpstrp(char *dest, char *src);
static void hao_del(char *arg);
static void hao_list(char *arg);
static void hao_tgt(char *arg);
static void* hao_thread(void* dummy);
/*---------------------------------------------------------------------------*/
/* void hao_initialize(void) */
/* */
/* This function is called at system startup by impl.c 'process_rc_file' */
/* It initializes all global variables. */
/*---------------------------------------------------------------------------*/
static int hao_initialize(void)
{
int i = 0;
int rc;
initialize_lock(&ao_lock);
/* serialize */
obtain_lock(&ao_lock);
/* initialize variables */
for(i = 0; i < HAO_MAXRULE; i++)
{
ao_cmd[i] = NULL;
ao_tgt[i] = NULL;
}
/* initialize message buffer */
memset(ao_msgbuf, 0, sizeof(ao_msgbuf));
/* Start message monitoring thread */
rc = create_thread (&haotid, JOINABLE, hao_thread, NULL, "hao_thread");
if(rc)
{
i = FALSE;
WRMSG(HHC00102, "E", strerror(rc));
}
else
i = TRUE;
release_lock(&ao_lock);
return(i);
}
/*---------------------------------------------------------------------------*/
/* void hao_command(char *cmd) */
/* */
/* Within panel this function is called when a command is given that starts */
/* with the string hao. Here we check if a correct hao command is requested, */
/* otherwise a help is printed. */
/*---------------------------------------------------------------------------*/
DLL_EXPORT void hao_command(char *cmd)
{
char work[HAO_WKLEN];
char work2[HAO_WKLEN];
/* initialise hao */
if(!haotid && !hao_initialize())
WRMSG(HHC01404, "S");
/* copy and strip spaces */
hao_cpstrp(work, cmd);
/* again without starting hao */
hao_cpstrp(work2, &work[3]);
if(!strncasecmp(work2, "tgt", 3))
{
/* again without starting tgt */
hao_cpstrp(work, &work2[3]);
hao_tgt(work);
return;
}
if(!strncasecmp(work2, "cmd", 3))
{
/* again without starting cmd */
hao_cpstrp(work, &work2[3]);
hao_cmd(work);
return;
}
if(!strncasecmp(work2, "del", 3))
{
/* again without starting del */
hao_cpstrp(work, &work2[3]);
hao_del(work);
return;
}
if(!strncasecmp(work2, "list", 4))
{
/* again without starting list */
hao_cpstrp(work, &work2[4]);
hao_list(work);
return;
}
if(!strncasecmp(work2, "clear", 4))
{
hao_clear();
return;
}
WRMSG(HHC00070, "E");
}
/*---------------------------------------------------------------------------*/
/* hao_cpstrp(char *dest, char *src) */
/* */
/* This function copies the string from src to dest, without the leading */
/* or trailing spaces. */
/*---------------------------------------------------------------------------*/
static void hao_cpstrp(char *dest, char *src)
{
int i;
for(i = 0; src[i] == ' '; i++);
strncpy(dest, &src[i], HAO_WKLEN);
dest[HAO_WKLEN-1] = 0;
for(i = (int)strlen(dest); i && dest[i - 1] == ' '; i--);
dest[i] = 0;
}
/*---------------------------------------------------------------------------*/
/* void hao_tgt(char *arg) */
/* */
/* This function is given when the hao tgt command is given. A free slot is */
/* to be found and filled with the rule. There will be loop checking. */
/*---------------------------------------------------------------------------*/
static void hao_tgt(char *arg)
{
int i;
int j;
int rc;
char work[HAO_WKLEN];
/* serialize */
obtain_lock(&ao_lock);
/* find a free slot */
for(i = 0; ao_tgt[i] && i < HAO_MAXRULE; i++)
/* check for table full */
if(i == HAO_MAXRULE)
{
release_lock(&ao_lock);
WRMSG(HHC00071, "E", "target", HAO_MAXRULE);
return;
}
/* check if not command is expected */
for(j = 0; j < HAO_MAXRULE; j++)
{
if(ao_tgt[j] && !ao_cmd[j])
{
release_lock(&ao_lock);
WRMSG(HHC00072, "E", "tgt", "cmd");
return;
}
}
/* check for empty target */
if(!strlen(arg))
{
release_lock(&ao_lock);
WRMSG(HHC00073, "E", "target");
return;
}
/* check for duplicate targets */
for(j = 0; j < HAO_MAXRULE; j++)
{
if(ao_tgt[j] && !strcmp(arg, ao_tgt[j]))
{
release_lock(&ao_lock);
WRMSG(HHC00074, "E", j);
return;
}
}
/* compile the target string */
rc = regcomp(&ao_preg[i], arg, REG_EXTENDED);
/* check for error */
if(rc)
{
release_lock(&ao_lock);
/* place error in work */
regerror(rc, (const regex_t *) &ao_preg[i], work, HAO_WKLEN);
WRMSG(HHC00075, "E", "regcomp()", work);
return;
}
/* check for possible loop */
for(j = 0; j < HAO_MAXRULE; j++)
{
if(ao_cmd[j] && !regexec(&ao_preg[i], ao_cmd[j], 0, NULL, 0))
{
release_lock(&ao_lock);
regfree(&ao_preg[i]);
WRMSG(HHC00076, "E", "target", "command", i);
return;
}
}
/* duplicate the target */
ao_tgt[i] = strdup(arg);
/* check duplication */
if(!ao_tgt[i])
{
release_lock(&ao_lock);
regfree(&ao_preg[i]);
WRMSG(HHC00075, "E", "strdup()", strerror(ENOMEM));
return;
}
release_lock(&ao_lock);
WRMSG(HHC00077, "I", "target", i);
}
/*---------------------------------------------------------------------------*/
/* void hao_cmd(char *arg) */
/* */
/* This function is called when the hao cmd command is given. It searches */
/* the index of the last given hao tgt command. Does some checking and fills */
/* the entry with the given command. There will be loop checking */
/*---------------------------------------------------------------------------*/
static void hao_cmd(char *arg)
{
int i;
int j;
/* serialize */
obtain_lock(&ao_lock);
/* find the free slot */
for(i = 0; ao_cmd[i] && i < HAO_MAXRULE; i++);
/* check for table full -> so tgt cmd expected */
if(i == HAO_MAXRULE)
{
release_lock(&ao_lock);
WRMSG(HHC00071, "E", "command", HAO_MAXRULE);
return;
}
/* check if target is given */
if(!ao_tgt[i])
{
release_lock(&ao_lock);
WRMSG(HHC00072, "E", "cmd", "tgt");
return;
}
/* check for empty cmd string */
if(!strlen(arg))
{
release_lock(&ao_lock);
WRMSG(HHC00073, "E", "command");
return;
}
/* check for hao command, prevent deadlock */
for(j = 0; !strncasecmp(&arg[j], "herc ", 4); j += 5);
if(!strcasecmp(&arg[j], "hao") || !strncasecmp(&arg[j], "hao ", 4))
{
release_lock(&ao_lock);
WRMSG(HHC00078, "E");
return;
}
/* check for possible loop */
for(j = 0; j < HAO_MAXRULE; j++)
{
if(ao_tgt[j] && !regexec(&ao_preg[j], arg, 0, NULL, 0))
{
release_lock(&ao_lock);
WRMSG(HHC00076, "E", "command", "target", j);
return;
}
}
/* duplicate the string */
ao_cmd[i] = strdup(arg);
/* check duplication */
if(!ao_cmd[i])
{
release_lock(&ao_lock);
WRMSG(HHC00075, "E", "strdup()", strerror(ENOMEM));
return;
}
release_lock(&ao_lock);
WRMSG(HHC00077, "I", "command", i);
}
/*---------------------------------------------------------------------------*/
/* void hao_del(char *arg) */
/* */
/* This function is called when the command hao del is given. the rule in */
/* the given index is cleared. */
/*---------------------------------------------------------------------------*/
static void hao_del(char *arg)
{
int i;
int rc;
/* read the index number to delete */
rc = sscanf(arg, "%d", &i);
if(!rc || rc == -1)
{
WRMSG(HHC00083, "E");
return;
}
/* check if index is valid */
if(i < 0 || i >= HAO_MAXRULE)
{
WRMSG(HHC00084, "E", HAO_MAXRULE - 1);
return;
}
/* serialize */
obtain_lock(&ao_lock);
/* check if entry exists */
if(!ao_tgt[i])
{
release_lock(&ao_lock);
WRMSG(HHC00085, "E", i);
return;
}
/* delete the entry */
free(ao_tgt[i]);
ao_tgt[i] = NULL;
regfree(&ao_preg[i]);
if(ao_cmd[i])
{
free(ao_cmd[i]);
ao_cmd[i] = NULL;
}
release_lock(&ao_lock);
WRMSG(HHC00086, "I", i);
}
/*---------------------------------------------------------------------------*/
/* void hao_list(char *arg) */
/* */
/* this function is called when the hao list command is given. It lists all */
/* rules. When given an index, only that index will be showed. */
/*---------------------------------------------------------------------------*/
static void hao_list(char *arg)
{
int i;
int rc;
int size;
rc = sscanf(arg, "%d", &i);
if(!rc || rc == -1)
{
/* list all rules */
size = 0;
/* serialize */
obtain_lock(&ao_lock);
for(i = 0; i < HAO_MAXRULE; i++)
{
if(ao_tgt[i])
{
if(!size)
WRMSG(HHC00087, "I");
WRMSG(HHC00088, "I", i, ao_tgt[i], (ao_cmd[i] ? ao_cmd[i] : "not specified"));
size++;
}
}
release_lock(&ao_lock);
if(!size)
WRMSG(HHC00089, "I");
else
WRMSG(HHC00082, "I", size);
}
else
{
/* list specific index */
if(i < 0 || i >= HAO_MAXRULE)
WRMSG(HHC00084, "E", HAO_MAXRULE - 1);
else
{
/* serialize */
obtain_lock(&ao_lock);
if(!ao_tgt[i])
WRMSG(HHC00079, "E", i);
else
WRMSG(HHC00088, "I", i, ao_tgt[i], (ao_cmd[i] ? ao_cmd[i] : "not specified"));
release_lock(&ao_lock);
}
}
}
/*---------------------------------------------------------------------------*/
/* void hao_clear(void) */
/* */
/* This function is called when the hao clear command is given. This */
/* function just clears all defined rules. Handy command for panic */
/* situations. */
/*---------------------------------------------------------------------------*/
static void hao_clear(void)
{
int i;
/* serialize */
obtain_lock(&ao_lock);
/* clear all defined rules */
for(i = 0; i < HAO_MAXRULE; i++)
{
if(ao_tgt[i])
{
free(ao_tgt[i]);
ao_tgt[i] = NULL;
regfree(&ao_preg[i]);
}
if(ao_cmd[i])
{
free(ao_cmd[i]);
ao_cmd[i] = NULL;
}
}
release_lock(&ao_lock);
WRMSG(HHC00080, "I");
}
/*---------------------------------------------------------------------------*/
/* void* hao_thread(void* dummy) */
/* */
/* This thread is created by hao_initialize. It examines every message */
/* printed. Here we check if a rule applies to the message. If so we fire */
/* the command within the rule. */
/*---------------------------------------------------------------------------*/
static void* hao_thread(void* dummy)
{
char* msgbuf = NULL;
int msgidx = -1;
int msgamt = 0;
char* msgend = NULL;
char svchar = 0;
int bufamt = 0;
UNREFERENCED(dummy);
/* Do not start HAO if no logger is active
* the next hao command will restart the thread
*/
if(!logger_isactive())
{
haotid = 0;
return NULL;
}
WRMSG(HHC00100, "I", thread_id(), get_thread_priority(0), "Hercules Automatic Operator");
/* Do until shutdown */
while(!sysblk.shutdown && msgamt >= 0)
{
/* wait for message data */
msgamt = log_read(&msgbuf, &msgidx, LOG_BLOCK);
if(msgamt > 0)
{
/* append to existing data */
if(msgamt > (int)((sizeof(ao_msgbuf) - 1) - bufamt))
msgamt = (int)((sizeof(ao_msgbuf) - 1) - bufamt);
strncpy( &ao_msgbuf[bufamt], msgbuf, msgamt );
ao_msgbuf[bufamt += msgamt] = 0;
msgbuf = ao_msgbuf;
/* process only complete messages */
msgend = strchr(msgbuf,'\n');
while(msgend)
{
/* null terminate message */
svchar = *(msgend+1);
*(msgend+1) = 0;
/* process message */
hao_message(msgbuf);
/* restore destroyed byte */
*(msgend+1) = svchar;
msgbuf = msgend+1;
msgend = strchr(msgbuf,'\n');
}
/* shift message buffer */
memmove( ao_msgbuf, msgbuf, bufamt -= (msgbuf - ao_msgbuf) );
}
}
WRMSG(HHC00101, "I", thread_id(), get_thread_priority(0), "Hercules Automatic Operator");
return NULL;
}
/*---------------------------------------------------------------------------*/
/* int hao_ignoremsg(char *msg) */
/* */
/* This function determines whether the message being processed should be */
/* ignored or not (so we don't react to it). Returns 1 (TRUE) if message */
/* should be ignored, or 0 == FALSE if message should be processed. */
/*---------------------------------------------------------------------------*/
static int hao_ignoremsg(char *msg)
{
int msglen;
msglen = strlen(msg);
/* Ignore our own messages (HHC0007xx, HHC0008xx and HHC0009xx
are reserved so that hao.c can recognize its own messages) */
if (0
|| !strncasecmp( msg, "HHC0007", 7 )
|| !strncasecmp( msg, "HHC0008", 7 )
|| !strncasecmp( msg, "HHC0009", 7 )
)
return TRUE; /* (it's one of our hao messages; ignore it) */
/* To be extra safe, ignore any messages with the string "hao" in them */
if (0
|| !strncasecmp( msg, "HHC00013I Herc command: 'hao ", 29 )
|| !strncasecmp( msg, "HHC00013I Herc command: 'herc hao ", 34 )
|| !strncasecmp( msg, "HHC01603I hao ", 14 )
|| !strncasecmp( msg, "HHC01603I herc hao ", 19 )
)
return TRUE; /* (it's one of our hao messages; ignore it) */
/* Same idea but for messages logged as coming from the .rc file */
if (!strncasecmp( msg, "> hao ", 6 ))
return TRUE;
return FALSE; /* (message appears to be one we should process) */
}
/*---------------------------------------------------------------------------*/
/* size_t hao_subst(char *str, size_t soff, size_t eoff, */
/* char *cmd, size_t coff, size_t csize) */
/* */
/* This function copies a substring of the original string into */
/* the command buffer. The input parameters are: */
/* str the original string */
/* soff starting offset of the substring in the original string */
/* eoff offset of the first character following the substring */
/* cmd the destination command buffer */
/* coff offset in the command buffer to copy the substring */
/* csize size of the command buffer (including terminating zero) */
/* The return value is the number of characters copied. */
/*---------------------------------------------------------------------------*/
static size_t hao_subst(char *str, size_t soff, size_t eoff,
char *cmd, size_t coff, size_t csize)
{
size_t len = eoff - soff;
if (soff + len > strlen(str)) len = strlen(str) - soff;
if (coff + len > csize-1) len = csize-1 - coff;
memcpy(cmd + coff, str + soff, len);
return len;
}
/*---------------------------------------------------------------------------*/
/* void hao_message(char *buf) */
/* */
/* This function is called by hao_thread whenever a message is about to be */
/* printed. Here we check if a rule applies to the message. If so we fire */
/* the command within the rule. */
/*---------------------------------------------------------------------------*/
static void hao_message(char *buf)
{
char work[HAO_WKLEN];
char cmd[HAO_WKLEN];
regmatch_t rm[HAO_MAXCAPT+1];
int i, j, k, numcapt;
size_t n;
char *p;
/* copy and strip spaces */
hao_cpstrp(work, buf);
/* strip the herc prefix */
while(!strncmp(work, "herc", 4))
hao_cpstrp(work, &work[4]);
/* Ignore the message if we should (e.g. if one of our own!) */
if (hao_ignoremsg( work ))
return;
/* serialize */
obtain_lock(&ao_lock);
/* check all defined rules */
for(i = 0; i < HAO_MAXRULE; i++)
{
if(ao_tgt[i] && ao_cmd[i]) /* complete rule defined in this slot? */
{
/* does this rule match our message? */
if (regexec(&ao_preg[i], work, HAO_MAXCAPT+1, rm, 0) == 0)
{
/* count the capturing group matches */
for (j = 0; j <= HAO_MAXCAPT && rm[j].rm_so >= 0; j++);
numcapt = j - 1;
/* copy the command and process replacement patterns */
for (n=0, p=ao_cmd[i]; *p && n < sizeof(cmd)-1; ) {
/* replace $$ by $ */
if (*p == '$' && p[1] == '$') {
cmd[n++] = '$';
p += 2;
continue;
}
/* replace $` by characters to the left of the match */
if (*p == '$' && p[1] == '`') {
n += hao_subst(work, 0, rm[0].rm_so, cmd, n, sizeof(cmd));
p += 2;
continue;
}
/* replace $' by characters to the right of the match */
if (*p == '$' && p[1] == '\'') {
n += hao_subst(work, rm[0].rm_eo, strlen(work), cmd, n, sizeof(cmd));
p += 2;
continue;
}
/* replace $1..$99 by the corresponding capturing group */
if (*p == '$' && isdigit(p[1])) {
if (isdigit(p[2])) {
j = (p[1]-'0') * 10 + (p[2]-'0');
k = 3;
} else {
j = p[1]-'0';
k = 2;
}
if (j > 0 && j <= numcapt) {
n += hao_subst(work, rm[j].rm_so, rm[j].rm_eo, cmd, n, sizeof(cmd));
p += k;
continue;
}
}
/* otherwise copy one character */
cmd[n++] = *p++;
}
cmd[n] = '\0';
/* issue command for this rule */
WRMSG(HHC00081, "I", i, cmd);
panel_command(cmd);
}
}
}
release_lock(&ao_lock);
}
#endif /* defined(OPTION_HAO) */
///////////////////////////////////////////////////////////////////////////////
// Fish notes for possible future enhancement: I was thinking we should
// probably at some point support command rules that allow a custom
// command to be constructed based on the string(s) that was/were found.
#if 0
/*
The following demonstrates how the REG_NOTBOL flag could be used
with regexec() to find all substrings in a line that match a pattern
supplied by a user. (For simplicity of the example, very little
error checking is done.)
*/
regex_t re; /* regular expression */
regmatch_t pm; /* match info */
int error; /* rc from regexec */
char buffer[] = "The quick brown dog jumps over the lazy fox";
char pattern[] = "lazy";
/* Compile the search pattern */
(void)regcomp( &re, pattern, 0 );
/* This call to regexec() finds the first match on the line */
error = regexec( &re, &buffer[0], 1, &pm, 0 );
while (error == 0) /* while matches found */
{
/* Substring found between 'pm.rm_so' and 'pm.rm_eo' */
/* This call to regexec() finds the next match */
error = regexec( &re, buffer + pm.rm_eo, 1, &pm, REG_NOTBOL );
}
#endif
///////////////////////////////////////////////////////////////////////////////