diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cmd.c | 5 | ||||
-rw-r--r-- | src/ipc.c | 13 | ||||
-rw-r--r-- | src/ipc.h | 12 | ||||
-rw-r--r-- | src/keydis.c | 27 | ||||
-rw-r--r-- | src/keydis.h | 6 | ||||
-rw-r--r-- | src/lockfile.c | 18 | ||||
-rw-r--r-- | src/lockfile.h | 7 | ||||
-rw-r--r-- | src/ptty.c | 4 | ||||
-rw-r--r-- | src/serial.c | 11 | ||||
-rw-r--r-- | src/tty.c | 38 | ||||
-rw-r--r-- | src/tty.h | 7 |
11 files changed, 137 insertions, 11 deletions
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.2 2008/02/15 23:52:12 james + * *** empty log message *** + * * Revision 1.1 2008/02/15 15:14:19 james * *** empty log message *** * @@ -32,6 +35,8 @@ cmd_parse (Cmd * c, Context * ctx, char *buf) ctx->k->set_baud (ctx->k, ctx, atoi (buf + 4)); if (!strncmp (buf, "break", 4)) ctx->k->send_break (ctx->k, ctx); + if (!strncmp (buf, "hangup", 4)) + ctx->k->hangup (ctx->k, ctx); } @@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.3 2008/02/15 23:52:12 james + * *** empty log message *** + * * Revision 1.2 2008/02/15 03:32:07 james * *** empty log message *** * @@ -188,3 +191,13 @@ ipc_msg_send_setflow (Socket * s, int flow) m.flow = flow; return ipc_msg_send (s, (IPC_Msg *) & m); } + +int +ipc_msg_send_hangup (Socket * s) +{ + IPC_Msg_hangup m; + + m.size = sizeof (m); + m.type = IPC_MSG_TYPE_HANGUP; + return ipc_msg_send (s, (IPC_Msg *) & m); +} @@ -12,6 +12,9 @@ /* * $Log$ + * Revision 1.3 2008/02/15 23:52:12 james + * *** empty log message *** + * * Revision 1.2 2008/02/15 03:32:07 james * *** empty log message *** * @@ -35,6 +38,7 @@ #define IPC_MSG_TYPE_SETBAUD 7 #define IPC_MSG_TYPE_SENDBREAK 8 #define IPC_MSG_TYPE_SETFLOW 9 +#define IPC_MSG_TYPE_HANGUP 10 typedef struct { @@ -120,6 +124,13 @@ typedef struct } IPC_Msg_setflow; +typedef struct +{ + int32_t size; + int32_t type; +} IPC_Msg_hangup; + + typedef union { @@ -134,6 +145,7 @@ IPC_Msg_status status; IPC_Msg_setbaud setbaud; IPC_Msg_sendbreak sendbreak; IPC_Msg_setflow setflow; +IPC_Msg_hangup hangup; } IPC_Msg; diff --git a/src/keydis.c b/src/keydis.c index 33eef20..c8883a7 100644 --- a/src/keydis.c +++ b/src/keydis.c @@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.3 2008/02/15 23:52:12 james + * *** empty log message *** + * * Revision 1.2 2008/02/15 03:32:07 james * *** empty log message *** * @@ -83,6 +86,17 @@ keydis_ipc_set_flow (KeyDis * _t, Context * c, int flow) return 0; } + +static int +keydis_ipc_hangup (KeyDis * _t, Context * c) +{ + KeyDis_IPC *t = (KeyDis_IPC *) _t; + + ipc_msg_send_hangup (t->s); + + return 0; +} + static int keydis_vt102_key (KeyDis * _t, Context * c, int key) { @@ -123,6 +137,17 @@ keydis_vt102_set_flow (KeyDis * _t, Context * c, int flow) } +static int +keydis_vt102_hangup (KeyDis * _t, Context * c) +{ + KeyDis_VT102 *t = (KeyDis_VT102 *) _t; + + tty_hangup (c->t); + + return 0; +} + + KeyDis * keydis_vt102_new (void) @@ -133,6 +158,7 @@ keydis_vt102_new (void) t->set_baud = keydis_vt102_set_baud; t->send_break = keydis_vt102_send_break; t->set_flow = keydis_vt102_set_flow; + t->hangup = keydis_vt102_hangup; return (KeyDis *) t; } @@ -146,6 +172,7 @@ keydis_ipc_new (Socket * s) t->set_baud = keydis_ipc_set_baud; t->send_break = keydis_ipc_send_break; t->set_flow = keydis_ipc_set_flow; + t->hangup = keydis_ipc_hangup; t->s = s; return (KeyDis *) t; } diff --git a/src/keydis.h b/src/keydis.h index dafc5da..4ccfb7d 100644 --- a/src/keydis.h +++ b/src/keydis.h @@ -12,6 +12,9 @@ /* * $Log$ + * Revision 1.3 2008/02/15 23:52:12 james + * *** empty log message *** + * * Revision 1.2 2008/02/15 03:32:07 james * *** empty log message *** * @@ -34,7 +37,8 @@ struct Context_struct; int (*key)(struct KeyDis_struct *,struct Context_struct *,int key); \ int (*set_baud)(struct KeyDis_struct *,struct Context_struct *,int rate); \ int (*send_break)(struct KeyDis_struct *,struct Context_struct *); \ - int (*set_flow)(struct KeyDis_struct *,struct Context_struct *,int flow) + int (*set_flow)(struct KeyDis_struct *,struct Context_struct *,int flow); \ + int (*hangup)(struct KeyDis_struct *,struct Context_struct *) diff --git a/src/lockfile.c b/src/lockfile.c index b325274..ce37079 100644 --- a/src/lockfile.c +++ b/src/lockfile.c @@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.9 2008/02/15 23:52:12 james + * *** empty log message *** + * * Revision 1.8 2008/02/15 20:52:36 james * *** empty log message *** * @@ -39,6 +42,8 @@ static char rcsid[] = "$Id$"; #define LOCK_ASCII #undef LOCK_BINARY +#define STALE_CHECK_INTERVAL 10 + #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> @@ -51,6 +56,8 @@ static char rcsid[] = "$Id$"; #include <fcntl.h> #include <dirent.h> #include <errno.h> +#include <time.h> +#include <sys/time.h> #include "lockfile.h" @@ -208,7 +215,7 @@ lockfile_add_places (Filelist * fl, char *leaf) char *lock_dirs[] = { "/var/lock/uucp", "/var/spool/lock", "/var/spool/uucp", "/etc/locks", "/usr/spool/uucp", "/var/spool/locks", "/usr/spool/lock", - "/usr/spool/locks", "/usr/spool/uucp/LCK" + "/usr/spool/locks", "/usr/spool/uucp/LCK", "/var/lock" }; int i; @@ -457,7 +464,7 @@ serial_lock_check (Serial_lock * l) if (l->mode == SERIAL_LOCK_ACTIVE) return 0; - for (fle = l->locks_to_check; fle; fle = fle->next) + for (fle = l->locks_to_check->head; fle; fle = fle->next) { if (!stat (fle->name, &buf)) locks_found++; @@ -466,7 +473,7 @@ serial_lock_check (Serial_lock * l) if (!locks_found) return 0; - getimeofday (&now, NULL); + gettimeofday (&now, NULL); timersub (&now, &l->last_stale_purge, &dif); if (dif.tv_sec > STALE_CHECK_INTERVAL) @@ -503,10 +510,13 @@ Serial_lock * serial_lock_new (char *dev, int mode) { Filelist *fl = lockfile_make_list (dev); + Serial_lock *l; if (!fl) return NULL; + l = (Serial_lock *) malloc (sizeof (Serial_lock)); + l->mode = mode; l->locks_to_check = fl; l->locks_held = NULL; @@ -526,7 +536,7 @@ serial_lock_new (char *dev, int mode) } -#if 1 +#if 0 int main (int argc, char *argv[]) { diff --git a/src/lockfile.h b/src/lockfile.h index ddfdd25..eb089ed 100644 --- a/src/lockfile.h +++ b/src/lockfile.h @@ -12,6 +12,9 @@ /* * $Log$ + * Revision 1.6 2008/02/15 23:52:12 james + * *** empty log message *** + * * Revision 1.5 2008/02/15 20:52:36 james * *** empty log message *** * @@ -52,8 +55,8 @@ typedef struct int mode; int i; struct timeval last_stale_purge; - Filelist locks_to_check; - Filelist locks_held; + Filelist *locks_to_check; + Filelist *locks_held; } Serial_lock; @@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.5 2008/02/15 23:52:12 james + * *** empty log message *** + * * Revision 1.4 2008/02/14 10:39:14 james * *** empty log message *** * @@ -168,6 +171,7 @@ ptty_open (char *path, char *argv[]) t->size.x = winsize.ws_row; t->size.y = winsize.ws_col; t->blocked = 0; + t->hanging_up = 0; return (TTY *) t; } diff --git a/src/serial.c b/src/serial.c index 2e67d3d..bd4450c 100644 --- a/src/serial.c +++ b/src/serial.c @@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.7 2008/02/15 23:52:12 james + * *** empty log message *** + * * Revision 1.6 2008/02/15 19:51:30 james * *** empty log message *** * @@ -79,6 +82,7 @@ serial_close (TTY * _t) if (!t) return; + tcflush (t->fd, TCIOFLUSH); close (t->fd); free (t); } @@ -116,7 +120,7 @@ serial_read (TTY * _t, void *buf, int len) static int -ptty_write (TTY * _t, void *buf, int len) +serial_write (TTY * _t, void *buf, int len) { int writ, done = 0; Serial *t = (Serial *) _t; @@ -161,7 +165,7 @@ serial_open (char *path, int lock_mode) default_termios (&termios); - fd = open (path, O_RDWR); + fd = open (path, O_RDWR | O_NOCTTY | O_NONBLOCK); set_nonblocking (fd); @@ -173,7 +177,7 @@ serial_open (char *path, int lock_mode) t->name[sizeof (t->name) - 1] = 0; t->recv = serial_read; - //t->xmit = serial_write; + t->xmit = serial_write; t->close = serial_close; t->fd = fd; t->rfd = t->fd; @@ -181,6 +185,7 @@ serial_open (char *path, int lock_mode) t->size.x = VT102_COLS; t->size.y = VT102_ROWS; t->blocked = serial_lock_check (t->lock); + t->hanging_up = 0; return (TTY *) t; } @@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * 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 *** * @@ -210,6 +213,25 @@ baud_to_speed_t (int baud) 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) + { + fprintf (stderr, "+DTR\n"); + + line = TIOCM_DTR; + ioctl (t->rfd, TIOCMBIS, &line); + t->hanging_up = 0; + } + } + + FD_SET (t->rfd, rfds); } @@ -219,6 +241,8 @@ tty_get_status (TTY * t, TTY_Status * s) s->lines = 0; ioctl (t->rfd, TIOCMGET, &s->lines); + if (t->hanging_up) + fprintf (stderr, "s->lines & TIOCM_DTR=%x\n", s->lines & TIOCM_DTR); if (tcgetattr (t->rfd, &s->termios)) return -1; @@ -271,6 +295,20 @@ tty_set_flow (TTY * t, int flow) } +void +tty_hangup (TTY * t) +{ + int line; + + line = TIOCM_DTR; + ioctl (t->rfd, TIOCMBIC, &line); + + t->hanging_up = 1; + gettimeofday (&t->hangup_clock, NULL); + fprintf (stderr, "-DTR\n"); + +} + #if 0 int @@ -12,6 +12,9 @@ /* * $Log$ + * Revision 1.8 2008/02/15 23:52:12 james + * *** empty log message *** + * * Revision 1.7 2008/02/14 10:36:18 james * *** empty log message *** * @@ -46,7 +49,9 @@ int (*recv)(struct TTY_struct *,void *buf,int len); \ int (*xmit)(struct TTY_struct *,void *buf,int len); \ int rfd; \ - int wfd + int wfd; \ + int hanging_up; \ + struct timeval hangup_clock typedef struct TTY_struct { |