aboutsummaryrefslogtreecommitdiffstats
path: root/apps/sympathyd.c
blob: 65ef1f99ab655294d4d3d8772a75caedd5d04388 (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
/*
 * sympathy.c:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

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

/*
 * $Log$
 * Revision 1.13  2008/02/15 23:52:12  james
 * *** empty log message ***
 *
 * Revision 1.12  2008/02/15 03:32:07  james
 * *** empty log message ***
 *
 * Revision 1.11  2008/02/14 16:21:17  james
 * *** empty log message ***
 *
 * Revision 1.10  2008/02/14 10:39:14  james
 * *** empty log message ***
 *
 * Revision 1.9  2008/02/14 10:34:47  james
 * *** empty log message ***
 *
 * Revision 1.8  2008/02/14 10:34:30  james
 * *** empty log message ***
 *
 * Revision 1.7  2008/02/14 02:46:44  james
 * *** empty log message ***
 *
 * Revision 1.6  2008/02/14 00:57:58  james
 * *** empty log message ***
 *
 * Revision 1.5  2008/02/13 18:05:06  james
 * *** empty log message ***
 *
 * Revision 1.4  2008/02/13 17:21:55  james
 * *** empty log message ***
 *
 * Revision 1.3  2008/02/08 15:06:52  james
 * *** empty log message ***
 *
 * Revision 1.2  2008/02/07 15:42:49  james
 * *** empty log message ***
 *
 * Revision 1.1  2008/02/05 14:25:49  james
 * *** empty log message ***
 *
 */

#include <sys/time.h>
#include <sympathy.h>

#include "client.h"
#include "clients.h"

typedef struct
{
  int nclients;
  int lines;
  int baud;
  int crtscts;
  int cd_edge_sec;
  int blocked;
  int bootstrap;
} Status;

static Status
get_status (TTY * t, Clients * cs)
{
  static struct timeval last_cd_edge = { 0 };
  static int last_cd_state = -1;
  int cd;
  struct timeval now, dif;

  TTY_Status tty_status = { 0 };
  Status status;

  tty_get_status (t, &tty_status);

  status.bootstrap = 1;
  status.nclients = cs->n;
  status.lines = tty_status.lines;
  status.baud = tty_status.baud;
  status.crtscts = (tty_status.termios.c_cflag & CRTSCTS) ? 1 : 0;
  status.blocked = tty_status.blocked;

  cd = (tty_status.lines & TIOCM_CD) ? 1 : 0;

  if (cd != last_cd_state)
    {
      gettimeofday (&last_cd_edge, NULL);
      last_cd_state = cd;
    }

  gettimeofday (&now, NULL);
  timersub (&now, &last_cd_edge, &dif);
  status.cd_edge_sec = dif.tv_sec;

  return status;
}

static char *
line_to_name (int l)
{

  switch (l)
    {
#ifdef TIOCM_LE
    case TIOCM_LE:
      return "LE";
#endif
#ifdef TIOCM_DTR
    case TIOCM_DTR:
      return "DTR";
#endif
#ifdef TIOCM_RTS
    case TIOCM_RTS:
      return "RTS";
#endif
#ifdef TIOCM_ST
    case TIOCM_ST:
      return "ST";
#endif
#ifdef TIOCM_SR
    case TIOCM_SR:
      return "SR";
#endif
#ifdef TIOCM_CTS
    case TIOCM_CTS:
      return "CTS";
#endif
#ifdef TIOCM_CD
    case TIOCM_CD:
      return "CD";
#endif
#ifdef TIOCM_RI
    case TIOCM_RI:
      return "RI";
#endif
#ifdef TIOCM_DSR
    case TIOCM_DSR:
      return "DSR";
#endif
    }
  return "??";
}

static void
log_line_changes (Context * ctx, int old, int new)
{
  int dif = old ^ new;
  int c = 1;
  char buf[1024], *ptr = buf;
  char *n;

  if (!dif)
    return;
  if (!ctx->l)
    return;

  n = "<Modem lines changed:";

  while (*n)
    *(ptr++) = *(n++);

  while (dif >= c)
    {

      if (dif & c)
        {
          *(ptr++) = ' ';
          *(ptr++) = (new & c) ? '+' : '-';
          n = line_to_name (c);
          while (*n)
            *(ptr++) = *(n++);
        }

      c <<= 1;
    }
  *(ptr++) = '>';
  *ptr = 0;


  ctx->l->log (ctx->l, buf);

}

static char *
do_line (char *ptr, int lines, int line)
{
  char *lname;

  if (!(lines & line))
    return ptr;
  lname = line_to_name (line);

  *(ptr++) = ' ';
  while (*lname)
    *(ptr++) = *(lname++);

  return ptr;
}



static void
check_status (Context * c, Clients * cs)
{
  static Status old_status = { 0 };
  Status status;
  char buf[1024];
  char *ptr = buf;
  char *t;

  status = get_status (c->t, cs);
  if (!memcmp (&status, &old_status, sizeof (status)))
    return;
  old_status = status;


  log_line_changes (c, old_status.lines, status.lines);

  ptr += sprintf (ptr, "CTRL-B ");

  t = c->t->name;
  if (!strncmp (t, "/dev/", 5))
    t += 5;
  while (*t)
    *(ptr++) = *(t++);

  ptr += sprintf (ptr, " %db", status.baud);

  ptr = do_line (ptr, status.lines, TIOCM_RTS);
  ptr = do_line (ptr, status.lines, TIOCM_CTS);
  ptr = do_line (ptr, status.lines, TIOCM_DTR);
  ptr = do_line (ptr, status.lines, TIOCM_DSR);
  ptr = do_line (ptr, status.lines, TIOCM_RI);
  ptr = do_line (ptr, status.lines, TIOCM_CD);

  if (status.blocked)
    {
      t = ", Locked";
      while (*t)
        *(ptr++) = *(t++);
    }

  if (status.crtscts)
    {
      t = ", Flow";
      while (*t)
        *(ptr++) = *(t++);
    }

#if 0
  if (status.lines & TIOCM_CD)
    {
      ptr +=
        sprintf (ptr, ", On %d.%d", status.cd_edge_sec / 60,
                 status.cd_edge_sec % 60);
    }
  else
    {
      ptr +=
        sprintf (ptr, ", Off %d.%d", status.cd_edge_sec / 60,
                 status.cd_edge_sec % 60);
    }
#endif

  ptr +=
    sprintf (ptr, ", %d client%s", status.nclients,
             (status.nclients == 1) ? "" : "s");

  *ptr = 0;

  send_status (cs, buf);
}

int
main (int argc, char *argv[])
{
  fd_set rfds, wfds;
  Context c;
  Socket *s, *cs;
  Clients *clients;


#if 0
  construct_possible_lock_files ("/dev/modem");
  return 0;
#endif

  s = socket_listen ("socket");

// c.t = ptty_open (NULL, NULL);
  c.t = serial_open ("/dev/cellmodem", 0);
  c.v = vt102_new ();
  c.h = history_new (200);
  c.l = file_log_new ("log");
  c.k = keydis_vt102_new ();
  c.d = NULL;


  clients = clients_new ();

  for (;;)
    {
      struct timeval tv = { 1, 0 };

      check_status (&c, clients);

      FD_ZERO (&rfds);
      FD_ZERO (&wfds);

      tty_pre_select (c.t, &rfds, &wfds);

      FD_SET (s->fd, &rfds);

      socket_pre_select (s, &rfds, &wfds);

      clients_pre_select (clients, &rfds, &wfds);

      select (FD_SETSIZE, &rfds, &wfds, NULL, &tv);

      if (FD_ISSET (s->fd, &rfds) && ((cs = socket_accept (s))))
        {
          {
            Client *cl;
            /*New client connexion */
            cl = clients_new_client (clients, cs, &c);

            send_history (c.h, cl);
            send_vt102 (c.v, cl);

          }
        }


      clients_post_select (clients, &c, &rfds, &wfds);

      if (FD_ISSET (c.t->rfd, &rfds))
        {
          char buf[IPC_MAX_BUF];
          int red;

          red = c.t->recv (c.t, buf, sizeof (buf));

          if (red < 0)
            break;

          if (red)
            {
              send_output (clients, buf, red);
              vt102_parse (&c, buf, red);
            }
        }



    }

  clients_shutdown (clients);
  terminal_atexit ();
  printf ("QUAT\n");
}