aboutsummaryrefslogtreecommitdiffstats
path: root/src/tty.c
blob: 62af184877c3990743fb795ffb444ecb79e33368 (plain)
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
/*
 * tty.c:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

static char rcsid[] = "$Id$";

/*
 * $Log$
 * Revision 1.23  2008/03/06 16:49:39  james
 * *** empty log message ***
 *
 * Revision 1.22  2008/03/06 16:49:05  james
 * *** empty log message ***
 *
 * Revision 1.21  2008/03/03 06:04:42  james
 * *** empty log message ***
 *
 * Revision 1.20  2008/03/02 10:37:56  james
 * *** empty log message ***
 *
 * Revision 1.19  2008/02/28 16:57:52  james
 * *** empty log message ***
 *
 * Revision 1.18  2008/02/28 16:37:16  james
 * *** empty log message ***
 *
 * Revision 1.17  2008/02/28 15:37:06  james
 * *** empty log message ***
 *
 * Revision 1.16  2008/02/28 12:12:25  james
 * *** empty log message ***
 *
 * Revision 1.15  2008/02/28 00:10:44  james
 * *** empty log message ***
 *
 * Revision 1.14  2008/02/23 13:05:58  staffcvs
 * *** empty log message ***
 *
 * Revision 1.13  2008/02/23 11:48:37  james
 * *** empty log message ***
 *
 * Revision 1.12  2008/02/22 23:39:27  james
 * *** empty log message ***
 *
 * Revision 1.11  2008/02/20 18:31:53  james
 * *** empty log message ***
 *
 * Revision 1.10  2008/02/15 23:52:12  james
 * *** empty log message ***
 *
 * Revision 1.9  2008/02/15 03:32:07  james
 * *** empty log message ***
 *
 * Revision 1.8  2008/02/14 10:36:18  james
 * *** empty log message ***
 *
 * Revision 1.7  2008/02/14 10:34:30  james
 * *** empty log message ***
 *
 * Revision 1.6  2008/02/13 16:59:34  james
 * *** empty log message ***
 *
 * Revision 1.5  2008/02/13 16:57:29  james
 * *** empty log message ***
 *
 * Revision 1.4  2008/02/12 22:36:46  james
 * *** empty log message ***
 *
 * Revision 1.3  2008/02/09 15:47:28  james
 * *** empty log message ***
 *
 */


#include "project.h"

static int
speed_t_to_baud (speed_t s)
{
  switch (s)
    {
#ifdef B0
    case B0:
      return 0;
#endif
#ifdef B50
    case B50:
      return 50;
#endif
#ifdef B75
    case B75:
      return 75;
#endif
#ifdef B110
    case B110:
      return 110;
#endif
#ifdef B134
    case B134:
      return 134;
#endif
#ifdef B150
    case B150:
      return 150;
#endif
#ifdef B200
    case B200:
      return 200;
#endif
#ifdef B300
    case B300:
      return 300;
#endif
#ifdef B600
    case B600:
      return 600;
#endif
#ifdef B1200
    case B1200:
      return 1200;
#endif
#ifdef B1800
    case B1800:
      return 1800;
#endif
#ifdef B2400
    case B2400:
      return 2400;
#endif
#ifdef B4800
    case B4800:
      return 4800;
#endif
#ifdef B9600
    case B9600:
      return 9600;
#endif
#ifdef B19200
    case B19200:
      return 19200;
#endif
#ifdef B38400
    case B38400:
      return 38400;
#endif
#ifdef B57600
    case B57600:
      return 57600;
#endif
#ifdef B115200
    case B115200:
      return 115200;
#endif
#ifdef B230400
    case B230400:
      return 230400;
#endif
    }

  return -1;
}

static speed_t
baud_to_speed_t (int baud)
{
  switch (baud)
    {
#ifdef B0
    case 0:
      return B0;
#endif
#ifdef B50
    case 50:
      return B50;
#endif
#ifdef B75
    case 75:
      return B75;
#endif
#ifdef B110
    case 110:
      return B110;
#endif
#ifdef B134
    case 134:
      return B134;
#endif
#ifdef B150
    case 150:
      return B150;
#endif
#ifdef B200
    case 200:
      return B200;
#endif
#ifdef B300
    case 300:
      return B300;
#endif
#ifdef B600
    case 600:
      return B600;
#endif
#ifdef B1200
    case 1200:
      return B1200;
#endif
#ifdef B1800
    case 1800:
      return B1800;
#endif
#ifdef B2400
    case 2400:
      return B2400;
#endif
#ifdef B4800
    case 4800:
      return B4800;
#endif
#ifdef B9600
    case 9600:
      return B9600;
#endif
#ifdef B19200
    case 19200:
      return B19200;
#endif
#ifdef B38400
    case 38400:
      return B38400;
#endif
#ifdef B57600
    case 57600:
      return B57600;
#endif
#ifdef B115200
    case 115200:
      return B115200;
#endif
#ifdef B230400
    case 230400:
      return B230400;
#endif
    }
  return -1;
}

void
tty_pre_select (TTY * t, fd_set * rfds, fd_set * wfds)
{
  int line;
  struct timeval now, dif;

  if (t->hanging_up)
    {

      gettimeofday (&now, NULL);
      timersub (&now, &t->hangup_clock, &dif);
      if (dif.tv_sec)
        {
          line = TIOCM_DTR;
          ioctl (t->rfd, TIOCMBIS, &line);
          t->hanging_up = 0;
        }
    }


  FD_SET (t->rfd, rfds);
}

int
tty_get_status (TTY * t, TTY_Status * s)
{

  s->lines = 0;
  ioctl (t->rfd, TIOCMGET, &s->lines);

  if (tcgetattr (t->rfd, &s->termios))
    return -1;

  s->baud = speed_t_to_baud (cfgetispeed (&s->termios));
  s->blocked = t->blocked;

  return 0;
}

int
tty_get_baud (TTY * t)
{
  struct termios tios = { 0 };

  if (tcgetattr (t->rfd, &tios))
    return;

  return speed_t_to_baud (cfgetispeed (&tios));
}


void
tty_set_baud (TTY * t, int rate)
{
  struct termios tios = { 0 };

  speed_t s = baud_to_speed_t (rate);

  if (s == (speed_t) - 1)
    return;

  if (tcgetattr (t->rfd, &tios))
    return;

  cfsetispeed (&tios, s);
  cfsetospeed (&tios, s);

  tcsetattr (t->rfd, TCSANOW, &tios);
}

void
tty_send_break (TTY * t)
{
  tcsendbreak (t->wfd, 0);
}

void
tty_set_flow (TTY * t, int flow)
{
  struct termios tios = { 0 };

  if (tcgetattr (t->rfd, &tios))
    return;

  if (flow)
    tios.c_cflag |= CRTSCTS;
  else
    tios.c_cflag &= ~CRTSCTS;

  tcsetattr (t->rfd, TCSANOW, &tios);

}

void
tty_hangup (TTY * t)
{
  int line;

  line = TIOCM_DTR;
  ioctl (t->rfd, TIOCMBIC, &line);

  t->hanging_up = 1;
  gettimeofday (&t->hangup_clock, NULL);

}

void
tty_length (TTY * t, int l)
{
  t->displayed_length = l;
}

void
tty_winch (TTY * t, CRT_Pos size)
{
  struct winsize sz = { 0 };

  sz.ws_col = size.x;
  sz.ws_row = size.y;

  ioctl (t->wfd, TIOCSWINSZ, &sz);
}



#if 0
typedef struct
{
  int in_dle;
  int in_errmark;

  int bit_edge_frequency[8];
  int errs;
}
#endif
#define DLE 0377
#define bit(p,b,z,o) \
	do { \
	  if ((b && z)) { \
	    p->bitfreq[z]++; \
	    z = 0; \
	  } \
 	  \
	  if ((!b && o)) \
	  { \
	    p->bitfreq[z]++; \
	    o = 0; \
	  } \
 	  \
	  if (b) \
	    o++; \
	  else \
	    z++; \
	  } \
	while (0)
static void
tty_bit_analyse (Context * c, int err, int ch)
{
  int d;
  int zc = 0, oc = 0;
  TTY_Parser *p = c->tp;


  bit (p, 0, zc, oc);

  for (d = 1; d < 0x100; d <<= 1)
    {
      bit (p, ch & d, zc, oc);
    }
  bit (p, 1, zc, oc);



  if (err)
    {
      p->biterrs++;
      gettimeofday (&p->lasterr, NULL);
    }

  if (p->biterrs)
    {
      log_f (c->l,
             "<tty_bit_analyse: 0%d%d%d%d%d%d%d%d1  [%d,%d,%d,%d,%d,%d,%d,%d,%d,%d]>",
             ch & 0x01 ? 1 : 0, ch & 0x02 ? 1 : 0, ch & 0x04 ? 1 : 0,
             ch & 0x08 ? 1 : 0, ch & 0x10 ? 1 : 0, ch & 0x20 ? 1 : 0,
             ch & 0x40 ? 1 : 0, ch & 0x80 ? 1 : 0, p->bitfreq[0],
             p->bitfreq[1], p->bitfreq[2], p->bitfreq[3], p->bitfreq[4],
             p->bitfreq[5], p->bitfreq[6], p->bitfreq[7], p->bitfreq[8],
             p->bitfreq[9]);
    }

}

void
tty_parse_reset (Context * c)
{
  TTY_Parser *p = c->tp;
  memset (p->bitfreq, 0, sizeof (p->bitfreq));
  p->biterrs = 0;
  p->guessed_baud = 0;
}

void
tty_analyse (Context * c)
{
  TTY_Parser *p = c->tp;
  struct timeval now, dif;
  int i, j, max;

  if (!p->biterrs)
    {
      p->guessed_baud = 0;
      return;
    }

  gettimeofday (&now, NULL);

  timersub (&now, &p->lasterr, &dif);

  if (dif.tv_sec > 10)
    {
      tty_parse_reset (c);
      return;
    }


  max = -1;
  j = 0;
  for (i = 0; i < TTY_BITFREQ_LEN; ++i)
    {
      if (p->bitfreq[i] > max)
        {
          max = p->bitfreq[i];
          j = i;
        }
    }

  if (c->t)
    i = tty_get_baud (c->t);
  else
    i = -1;

  if (j == 1)
    {
      /*Closest bit edge is one bit, so the baud rate is too low */
      p->guessed_baud = -1;

    }
  else
    {
      if (i > 0)
        p->guessed_baud = i / j;
      else
        p->guessed_baud = 0;

    }

  if (p->guessed_baud == -1)
    {
      log_f (c->l, "<tty_analyse: %6d errors, current rate %db is too low>",
             p->biterrs, i);
    }
  else
    {
      log_f (c->l, "<tty_analyse: %6d errors, current rate %db, suggest %db>",
             p->biterrs, i, p->guessed_baud);
    }

}

TTY_Parser *
tty_parser_new (void)
{
  TTY_Parser *p;

  p = (TTY_Parser *) malloc (sizeof (TTY_Parser));

  memset (p, 0, sizeof (TTY_Parser));

  return p;
}

int
tty_parse (Context * c, uint8_t * buf, int len)
{
  TTY_Parser *p;
  int err = 0;

  p = c->tp;

  while (len--)
    {

      if (p->in_dle)
        {
          p->in_dle = 0;
          switch (*buf)
            {
            case DLE:
              tty_bit_analyse (c, 0, *buf);
              err += utf8_parse (c, *buf);
              break;
            case 0:
              p->in_errmark = 1;
              break;
            default:
              log_f (c->l, "%s:%d DLE parsing error: \\377 \\%03o", __FILE__,
                     __LINE__, *buf);
            }
        }
      else if (p->in_errmark)
        {
          p->in_errmark = 0;

          log_f (c->l, "<tty reports error: \\377 \\000 \\%03o>",
                 __FILE__, __LINE__, *buf);

          tty_bit_analyse (c, 1, *buf);

          tty_analyse (c);

          err += utf8_parse (c, *buf);

          err += utf8_parse (c, SYM_CHAR_RESET);

        }
      else if (*buf == DLE)
        {
          p->in_dle = 1;

        }
      else
        {
          tty_bit_analyse (c, 0, *buf);

          tty_analyse (c);

          err += utf8_parse (c, *buf);

        }
      buf++;
    }
  return err;
}