-
Notifications
You must be signed in to change notification settings - Fork 69
/
ttyreader.c
1080 lines (881 loc) · 28.6 KB
/
ttyreader.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
/* **************************************************************** *
* *
* APRX -- 2nd generation APRS iGate and digi with *
* minimal requirement of esoteric facilities or *
* libraries of any kind beyond UNIX system libc. *
* *
* (c) Matti Aarnio - OH2MQK, 2007-2014 *
* *
* **************************************************************** */
#define _SVID_SOURCE 1
#include "aprx.h"
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in.h>
/* The ttyreader does read TTY ports into a big buffer, and then from there
to packet frames depending on what is attached... */
static struct serialport **ttys;
static int ttycount; /* How many are defined ? */
#define TTY_OPEN_RETRY_DELAY_SECS 30
static int poll_millis; /* milliseconds (0 = none.) */
static struct timeval poll_millis_tv;
void hexdumpfp(FILE *fp, const uint8_t *buf, const int len, int axaddr)
{
int i, j;
for (i = 0, j=1; i < len; ++i,++j) {
int c = buf[i] & 0xFF;
fprintf(fp, "%02x", c);
if (j < 8)
fputc(' ',fp);
else {
fputc('|',fp);
j = 0;
}
}
fprintf(fp, " = ");
for (i = 0, j = 1; i < len; ++i,++j) {
int c = buf[i] & 0xFF;
/*
if ((c & 0x81) == 0x80 && (i < 8)) {
// Auto-trigger AX.25 address plaintext converting
axaddr = 1;
}
*/
if (axaddr && ((c & 0x01) == 1) && i > 3) {
// Definitely not AX.25 address anymore..
axaddr = 0;
}
if (axaddr) {
// Shifted AX.25 address byte?
c >>= 1;
}
if (c < 0x20 || c > 0x7E)
c = '.';
fputc(c, fp);
if (j >= 8) {
fputc('|',fp);
j = 0;
}
}
}
/*
* ttyreader_getc() -- pick one char ( >= 0 ) out of input buffer, or -1 if out of buffer
*/
int ttyreader_getc(struct serialport *S)
{
if (S->rdcursor >= S->rdlen) { /* Out of data ? */
if (S->rdcursor)
S->rdcursor = S->rdlen = 0;
/* printf("-\n"); */
return -1;
}
/* printf(" %02X", 0xFF & S->rdbuf[S->rdcursor++]); */
return (0xFF & S->rdbuf[S->rdcursor++]);
}
/*
* ttyreader_pulltnc2() -- process a line of text by calling
* TNC2 UI Monitor analyzer
*/
static int ttyreader_pulltnc2(struct serialport *S)
{
const uint8_t *p;
int addrlen = 0;
p = memchr(S->rdline, ':', S->rdlinelen);
if (p != NULL)
addrlen = (int)(p - S->rdline);
erlang_add(S->ttycallsign[0], ERLANG_RX, S->rdlinelen, 1); /* Account one packet */
/* Send the frame to internal AX.25 network */
/* netax25_sendax25_tnc2(S->rdline, S->rdlinelen); */
#ifndef DISABLE_IGATE
/* S->rdline[] has text line without line ending CR/LF chars */
igate_to_aprsis(S->ttycallsign[0], 0, (char *) (S->rdline), addrlen, S->rdlinelen, 0, 1);
#endif
return 0;
}
#if 0
/*
* ttyreader_pullaea() -- process a line of text by calling
* AEA MONITOR 1 analyzer
*/
static int ttyreader_pullaea(struct serialport *S)
{
int i;
if (S->rdline[S->rdlinelen - 1] == ':') {
/* Could this be the AX25 header ? */
char *s = strchr(S->rdline, '>');
if (s) {
/* Ah yes, it well could be.. */
strcpy(S->rdline2, S->rdline);
return;
}
}
/* FIXME: re-arrange the S->rdline2 contained AX25 address tokens
and flags..
perl code:
@addrs = split('>', $rdline2);
$out = shift @addrs; # pop first token in sequence
$out .= '>';
$out .= pop @addrs; # pop last token in sequence
foreach $a (@addrs) { # rest of the tokens in sequence, if any
$out .= ',' . $a;
}
# now $out has address data in TNC2 sequence.
*/
/* printf("%s%s\n", S->rdline2, S->rdline); fflush(stdout); */
return 0;
}
#endif
/*
* ttyreader_pulltext() -- process a line of text from the serial port..
*/
static int ttyreader_pulltext(struct serialport *S)
{
int c;
const time_t rdtime = S->rdline_time;
// "rdtime > now" case ("now" going backwards) is always overwritten below
if (timecmp(rdtime+2, tick.tv_sec) < 0) {
// A timeout has happen? Either data is added constantly, or
// nothing was received from TEXT datastream for couple seconds!
S->rdlinelen = 0;
// S->kissstate = KISSSTATE_SYNCHUNT;
}
S->rdline_time = tick.tv_sec;
for (;;) {
c = ttyreader_getc(S);
if (c < 0)
return c; /* Out of input.. */
/* S->kissstate != 0: read data into S->rdline,
== 0: discard data until CR|LF.
Zero-size read line is discarded as well
(only CR|LF on input frame) */
if (S->kissstate == KISSSTATE_SYNCHUNT) {
/* Looking for CR or LF.. */
if (c == '\n' || c == '\r')
S->kissstate = KISSSTATE_COLLECTING;
S->rdlinelen = 0;
continue;
}
/* Now: (S->kissstate != KISSSTATE_SYNCHUNT) */
if (c == '\n' || c == '\r') {
/* End of line seen! */
if (S->rdlinelen > 0) {
/* Non-zero-size string, put terminating 0 byte on it. */
S->rdline[S->rdlinelen] = 0;
/* .. and process it depending .. */
if (S->linetype == LINETYPE_TNC2) {
ttyreader_pulltnc2(S);
#if 0
} else { /* .. it is LINETYPE_AEA ? */
ttyreader_pullaea(S);
#endif
}
}
S->rdlinelen = 0;
continue;
}
/* Now place the char in the linebuffer, if there is space.. */
if (S->rdlinelen >= (sizeof(S->rdline) - 3)) { /* Too long ! Way too long ! */
S->kissstate = KISSSTATE_SYNCHUNT; /* Sigh.. discard it. */
S->rdlinelen = 0;
continue;
}
/* Put it on line store: */
S->rdline[S->rdlinelen++] = c;
} /* .. input loop */
return 0; /* not reached */
}
/*
* ttyreader_linewrite() -- write out buffered data
*/
void ttyreader_linewrite(struct serialport *S)
{
int i, len;
if ((S->wrlen == 0) || (S->wrlen > 0 && S->wrcursor >= S->wrlen)) {
S->wrlen = S->wrcursor = 0; /* already all written */
return;
}
/* Now there is some data in between wrcursor and wrlen */
len = S->wrlen - S->wrcursor;
if (len > 0)
i = write(S->fd, S->wrbuf + S->wrcursor, len);
else
i = 0;
if (i > 0) { /* wrote something */
S->wrcursor += i;
len = S->wrlen - S->wrcursor;
if (len == 0) {
S->wrcursor = S->wrlen = 0; /* wrote all ! */
} else {
/* compact the buffer a bit */
memcpy(S->wrbuf, S->wrbuf + S->wrcursor, len);
S->wrcursor = 0;
S->wrlen = len;
}
}
}
/*
* ttyreader_lineread() -- read what there is into our buffer,
* and process the buffer..
*/
static void ttyreader_lineread(struct serialport *S)
{
int i;
int rdspace = sizeof(S->rdbuf) - S->rdlen;
if (S->rdcursor > 0) {
/* Read-out cursor is not at block beginning,
is there unread data too ? */
if (S->rdlen > S->rdcursor) {
/* Uh.. lets move buffer down a bit,
to make room for more to the end.. */
memcpy(S->rdbuf, S->rdbuf + S->rdcursor,
S->rdlen - S->rdcursor);
S->rdlen = S->rdlen - S->rdcursor;
} else
S->rdlen = 0; /* all processed, mark its size zero */
/* Cursor to zero, rdspace recalculated */
S->rdcursor = 0;
/* recalculate */
rdspace = sizeof(S->rdbuf) - S->rdlen;
}
if (rdspace > 0) { /* We have room to read into.. */
i = read(S->fd, S->rdbuf + S->rdlen, rdspace);
if (i == 0) { /* EOF ? USB unplugged ? */
close(S->fd);
S->fd = -1;
tv_timeradd_seconds(&S->wait_until, &tick, TTY_OPEN_RETRY_DELAY_SECS);
aprxlog("TTY %s EOF - CLOSED, WAITING %d SECS\n", S->ttyname, TTY_OPEN_RETRY_DELAY_SECS);
return;
}
if (i < 0) /* EAGAIN or whatever.. */
return;
/* Some data has been accumulated ! */
if (debug > 2) {
printf("%ld\tTTY %s: read() frame: ", tick.tv_sec, S->ttyname);
hexdumpfp(stdout, S->rdbuf+S->rdlen, i, 1);
printf("\n");
}
S->rdlen += i;
S->last_read_something = tick.tv_sec;
}
/* Done reading, maybe. Now processing.
The pullXX does read up all input, and does
however many frames there are in, and pauses
when there is no enough input data for a full
frame/line/whatever.
*/
if (S->linetype == LINETYPE_KISS ||
S->linetype == LINETYPE_KISSFLEXNET ||
S->linetype == LINETYPE_KISSBPQCRC ||
S->linetype == LINETYPE_KISSSMACK) {
kiss_pullkiss(S);
#ifndef DISABLE_IGATE
} else if (S->linetype == LINETYPE_DPRSGW) {
dprsgw_pulldprs(S);
#endif
} else if (S->linetype == LINETYPE_TNC2
#if 0
|| S->linetype == LINETYPE_AEA
#endif
) {
ttyreader_pulltext(S);
} else {
close(S->fd); /* Urgh ?? Bad linetype value ?? */
S->fd = -1;
tv_timeradd_seconds(&S->wait_until, &tick, TTY_OPEN_RETRY_DELAY_SECS);
aprxlog("TTY %s Unsupported linetype - CLOSED, WAITING %d SECS\n", S->ttyname, TTY_OPEN_RETRY_DELAY_SECS);
}
/* Consumed something, and our read cursor is not in the beginning ? */
if (S->rdcursor > 0 && S->rdcursor < S->rdlen) {
/* Compact the input buffer! */
memcpy(S->rdbuf, S->rdbuf + S->rdcursor,
S->rdlen - S->rdcursor);
}
S->rdlen -= S->rdcursor;
S->rdcursor = 0;
}
/*
* ttyreader_linesetup() -- open and configure the serial port
*/
static void ttyreader_linesetup(struct serialport *S)
{
int i;
S->wait_until.tv_sec = 0; // Zero it just to be safe
S->wait_until.tv_usec = 0; // Zero it just to be safe
S->wrlen = S->wrcursor = 0; // init them at first
// If NOT tcp! type socket, it is presumably openable with
// open(2) instead of something else, like socket(2)...
if (memcmp(S->ttyname, "tcp!", 4) != 0) {
int e;
// Open the serial port as RW, non-blocking, no-control-tty
S->fd = open(S->ttyname, O_RDWR | O_NOCTTY | O_NONBLOCK, 0);
e = errno;
if (debug) {
printf("%ld\tTTY %s OPEN - fd=%d - ",
tick.tv_sec, S->ttyname, S->fd);
if (S->fd < 0) {
printf("errno=%d (%s) - ", e, strerror(e));
}
}
if (S->fd < 0) { /* Urgh.. an error.. */
tv_timeradd_seconds(&S->wait_until, &tick, TTY_OPEN_RETRY_DELAY_SECS);
if (debug)
printf("FAILED, WAITING %d SECS\n",
TTY_OPEN_RETRY_DELAY_SECS);
aprxlog("TTY %s failed to open; errno=%d (%s)",
S->ttyname, e, strerror(e));
return;
}
if (debug)
printf("OK\n");
aprxlog("TTY %s opened", S->ttyname);
/* Set attributes */
aprx_cfmakeraw(&S->tio, 1); /* hw-flow on */
i = tcsetattr(S->fd, TCSAFLUSH, &S->tio);
if (i < 0) {
if (debug)
printf("%ld\tERROR: TCSETATTR failed; errno=%d\n",
tick.tv_sec, errno);
close(S->fd);
S->fd = -1;
tv_timeradd_seconds(&S->wait_until, &tick, TTY_OPEN_RETRY_DELAY_SECS);
aprxlog("TTY %s tcsetattr() failed. CLOSING TTY.\n", S->ttyname);
return;
}
// FIXME: ?? Set baud-rates ?
// Used system (Linux) has them in 'struct termios' so they
// are now set, but other systems may have different ways..
// Flush buffers once again.
i = tcflush(S->fd, TCIOFLUSH);
for (i = 0; i < 16; ++i) {
if (S->initstring[i] != NULL) {
memcpy(S->wrbuf + S->wrlen, S->initstring[i], S->initlen[i]);
S->wrlen += S->initlen[i];
}
}
/* Flush it out.. and if not successfull,
poll(2) will take care of it soon enough.. */
ttyreader_linewrite(S);
} else { /* socket connection to remote TTY.. */
/* "tcp!hostname-or-ip!port!opt-parameters" */
char *par = strdup(S->ttyname);
char *host = NULL, *port = NULL, *opts = NULL;
struct addrinfo req, *ai;
int i;
if (debug)
printf("socket connect() preparing: %s\n", par);
while (1) {
host = strchr(par, '!');
if (host)
++host;
else
break; /* Found no '!' ! */
port = strchr(host, '!');
if (port)
*port++ = 0;
else
break; /* Found no '!' ! */
opts = strchr(port, '!');
if (opts)
*opts++ = 0;
break;
}
if (!port) {
/* Still error condition.. no port data */
}
memset(&req, 0, sizeof(req));
req.ai_socktype = SOCK_STREAM;
req.ai_protocol = IPPROTO_TCP;
req.ai_flags = 0;
#if 1
req.ai_family = AF_UNSPEC; /* IPv4 and IPv6 are both OK */
#else
req.ai_family = AF_INET; /* IPv4 only */
#endif
ai = NULL;
i = getaddrinfo(host, port, &req, &ai);
if (ai) {
S->fd = socket(ai->ai_family, SOCK_STREAM, 0);
if (S->fd >= 0) {
fd_nonblockingmode(S->fd);
i = connect(S->fd, ai->ai_addr,
ai->ai_addrlen);
if ((i != 0) && (errno != EINPROGRESS)) {
/* non-blocking connect() yields EINPROGRESS,
anything else and we fail entirely... */
if (debug)
printf("ttyreader socket connect call failed: %d : %s\n", errno, strerror(errno));
close(S->fd);
S->fd = -1;
aprxlog("TTY %s Socket open failed.\n", S->ttyname);
}
}
freeaddrinfo(ai);
}
free(par);
}
S->last_read_something = tick.tv_sec; /* mark the timeout for future.. */
S->rdlen = S->rdcursor = S->rdlinelen = 0;
S->kissstate = KISSSTATE_SYNCHUNT;
memset( S->smack_probe, 0, sizeof(S->smack_probe) );
S->smack_subids = 0;
}
/*
* ttyreader_init()
*/
void ttyreader_init(void)
{
/* nothing.. */
}
/*
* ttyreader_prepoll() -- prepare system for next round of polling
*/
int ttyreader_prepoll(struct aprxpolls *app)
{
int idx = 0; /* returns number of *fds filled.. */
int i;
struct serialport *S;
struct pollfd *pfd;
if (poll_millis_tv.tv_sec == 0) {
poll_millis_tv = tick;
}
// if (debug) printf("ttyreader_prepoll() %d\n", poll_millis);
for (i = 0; i < ttycount; ++i) {
S = ttys[i];
if (!S->ttyname)
continue; /* No name, no look... */
#if 0 // occasional debug mode without real hardware at hand
if (poll_millis > 0) {
int deltams = tv_timerdelta_millis(&tick, &poll_millis_tv);
struct timeval tv;
if (debug) printf("%d.%06d .. defining %d ms KISS POLL\n", tick.tv_sec, tick.tv_usec, poll_millis);
}
#endif
if (S->fd < 0) {
if (time_reset && (S->wait_until.tv_sec != 0)) {
// System time jumped, reset it to NOW.
S->wait_until = tick;
}
/* Not an open TTY, but perhaps waiting ? */
if ((S->wait_until.tv_sec != 0) && tv_timercmp( &S->wait_until, &tick) > 0) {
/* .. waiting for future! */
if (tv_timercmp( &app->next_timeout, &S->wait_until ) > 0) {
app->next_timeout = S->wait_until;
}
/* .. but only until our timeout,
if it is sooner than global one. */
continue; /* Waiting on this one.. */
}
/* Waiting or not, FD is not open, and deadline is past.
Lets try to open! */
ttyreader_linesetup(S);
}
/* .. No open FD */
/* Still no open FD ? */
if (S->fd < 0)
continue;
// FD is open, check read/idle timeout ...
if (time_reset) {
// System time has jumped, Reset the read time to NOW.
S->last_read_something = tick.tv_sec;
}
// FD is open, check read/idle timeout ...
if ((S->read_timeout > 0) &&
timecmp(tick.tv_sec, (S->last_read_something + S->read_timeout)) > 0) {
if (debug)
printf("%ld\tRead timeout on %s; %d seconds w/o input. fd=%d\n",
tick.tv_sec, S->ttyname, S->read_timeout, S->fd);
close(S->fd); /* Close and mark for re-open */
S->fd = -1;
tv_timeradd_seconds( &S->wait_until, &tick, TTY_OPEN_RETRY_DELAY_SECS);
aprxlog("TTY %s read timeout. Closing TTY for later re-open.\n", S->ttyname);
continue;
}
if (poll_millis > 0) {
int margin = poll_millis*2;
// Limit large delta time to within 0..2*poll_millis.
int deltams = tv_timerdelta_millis(&tick, &poll_millis_tv);
if (deltams > margin) deltams = poll_millis;
if (deltams < -margin) deltams = poll_millis;
tv_timeradd_millis(&poll_millis_tv, &tick, deltams);
if (debug) printf("%ld.%06d .. defining %d ms KISS POLL\n", (long)tick.tv_sec, (int)tick.tv_usec, poll_millis);
}
/* FD is open, lets mark it for poll read.. */
pfd = aprxpolls_new(app);
pfd->fd = S->fd;
pfd->events = POLLIN | POLLPRI;
pfd->revents = 0;
if (S->wrlen > 0 && S->wrlen > S->wrcursor)
pfd->events |= POLLOUT;
++idx;
}
return idx;
}
/*
* ttyreader_postpoll() -- Done polling, what happened ?
*/
int ttyreader_postpoll(struct aprxpolls *app)
{
int idx, i;
struct serialport *S;
struct pollfd *P;
// if (debug) printf("ttyreader_postpoll()\n");
for (idx = 0, P = app->polls; idx < app->pollcount; ++idx, ++P) {
// Are we operating in active KISS polling mode?
if (poll_millis > 0) {
for (i = 0; i < ttycount; ++i) {
S = ttys[i];
#if 0 // occasional debug mode without real hardware at hand
if (tv_timercmp(&poll_millis_tv, &tick) <= 0) {
// Poll interval gone, time for next active POLL request!
kiss_poll(S);
tv_timeradd_millis(&poll_millis_tv, &poll_millis_tv, poll_millis);
}
#endif
if (S->fd != P->fd)
continue; /* Not this one ? */
if (S->fd < 0)
continue; /* Not this one ? */
if (!(S->linetype == LINETYPE_KISS ||
S->linetype == LINETYPE_KISSFLEXNET ||
S->linetype == LINETYPE_KISSBPQCRC ||
S->linetype == LINETYPE_KISSSMACK)) {
// Not a KISS line..
continue;
}
if (tv_timercmp(&poll_millis_tv, &tick) <= 0) {
// Poll interval gone, time for next active POLL request!
kiss_poll(S);
tv_timeradd_millis(&poll_millis_tv, &poll_millis_tv, poll_millis);
}
}
}
for (i = 0; i < ttycount; ++i) {
S = ttys[i];
if (S->fd != P->fd)
continue; /* Not this one ? */
/* It is this one! */
if (P->revents & POLLOUT)
ttyreader_linewrite(S);
if (P->revents & (POLLIN | POLLPRI | POLLERR | POLLHUP))
ttyreader_lineread(S);
}
}
return 0;
}
/*
* Make a pre-existing termios structure into "raw" mode: character-at-a-time
* mode with no characters interpreted, 8-bit data path.
*/
void
aprx_cfmakeraw(t, f)
struct termios *t;
{
t->c_iflag &= ~(IMAXBEL|IXOFF|INPCK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON|IGNPAR);
t->c_iflag |= IGNBRK;
t->c_oflag &= ~OPOST;
if (f) {
t->c_oflag |= CRTSCTS;
} else {
t->c_oflag &= ~CRTSCTS;
}
t->c_lflag &= ~(ECHO|ECHOE|ECHOK|ECHONL|ICANON|ISIG|IEXTEN|NOFLSH|TOSTOP|PENDIN);
t->c_cflag &= ~(CSIZE|PARENB);
t->c_cflag |= CS8|CREAD;
t->c_cc[VMIN] = 80;
t->c_cc[VTIME] = 3;
}
struct serialport *ttyreader_new(void)
{
struct serialport *tty = calloc(1, sizeof(*tty));
int baud = B1200;
tty->fd = -1;
tv_timeradd_seconds( &tty->wait_until, &tick, -1); /* begin opening immediately */
tty->last_read_something = tick.tv_sec; /* well, not really.. */
tty->linetype = LINETYPE_KISS; /* default */
tty->kissstate = KISSSTATE_SYNCHUNT;
tty->read_timeout = 3600; /* Default port read timeout is 60 minutes. */
tty->ttyname = NULL;
/* setup termios parameters for this line.. */
aprx_cfmakeraw(&tty->tio, 0);
tty->tio.c_cc[VMIN] = 80; /* pick at least one char .. */
tty->tio.c_cc[VTIME] = 3; /* 0.3 seconds timeout - 36 chars @ 1200 baud */
tty->tio.c_cflag |= (CREAD | CLOCAL);
cfsetispeed(&tty->tio, baud);
cfsetospeed(&tty->tio, baud);
return tty;
}
/*
* Parse tty related parameters, return 0 for OK, 1 for error
*/
int ttyreader_parse_nullparams(struct configfile *cf, struct serialport *tty, char *str)
{
char *param1 = 0;
int has_fault = 0;
/* FIXME: analyze correct serial port data and parity format settings,
now hardwired to 8-n-1 -- does not work without for KISS anyway.. */
config_STRLOWER(str); /* until end of line */
/* Optional parameters */
while (*str != 0) {
param1 = str;
str = config_SKIPTEXT(str, NULL);
str = config_SKIPSPACE(str);
if (debug)
printf(" .. param='%s'",param1);
/* Note: param1 is now lower-case string */
if (strcmp(param1, "pollmillis") == 0) {
param1 = str;
str = config_SKIPTEXT(str, NULL);
str = config_SKIPSPACE(str);
tty->poll_millis = atol(param1); // milliseconds
if (poll_millis == 0)
poll_millis = tty->poll_millis;
if (tty->poll_millis < poll_millis)
poll_millis = tty->poll_millis;
if (poll_millis < 1 || poll_millis > 10000) {
has_fault = 1;
printf("%s:%d POLLMILLIS value not in sanity range of 1 to 10 000: '%s'", cf->name, cf->linenum, param1);
} else {
if (debug)
printf(" .. pollmillis %d -- polling interval\n", tty->poll_millis);
}
} else {
printf("%s:%d ERROR: Unknown sub-keyword on a serial/tcp device configuration: '%s'\n",
cf->name, cf->linenum, param1);
has_fault = 1;
}
}
if (debug) printf("\n");
return has_fault;
}
/*
* Parse tty related parameters, return 0 for OK, 1 for error
*/
int ttyreader_parse_ttyparams(struct configfile *cf, struct serialport *tty, char *str)
{
int i;
speed_t baud;
int tncid = 0;
char *param1 = 0;
int has_fault = 0;
/* FIXME: analyze correct serial port data and parity format settings,
now hardwired to 8-n-1 -- does not work without for KISS anyway.. */
config_STRLOWER(str); /* until end of line */
/* Optional parameters */
while (*str != 0) {
param1 = str;
str = config_SKIPTEXT(str, NULL);
str = config_SKIPSPACE(str);
if (debug)
printf(" .. param='%s'",param1);
/* See if it is baud-rate ? */
i = atol(param1); /* serial port speed - baud rate */
baud = B1200;
switch (i) {
case 1200:
baud = B1200;
break;
#ifdef B1800
case 1800:
baud = B1800;
break;
#endif
case 2400:
baud = B2400;
break;
case 4800:
baud = B4800;
break;
case 9600:
baud = B9600;
break;
#ifdef B19200
case 19200:
baud = B19200;
break;
#endif
#ifdef B38400
case 38400:
baud = B38400;
break;
#endif
#ifdef B57600
case 57600:
baud = B57600;
break;
#endif
#ifdef B115200
case 115200:
baud = B115200;
break;
#endif
#ifdef B230400
case B230400:
baud = B230400;
break;
#endif
#ifdef B460800
case 460800:
baud = B460800;
break;
#endif
#ifdef B500000
case 500000:
baud = B500000;
break;
#endif
#ifdef B576000
case 576000:
baud = B576000;
break;
#endif
default:
i = -1;
break;
}
if (baud != B1200) {
cfsetispeed(&tty->tio, baud);
cfsetospeed(&tty->tio, baud);
}
/* Note: param1 is now lower-case string */
if (i > 0) {
;
} else if (strcmp(param1, "8n1") == 0) {
/* default behaviour, ignore */
} else if (strcmp(param1, "kiss") == 0) {
tty->linetype = LINETYPE_KISS; /* plain basic KISS */
} else if (strcmp(param1, "xorsum") == 0) {
tty->linetype = LINETYPE_KISSBPQCRC; /* KISS with BPQ "CRC" */
} else if (strcmp(param1, "xkiss") == 0) {
tty->linetype = LINETYPE_KISSBPQCRC; /* KISS with BPQ "CRC" */
} else if (strcmp(param1, "bpqcrc") == 0) {
tty->linetype = LINETYPE_KISSBPQCRC; /* KISS with BPQ "CRC" */
} else if (strcmp(param1, "flexnet") == 0) {
tty->linetype = LINETYPE_KISSFLEXNET; /* KISS with FLEXNET's CRC16 */
} else if (strcmp(param1, "smack") == 0) {
tty->linetype = LINETYPE_KISSSMACK; /* KISS with SMACK / CRC16 */
} else if (strcmp(param1, "crc16") == 0) {
tty->linetype = LINETYPE_KISSSMACK; /* KISS with SMACK / CRC16 */
} else if (strcmp(param1, "poll") == 0) {
/* FIXME: Some systems want polling... */
} else if (strcmp(param1, "callsign") == 0 ||
strcmp(param1, "alias") == 0) {
param1 = str;
str = config_SKIPTEXT(str, NULL);
str = config_SKIPSPACE(str);
config_STRUPPER(param1);
tty->ttycallsign[tncid] = strdup(param1);
#ifdef PF_AX25 /* PF_AX25 exists -- highly likely a Linux system ! */
tty->netax25[tncid] = netax25_open(param1);
#endif
/* Use side-effect: this defines the tty into
erlang accounting */
erlang_set(param1, /* Heuristic constant for max channel capa.. */ (int) ((1200.0 * 60) / 8.2));
} else if (strcmp(param1, "timeout") == 0) {
param1 = str;
str = config_SKIPTEXT(str, NULL);
str = config_SKIPSPACE(str);
tty->read_timeout = atol(param1);
} else if (strcmp(param1, "tncid") == 0) {
param1 = str;
str = config_SKIPTEXT(str, NULL);
str = config_SKIPSPACE(str);
tncid = atoi(param1);
if (tncid < 0 || tncid > 15) {
tncid = 0;
printf("%s:%d TNCID value not in sanity range of 0 to 15: '%s'", cf->name, cf->linenum, param1);
has_fault = 1;
}
} else if (strcmp(param1, "pollmillis") == 0) {
param1 = str;
str = config_SKIPTEXT(str, NULL);
str = config_SKIPSPACE(str);
tty->poll_millis = atol(param1); // milliseconds
if (poll_millis == 0)
poll_millis = tty->poll_millis;
if (tty->poll_millis < poll_millis)
poll_millis = tty->poll_millis;
if (poll_millis < 1 || poll_millis > 10000) {
has_fault = 1;
printf("%s:%d POLLMILLIS value not in sanity range of 1 to 10 000: '%s'", cf->name, cf->linenum, param1);
} else {
if (debug)
printf(" .. pollmillis %d -- polling interval\n", tty->poll_millis);
}
#ifndef DISABLE_IGATE
} else if (strcmp(param1, "tnc2") == 0) {
tty->linetype = LINETYPE_TNC2; /* TNC2 monitor */
} else if (strcmp(param1, "dprs") == 0) {
tty->linetype = LINETYPE_DPRSGW;
#endif
} else if (strcmp(param1, "initstring") == 0) {
int parlen;
param1 = str;
str = config_SKIPTEXT(str, &parlen);
str = config_SKIPSPACE(str);
tty->initlen[tncid] = parlen;
tty->initstring[tncid] = malloc(parlen);
memcpy(tty->initstring[tncid], param1, parlen);
if (debug)
printf("initstring len=%d\n",parlen);
} else {
printf("%s:%d ERROR: Unknown sub-keyword on a serial/tcp device configuration: '%s'\n",
cf->name, cf->linenum, param1);
has_fault = 1;