1994-11-12 05:25:32 +00:00
|
|
|
/*
|
|
|
|
* Chat -- a program for automatic session establishment (i.e. dial
|
|
|
|
* the phone and log in).
|
|
|
|
*
|
1995-10-31 23:28:29 +00:00
|
|
|
* Standard termination codes:
|
|
|
|
* 0 - successful completion of the script
|
|
|
|
* 1 - invalid argument, expect string too large, etc.
|
1998-03-21 20:47:53 +00:00
|
|
|
* 2 - error on an I/O operation or fatal error condition.
|
1995-10-31 23:28:29 +00:00
|
|
|
* 3 - timeout waiting for a simple string.
|
|
|
|
* 4 - the first string declared as "ABORT"
|
|
|
|
* 5 - the second string declared as "ABORT"
|
|
|
|
* 6 - ... and so on for successive ABORT strings.
|
|
|
|
*
|
1994-11-12 05:25:32 +00:00
|
|
|
* This software is in the public domain.
|
|
|
|
*
|
1997-08-22 15:24:36 +00:00
|
|
|
* -----------------
|
1998-03-21 20:47:53 +00:00
|
|
|
* added -T and -U option and \T and \U substitution to pass a phone
|
|
|
|
* number into chat script. Two are needed for some ISDN TA applications.
|
|
|
|
* Keith Dart <kdart@cisco.com>
|
|
|
|
*
|
1997-08-22 15:24:36 +00:00
|
|
|
*
|
|
|
|
* Added SAY keyword to send output to stderr.
|
|
|
|
* This allows to turn ECHO OFF and to output specific, user selected,
|
|
|
|
* text to give progress messages. This best works when stderr
|
|
|
|
* exists (i.e.: pppd in nodetach mode).
|
|
|
|
*
|
|
|
|
* Added HANGUP directives to allow for us to be called
|
|
|
|
* back. When HANGUP is set to NO, chat will not hangup at HUP signal.
|
|
|
|
* We rely on timeouts in that case.
|
|
|
|
*
|
|
|
|
* Added CLR_ABORT to clear previously set ABORT string. This has been
|
|
|
|
* dictated by the HANGUP above as "NO CARRIER" (for example) must be
|
|
|
|
* an ABORT condition until we know the other host is going to close
|
|
|
|
* the connection for call back. As soon as we have completed the
|
|
|
|
* first stage of the call back sequence, "NO CARRIER" is a valid, non
|
|
|
|
* fatal string. As soon as we got called back (probably get "CONNECT"),
|
|
|
|
* we should re-arm the ABORT "NO CARRIER". Hence the CLR_ABORT command.
|
|
|
|
* Note that CLR_ABORT packs the abort_strings[] array so that we do not
|
|
|
|
* have unused entries not being reclaimed.
|
|
|
|
*
|
|
|
|
* In the same vein as above, added CLR_REPORT keyword.
|
|
|
|
*
|
|
|
|
* Allow for comments. Line starting with '#' are comments and are
|
|
|
|
* ignored. If a '#' is to be expected as the first character, the
|
|
|
|
* expect string must be quoted.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Francis Demierre <Francis@SwissMail.Com>
|
|
|
|
* Thu May 15 17:15:40 MET DST 1997
|
1994-11-12 05:25:32 +00:00
|
|
|
*
|
|
|
|
*
|
1995-10-31 23:28:29 +00:00
|
|
|
* Added -r "report file" switch & REPORT keyword.
|
|
|
|
* Robert Geer <bgeer@xmission.com>
|
|
|
|
*
|
1998-03-21 20:47:53 +00:00
|
|
|
* Added -s "use stderr" and -S "don't use syslog" switches.
|
|
|
|
* June 18, 1997
|
|
|
|
* Karl O. Pinc <kop@meme.com>
|
|
|
|
*
|
1997-08-22 15:24:36 +00:00
|
|
|
*
|
|
|
|
* Added -e "echo" switch & ECHO keyword
|
|
|
|
* Dick Streefland <dicks@tasking.nl>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Considerable updates and modifications by
|
|
|
|
* Al Longyear <longyear@pobox.com>
|
|
|
|
* Paul Mackerras <paulus@cs.anu.edu.au>
|
|
|
|
*
|
|
|
|
*
|
1994-11-12 05:25:32 +00:00
|
|
|
* The original author is:
|
|
|
|
*
|
|
|
|
* Karl Fox <karl@MorningStar.Com>
|
|
|
|
* Morning Star Technologies, Inc.
|
|
|
|
* 1760 Zollinger Road
|
|
|
|
* Columbus, OH 43221
|
|
|
|
* (614)451-1883
|
1995-10-31 23:28:29 +00:00
|
|
|
*
|
1997-08-22 15:24:36 +00:00
|
|
|
*
|
1994-11-12 05:25:32 +00:00
|
|
|
*/
|
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
1997-08-22 15:24:36 +00:00
|
|
|
#include <ctype.h>
|
2003-08-22 17:47:40 +00:00
|
|
|
#include <errno.h>
|
1994-11-12 05:25:32 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <signal.h>
|
2003-08-22 17:47:40 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
1994-11-12 05:25:32 +00:00
|
|
|
#include <stdlib.h>
|
2003-08-22 17:47:40 +00:00
|
|
|
#include <string.h>
|
1994-11-12 05:25:32 +00:00
|
|
|
#include <syslog.h>
|
|
|
|
#include <termios.h>
|
2003-08-22 17:47:40 +00:00
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
#define STR_LEN 1024
|
|
|
|
|
|
|
|
#ifndef SIGTYPE
|
|
|
|
#define SIGTYPE void
|
|
|
|
#endif
|
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
#ifndef O_NONBLOCK
|
|
|
|
#define O_NONBLOCK O_NDELAY
|
|
|
|
#endif
|
|
|
|
|
1994-11-12 05:25:32 +00:00
|
|
|
#define MAX_ABORTS 50
|
1995-10-31 23:28:29 +00:00
|
|
|
#define MAX_REPORTS 50
|
1994-11-12 05:25:32 +00:00
|
|
|
#define DEFAULT_CHAT_TIMEOUT 45
|
|
|
|
|
2012-10-19 14:49:42 +00:00
|
|
|
static int echo;
|
|
|
|
static int verbose;
|
|
|
|
static int to_log;
|
|
|
|
static int to_stderr;
|
|
|
|
static int Verbose;
|
|
|
|
static int quiet;
|
|
|
|
static int exit_code;
|
|
|
|
static FILE* report_fp;
|
|
|
|
static char *report_file;
|
|
|
|
static char *chat_file;
|
|
|
|
static char *phone_num;
|
|
|
|
static char *phone_num2;
|
|
|
|
static int timeout = DEFAULT_CHAT_TIMEOUT;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
static char blank[] = "";
|
1995-10-31 23:28:29 +00:00
|
|
|
|
2012-10-19 14:49:42 +00:00
|
|
|
static int have_tty_parameters;
|
1995-10-31 23:28:29 +00:00
|
|
|
|
|
|
|
#define term_parms struct termios
|
|
|
|
#define get_term_param(param) tcgetattr(0, param)
|
|
|
|
#define set_term_param(param) tcsetattr(0, TCSANOW, param)
|
2012-10-19 14:49:42 +00:00
|
|
|
static struct termios saved_tty_parameters;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2012-10-19 14:49:42 +00:00
|
|
|
static char *abort_string[MAX_ABORTS], *fail_reason, fail_buffer[50];
|
|
|
|
static int n_aborts, abort_next, timeout_next, echo_next;
|
|
|
|
static int clear_abort_next;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2012-10-19 14:49:42 +00:00
|
|
|
static char *report_string[MAX_REPORTS];
|
|
|
|
static char report_buffer[50];
|
|
|
|
static int n_reports, report_next, report_gathering;
|
|
|
|
static int clear_report_next;
|
1997-08-22 15:24:36 +00:00
|
|
|
|
2012-10-19 14:49:42 +00:00
|
|
|
static int say_next, hup_next;
|
1995-10-31 23:28:29 +00:00
|
|
|
|
2002-03-22 01:22:50 +00:00
|
|
|
void *dup_mem(void *b, size_t c);
|
|
|
|
void *copy_of(char *s);
|
|
|
|
static void usage(void);
|
2003-10-31 06:22:03 +00:00
|
|
|
void chat_logf(const char *fmt, ...);
|
2002-03-22 01:22:50 +00:00
|
|
|
void fatal(int code, const char *fmt, ...);
|
|
|
|
SIGTYPE sigalrm(int signo);
|
|
|
|
SIGTYPE sigint(int signo);
|
|
|
|
SIGTYPE sigterm(int signo);
|
|
|
|
SIGTYPE sighup(int signo);
|
|
|
|
void init(void);
|
|
|
|
void set_tty_parameters(void);
|
|
|
|
void echo_stderr(int);
|
|
|
|
void break_sequence(void);
|
|
|
|
void terminate(int status);
|
2003-08-22 17:47:40 +00:00
|
|
|
void do_file(char *chatfile);
|
|
|
|
int get_string(char *string);
|
|
|
|
int put_string(char *s);
|
2002-03-22 01:22:50 +00:00
|
|
|
int write_char(int c);
|
|
|
|
int put_char(int c);
|
|
|
|
int get_char(void);
|
2003-08-22 17:47:40 +00:00
|
|
|
void chat_send(char *s);
|
2002-03-22 01:22:50 +00:00
|
|
|
char *character(int c);
|
2003-08-22 17:47:40 +00:00
|
|
|
void chat_expect(char *s);
|
|
|
|
char *clean(char *s, int sending);
|
2002-03-22 01:22:50 +00:00
|
|
|
void pack_array(char **array, int end);
|
2003-08-22 17:47:40 +00:00
|
|
|
char *expect_strtok(char *, const char *);
|
2002-03-22 01:22:50 +00:00
|
|
|
int vfmtmsg(char *, int, const char *, va_list); /* vsprintf++ */
|
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
void *
|
|
|
|
dup_mem(void *b, size_t c)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1994-11-12 05:25:32 +00:00
|
|
|
void *ans = malloc (c);
|
|
|
|
if (!ans)
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(2, "memory error!");
|
|
|
|
|
1994-11-12 05:25:32 +00:00
|
|
|
memcpy (ans, b, c);
|
|
|
|
return ans;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
void *
|
|
|
|
copy_of(char *s)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1994-11-12 05:25:32 +00:00
|
|
|
return dup_mem (s, strlen (s) + 1);
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
/*
|
2008-03-07 00:01:19 +00:00
|
|
|
* chat [-esSvV] [-f chat-file] [-r report-file] [-t timeout]
|
|
|
|
* [-T phone-number] [-U phone-number2] [chat-script]
|
|
|
|
* where chat-script has the form:
|
|
|
|
* [...[[expect[-send[-expect...]] send expect[-send[-expect]] ...]]]
|
1994-11-12 05:25:32 +00:00
|
|
|
*
|
2008-03-07 00:01:19 +00:00
|
|
|
* Perform a UUCP-dialer-like chat script on stdin and stdout.
|
1994-11-12 05:25:32 +00:00
|
|
|
*/
|
|
|
|
int
|
2003-08-22 17:47:40 +00:00
|
|
|
main(int argc, char *argv[])
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1994-11-12 05:25:32 +00:00
|
|
|
int option;
|
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
tzset();
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2008-03-07 00:01:19 +00:00
|
|
|
while ((option = getopt(argc, argv, "ef:r:sSt:T:U:vV")) != -1) {
|
1998-03-21 20:47:53 +00:00
|
|
|
switch (option) {
|
|
|
|
case 'e':
|
|
|
|
++echo;
|
|
|
|
break;
|
1997-08-22 15:24:36 +00:00
|
|
|
|
2008-03-07 00:01:19 +00:00
|
|
|
case 'f':
|
|
|
|
if (chat_file != NULL)
|
|
|
|
free(chat_file);
|
|
|
|
chat_file = copy_of(optarg);
|
1998-03-21 20:47:53 +00:00
|
|
|
break;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2008-03-07 00:01:19 +00:00
|
|
|
case 'r':
|
|
|
|
if (report_fp != NULL)
|
|
|
|
fclose(report_fp);
|
|
|
|
if (report_file != NULL)
|
|
|
|
free(report_file);
|
|
|
|
report_file = copy_of(optarg);
|
|
|
|
report_fp = fopen(report_file, "a");
|
|
|
|
if (report_fp != NULL) {
|
|
|
|
if (verbose)
|
|
|
|
fprintf(report_fp, "Opening \"%s\"...\n", report_file);
|
|
|
|
} else
|
|
|
|
fatal(2, "cannot open \"%s\" for appending", report_file);
|
1998-03-21 20:47:53 +00:00
|
|
|
break;
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
case 's':
|
|
|
|
++to_stderr;
|
|
|
|
break;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
case 'S':
|
|
|
|
to_log = 0;
|
|
|
|
break;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2008-03-07 00:01:19 +00:00
|
|
|
case 't':
|
|
|
|
timeout = atoi(optarg);
|
1998-03-21 20:47:53 +00:00
|
|
|
break;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2008-03-07 00:01:19 +00:00
|
|
|
case 'T':
|
|
|
|
if (phone_num != NULL)
|
|
|
|
free(phone_num);
|
|
|
|
phone_num = copy_of(optarg);
|
1998-03-21 20:47:53 +00:00
|
|
|
break;
|
|
|
|
|
2008-03-07 00:01:19 +00:00
|
|
|
case 'U':
|
|
|
|
if (phone_num2 != NULL)
|
|
|
|
free(phone_num2);
|
|
|
|
phone_num2 = copy_of(optarg);
|
1998-03-21 20:47:53 +00:00
|
|
|
break;
|
|
|
|
|
2008-03-07 00:01:19 +00:00
|
|
|
case 'v':
|
|
|
|
++verbose;
|
1998-03-21 20:47:53 +00:00
|
|
|
break;
|
|
|
|
|
2008-03-07 00:01:19 +00:00
|
|
|
case 'V':
|
|
|
|
++Verbose;
|
1998-03-21 20:47:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-03-07 00:01:19 +00:00
|
|
|
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
/*
|
|
|
|
* Default the report file to the stderr location
|
|
|
|
*/
|
|
|
|
if (report_fp == NULL)
|
|
|
|
report_fp = stderr;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (to_log) {
|
|
|
|
openlog("chat", LOG_PID | LOG_NDELAY, LOG_LOCAL2);
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (verbose)
|
|
|
|
setlogmask(LOG_UPTO(LOG_INFO));
|
|
|
|
else
|
|
|
|
setlogmask(LOG_UPTO(LOG_WARNING));
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (chat_file != NULL) {
|
2008-03-07 00:01:19 +00:00
|
|
|
if (*argv != NULL)
|
1994-11-12 05:25:32 +00:00
|
|
|
usage();
|
2008-03-07 00:01:19 +00:00
|
|
|
else {
|
|
|
|
init();
|
|
|
|
do_file(chat_file);
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
} else {
|
2008-03-07 00:01:19 +00:00
|
|
|
init();
|
|
|
|
while (*argv != NULL && argc > 0) {
|
|
|
|
chat_expect(*argv);
|
|
|
|
argv++;
|
|
|
|
argc--;
|
|
|
|
|
|
|
|
if (*argv != NULL && argc > 0) {
|
|
|
|
chat_send(*argv);
|
|
|
|
argv++;
|
|
|
|
argc--;
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
terminate(0);
|
1997-08-22 15:24:36 +00:00
|
|
|
return 0;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Process a chat script when read from a file.
|
|
|
|
*/
|
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
void
|
|
|
|
do_file(char *chatfile)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1997-12-29 00:09:06 +00:00
|
|
|
int linect, sendflg;
|
1994-11-12 05:25:32 +00:00
|
|
|
char *sp, *arg, quote;
|
|
|
|
char buf [STR_LEN];
|
|
|
|
FILE *cfp;
|
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
cfp = fopen (chatfile, "r");
|
1995-10-31 23:28:29 +00:00
|
|
|
if (cfp == NULL)
|
2003-08-22 17:47:40 +00:00
|
|
|
fatal(1, "%s -- open failed: %m", chatfile);
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
linect = 0;
|
|
|
|
sendflg = 0;
|
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
while (fgets(buf, STR_LEN, cfp) != NULL) {
|
1994-11-12 05:25:32 +00:00
|
|
|
sp = strchr (buf, '\n');
|
|
|
|
if (sp)
|
|
|
|
*sp = '\0';
|
|
|
|
|
|
|
|
linect++;
|
|
|
|
sp = buf;
|
1997-08-22 15:24:36 +00:00
|
|
|
|
|
|
|
/* lines starting with '#' are comments. If a real '#'
|
|
|
|
is to be expected, it should be quoted .... */
|
1998-03-21 20:47:53 +00:00
|
|
|
if ( *sp == '#' )
|
|
|
|
continue;
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
while (*sp != '\0') {
|
|
|
|
if (*sp == ' ' || *sp == '\t') {
|
1994-11-12 05:25:32 +00:00
|
|
|
++sp;
|
|
|
|
continue;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (*sp == '"' || *sp == '\'') {
|
1994-11-12 05:25:32 +00:00
|
|
|
quote = *sp++;
|
|
|
|
arg = sp;
|
1998-03-21 20:47:53 +00:00
|
|
|
while (*sp != quote) {
|
1994-11-12 05:25:32 +00:00
|
|
|
if (*sp == '\0')
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(1, "unterminated quote (line %d)", linect);
|
|
|
|
|
|
|
|
if (*sp++ == '\\') {
|
1994-11-12 05:25:32 +00:00
|
|
|
if (*sp != '\0')
|
|
|
|
++sp;
|
|
|
|
}
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
|
|
|
else {
|
1994-11-12 05:25:32 +00:00
|
|
|
arg = sp;
|
|
|
|
while (*sp != '\0' && *sp != ' ' && *sp != '\t')
|
|
|
|
++sp;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
if (*sp != '\0')
|
|
|
|
*sp++ = '\0';
|
|
|
|
|
|
|
|
if (sendflg)
|
|
|
|
chat_send (arg);
|
|
|
|
else
|
|
|
|
chat_expect (arg);
|
|
|
|
sendflg = !sendflg;
|
|
|
|
}
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
fclose (cfp);
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We got an error parsing the command line.
|
|
|
|
*/
|
1997-06-24 06:52:33 +00:00
|
|
|
static void
|
2003-08-22 17:47:40 +00:00
|
|
|
usage(void)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
2008-03-07 00:01:19 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"Usage: chat [-esSvV] [-f chat-file] [-r report-file] [-t timeout]\n"
|
|
|
|
" [-T phone-number] [-U phone-number2] [chat-script]\n"
|
|
|
|
"where chat-script has the form:\n"
|
|
|
|
" [...[[expect[-send[-expect...]] send expect[-send[-expect]] ...]]]\n");
|
1994-11-12 05:25:32 +00:00
|
|
|
exit(1);
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
/*
|
|
|
|
* Send a message to syslog and/or stderr.
|
|
|
|
*/
|
2003-08-22 17:47:40 +00:00
|
|
|
void
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf(const char *fmt, ...)
|
1997-08-22 15:24:36 +00:00
|
|
|
{
|
2012-10-19 14:49:42 +00:00
|
|
|
char line[1024];
|
1998-03-21 20:47:53 +00:00
|
|
|
va_list args;
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
va_start(args, fmt);
|
|
|
|
vfmtmsg(line, sizeof(line), fmt, args);
|
2012-05-29 01:48:06 +00:00
|
|
|
va_end(args);
|
1998-03-21 20:47:53 +00:00
|
|
|
if (to_log)
|
1994-11-12 05:25:32 +00:00
|
|
|
syslog(LOG_INFO, "%s", line);
|
1998-03-21 20:47:53 +00:00
|
|
|
if (to_stderr)
|
|
|
|
fprintf(stderr, "%s\n", line);
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Print an error message and terminate.
|
|
|
|
*/
|
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
void
|
|
|
|
fatal(int code, const char *fmt, ...)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
2012-10-19 14:49:42 +00:00
|
|
|
char line[1024];
|
1998-03-21 20:47:53 +00:00
|
|
|
va_list args;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
va_start(args, fmt);
|
|
|
|
vfmtmsg(line, sizeof(line), fmt, args);
|
2012-05-29 01:48:06 +00:00
|
|
|
va_end(args);
|
1998-03-21 20:47:53 +00:00
|
|
|
if (to_log)
|
|
|
|
syslog(LOG_ERR, "%s", line);
|
|
|
|
if (to_stderr)
|
|
|
|
fprintf(stderr, "%s\n", line);
|
|
|
|
terminate(code);
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2012-10-19 14:49:42 +00:00
|
|
|
static int alarmed;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
SIGTYPE sigalrm(int signo __unused)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1994-11-12 05:25:32 +00:00
|
|
|
int flags;
|
|
|
|
|
|
|
|
alarm(1);
|
|
|
|
alarmed = 1; /* Reset alarm to avoid race window */
|
|
|
|
signal(SIGALRM, sigalrm); /* that can cause hanging in read() */
|
|
|
|
|
|
|
|
if ((flags = fcntl(0, F_GETFL, 0)) == -1)
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(2, "Can't get file mode flags on stdin: %m");
|
|
|
|
|
|
|
|
if (fcntl(0, F_SETFL, flags | O_NONBLOCK) == -1)
|
|
|
|
fatal(2, "Can't set file mode flags on stdin: %m");
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
if (verbose)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("alarm");
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
SIGTYPE sigint(int signo __unused)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
|
|
|
fatal(2, "SIGINT");
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
SIGTYPE sigterm(int signo __unused)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
|
|
|
fatal(2, "SIGTERM");
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
SIGTYPE sighup(int signo __unused)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
|
|
|
fatal(2, "SIGHUP");
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
void init(void)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1994-11-12 05:25:32 +00:00
|
|
|
signal(SIGINT, sigint);
|
|
|
|
signal(SIGTERM, sigterm);
|
|
|
|
signal(SIGHUP, sighup);
|
|
|
|
|
|
|
|
set_tty_parameters();
|
|
|
|
signal(SIGALRM, sigalrm);
|
|
|
|
alarm(0);
|
|
|
|
alarmed = 0;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
void set_tty_parameters(void)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1995-10-31 23:28:29 +00:00
|
|
|
#if defined(get_term_param)
|
|
|
|
term_parms t;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
if (get_term_param (&t) < 0)
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(2, "Can't get terminal parameters: %m");
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
saved_tty_parameters = t;
|
1995-10-31 23:28:29 +00:00
|
|
|
have_tty_parameters = 1;
|
|
|
|
|
|
|
|
t.c_iflag |= IGNBRK | ISTRIP | IGNPAR;
|
|
|
|
t.c_oflag = 0;
|
|
|
|
t.c_lflag = 0;
|
|
|
|
t.c_cc[VERASE] =
|
|
|
|
t.c_cc[VKILL] = 0;
|
|
|
|
t.c_cc[VMIN] = 1;
|
|
|
|
t.c_cc[VTIME] = 0;
|
|
|
|
|
|
|
|
if (set_term_param (&t) < 0)
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(2, "Can't set terminal parameters: %m");
|
1994-11-12 05:25:32 +00:00
|
|
|
#endif
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
void break_sequence(void)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1994-11-12 05:25:32 +00:00
|
|
|
tcsendbreak (0, 0);
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
void terminate(int status)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1997-08-22 15:24:36 +00:00
|
|
|
echo_stderr(-1);
|
1998-03-21 20:47:53 +00:00
|
|
|
if (report_file != (char *) 0 && report_fp != (FILE *) NULL) {
|
1997-08-22 15:24:36 +00:00
|
|
|
/*
|
|
|
|
* Allow the last of the report string to be gathered before we terminate.
|
|
|
|
*/
|
|
|
|
if (report_gathering) {
|
2003-08-22 17:47:40 +00:00
|
|
|
int c;
|
|
|
|
size_t rep_len;
|
1997-08-22 15:24:36 +00:00
|
|
|
|
|
|
|
rep_len = strlen(report_buffer);
|
|
|
|
while (rep_len + 1 <= sizeof(report_buffer)) {
|
|
|
|
alarm(1);
|
|
|
|
c = get_char();
|
|
|
|
alarm(0);
|
|
|
|
if (c < 0 || iscntrl(c))
|
|
|
|
break;
|
|
|
|
report_buffer[rep_len] = c;
|
|
|
|
++rep_len;
|
|
|
|
}
|
|
|
|
report_buffer[rep_len] = 0;
|
|
|
|
fprintf (report_fp, "chat: %s\n", report_buffer);
|
|
|
|
}
|
1995-10-31 23:28:29 +00:00
|
|
|
if (verbose)
|
|
|
|
fprintf (report_fp, "Closing \"%s\".\n", report_file);
|
|
|
|
fclose (report_fp);
|
1997-08-22 15:24:36 +00:00
|
|
|
report_fp = (FILE *) NULL;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
#if defined(get_term_param)
|
1998-03-21 20:47:53 +00:00
|
|
|
if (have_tty_parameters) {
|
1995-10-31 23:28:29 +00:00
|
|
|
if (set_term_param (&saved_tty_parameters) < 0)
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(2, "Can't restore terminal parameters: %m");
|
|
|
|
}
|
1995-10-31 23:28:29 +00:00
|
|
|
#endif
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
exit(status);
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 'Clean up' this string.
|
|
|
|
*/
|
2003-08-22 17:47:40 +00:00
|
|
|
char *
|
|
|
|
clean(char *s, int sending)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1994-11-12 05:25:32 +00:00
|
|
|
char temp[STR_LEN], cur_chr;
|
2003-08-22 17:47:40 +00:00
|
|
|
char *s1, *phchar;
|
1994-11-12 05:25:32 +00:00
|
|
|
int add_return = sending;
|
|
|
|
#define isoctal(chr) (((chr) >= '0') && ((chr) <= '7'))
|
|
|
|
|
|
|
|
s1 = temp;
|
1999-11-25 07:28:54 +00:00
|
|
|
/* Don't overflow buffer, leave room for chars we append later */
|
2003-08-22 17:47:40 +00:00
|
|
|
while (*s && s1 - temp < (off_t)(sizeof(temp) - 2 - add_return)) {
|
1994-11-12 05:25:32 +00:00
|
|
|
cur_chr = *s++;
|
1998-03-21 20:47:53 +00:00
|
|
|
if (cur_chr == '^') {
|
1994-11-12 05:25:32 +00:00
|
|
|
cur_chr = *s++;
|
1998-03-21 20:47:53 +00:00
|
|
|
if (cur_chr == '\0') {
|
1994-11-12 05:25:32 +00:00
|
|
|
*s1++ = '^';
|
|
|
|
break;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
cur_chr &= 0x1F;
|
1998-03-21 20:47:53 +00:00
|
|
|
if (cur_chr != 0) {
|
1994-11-12 05:25:32 +00:00
|
|
|
*s1++ = cur_chr;
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
continue;
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (cur_chr != '\\') {
|
1994-11-12 05:25:32 +00:00
|
|
|
*s1++ = cur_chr;
|
|
|
|
continue;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
cur_chr = *s++;
|
1998-03-21 20:47:53 +00:00
|
|
|
if (cur_chr == '\0') {
|
|
|
|
if (sending) {
|
1994-11-12 05:25:32 +00:00
|
|
|
*s1++ = '\\';
|
|
|
|
*s1++ = '\\';
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
break;
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
switch (cur_chr) {
|
1994-11-12 05:25:32 +00:00
|
|
|
case 'b':
|
|
|
|
*s1++ = '\b';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'c':
|
|
|
|
if (sending && *s == '\0')
|
|
|
|
add_return = 0;
|
|
|
|
else
|
|
|
|
*s1++ = cur_chr;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '\\':
|
|
|
|
case 'K':
|
|
|
|
case 'p':
|
|
|
|
case 'd':
|
|
|
|
if (sending)
|
|
|
|
*s1++ = '\\';
|
|
|
|
|
|
|
|
*s1++ = cur_chr;
|
|
|
|
break;
|
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
case 'T':
|
|
|
|
if (sending && phone_num) {
|
|
|
|
for ( phchar = phone_num; *phchar != '\0'; phchar++)
|
|
|
|
*s1++ = *phchar;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*s1++ = '\\';
|
|
|
|
*s1++ = 'T';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'U':
|
|
|
|
if (sending && phone_num2) {
|
|
|
|
for ( phchar = phone_num2; *phchar != '\0'; phchar++)
|
|
|
|
*s1++ = *phchar;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*s1++ = '\\';
|
|
|
|
*s1++ = 'U';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1994-11-12 05:25:32 +00:00
|
|
|
case 'q':
|
1997-08-22 15:24:36 +00:00
|
|
|
quiet = 1;
|
1994-11-12 05:25:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'r':
|
|
|
|
*s1++ = '\r';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'n':
|
|
|
|
*s1++ = '\n';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 's':
|
|
|
|
*s1++ = ' ';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 't':
|
|
|
|
*s1++ = '\t';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'N':
|
1998-03-21 20:47:53 +00:00
|
|
|
if (sending) {
|
1994-11-12 05:25:32 +00:00
|
|
|
*s1++ = '\\';
|
|
|
|
*s1++ = '\0';
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
else
|
|
|
|
*s1++ = 'N';
|
|
|
|
break;
|
1995-10-31 23:28:29 +00:00
|
|
|
|
1994-11-12 05:25:32 +00:00
|
|
|
default:
|
1998-03-21 20:47:53 +00:00
|
|
|
if (isoctal (cur_chr)) {
|
1994-11-12 05:25:32 +00:00
|
|
|
cur_chr &= 0x07;
|
1998-03-21 20:47:53 +00:00
|
|
|
if (isoctal (*s)) {
|
1994-11-12 05:25:32 +00:00
|
|
|
cur_chr <<= 3;
|
|
|
|
cur_chr |= *s++ - '0';
|
1998-03-21 20:47:53 +00:00
|
|
|
if (isoctal (*s)) {
|
1994-11-12 05:25:32 +00:00
|
|
|
cur_chr <<= 3;
|
|
|
|
cur_chr |= *s++ - '0';
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (cur_chr != 0 || sending) {
|
1994-11-12 05:25:32 +00:00
|
|
|
if (sending && (cur_chr == '\\' || cur_chr == 0))
|
|
|
|
*s1++ = '\\';
|
|
|
|
*s1++ = cur_chr;
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
break;
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
if (sending)
|
|
|
|
*s1++ = '\\';
|
|
|
|
*s1++ = cur_chr;
|
|
|
|
break;
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
if (add_return)
|
|
|
|
*s1++ = '\r';
|
|
|
|
|
|
|
|
*s1++ = '\0'; /* guarantee closure */
|
|
|
|
*s1++ = '\0'; /* terminate the string */
|
|
|
|
return dup_mem (temp, (size_t) (s1 - temp)); /* may have embedded nuls */
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
/*
|
|
|
|
* A modified version of 'strtok'. This version skips \ sequences.
|
|
|
|
*/
|
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
char *
|
|
|
|
expect_strtok (char *s, const char *term)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
2003-08-22 17:47:40 +00:00
|
|
|
static char *str = blank;
|
1997-08-22 15:24:36 +00:00
|
|
|
int escape_flag = 0;
|
|
|
|
char *result;
|
1998-03-21 20:47:53 +00:00
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
/*
|
|
|
|
* If a string was specified then do initial processing.
|
|
|
|
*/
|
|
|
|
if (s)
|
|
|
|
str = s;
|
1998-03-21 20:47:53 +00:00
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
/*
|
|
|
|
* If this is the escape flag then reset it and ignore the character.
|
|
|
|
*/
|
|
|
|
if (*str)
|
|
|
|
result = str;
|
|
|
|
else
|
|
|
|
result = (char *) 0;
|
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
while (*str) {
|
|
|
|
if (escape_flag) {
|
1997-08-22 15:24:36 +00:00
|
|
|
escape_flag = 0;
|
|
|
|
++str;
|
|
|
|
continue;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (*str == '\\') {
|
1997-08-22 15:24:36 +00:00
|
|
|
++str;
|
|
|
|
escape_flag = 1;
|
|
|
|
continue;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
/*
|
|
|
|
* If this is not in the termination string, continue.
|
|
|
|
*/
|
1998-03-21 20:47:53 +00:00
|
|
|
if (strchr (term, *str) == (char *) 0) {
|
1997-08-22 15:24:36 +00:00
|
|
|
++str;
|
|
|
|
continue;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
/*
|
|
|
|
* This is the terminator. Mark the end of the string and stop.
|
|
|
|
*/
|
|
|
|
*str++ = '\0';
|
|
|
|
break;
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
return (result);
|
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1994-11-12 05:25:32 +00:00
|
|
|
/*
|
|
|
|
* Process the expect string
|
|
|
|
*/
|
1997-08-22 15:24:36 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
void
|
|
|
|
chat_expect(char *s)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1997-08-22 15:24:36 +00:00
|
|
|
char *expect;
|
|
|
|
char *reply;
|
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (strcmp(s, "HANGUP") == 0) {
|
1997-08-22 15:24:36 +00:00
|
|
|
++hup_next;
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (strcmp(s, "ABORT") == 0) {
|
1994-11-12 05:25:32 +00:00
|
|
|
++abort_next;
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (strcmp(s, "CLR_ABORT") == 0) {
|
1997-08-22 15:24:36 +00:00
|
|
|
++clear_abort_next;
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (strcmp(s, "REPORT") == 0) {
|
1995-10-31 23:28:29 +00:00
|
|
|
++report_next;
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1995-10-31 23:28:29 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (strcmp(s, "CLR_REPORT") == 0) {
|
1997-08-22 15:24:36 +00:00
|
|
|
++clear_report_next;
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (strcmp(s, "TIMEOUT") == 0) {
|
1994-11-12 05:25:32 +00:00
|
|
|
++timeout_next;
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (strcmp(s, "ECHO") == 0) {
|
1997-08-22 15:24:36 +00:00
|
|
|
++echo_next;
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(s, "SAY") == 0) {
|
1997-08-22 15:24:36 +00:00
|
|
|
++say_next;
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
/*
|
|
|
|
* Fetch the expect and reply string.
|
|
|
|
*/
|
1998-03-21 20:47:53 +00:00
|
|
|
for (;;) {
|
1997-08-22 15:24:36 +00:00
|
|
|
expect = expect_strtok (s, "-");
|
|
|
|
s = (char *) 0;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
if (expect == (char *) 0)
|
|
|
|
return;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
reply = expect_strtok (s, "-");
|
1998-03-21 20:47:53 +00:00
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
/*
|
|
|
|
* Handle the expect string. If successful then exit.
|
|
|
|
*/
|
|
|
|
if (get_string (expect))
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
/*
|
|
|
|
* If there is a sub-reply string then send it. Otherwise any condition
|
|
|
|
* is terminal.
|
|
|
|
*/
|
|
|
|
if (reply == (char *) 0 || exit_code != 3)
|
|
|
|
break;
|
|
|
|
|
|
|
|
chat_send (reply);
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
/*
|
|
|
|
* The expectation did not occur. This is terminal.
|
|
|
|
*/
|
|
|
|
if (fail_reason)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("Failed (%s)", fail_reason);
|
1997-08-22 15:24:36 +00:00
|
|
|
else
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("Failed");
|
1997-08-22 15:24:36 +00:00
|
|
|
terminate(exit_code);
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
/*
|
|
|
|
* Translate the input character to the appropriate string for printing
|
|
|
|
* the data.
|
|
|
|
*/
|
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
char *
|
|
|
|
character(int c)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1994-11-12 05:25:32 +00:00
|
|
|
static char string[10];
|
2003-08-22 17:47:40 +00:00
|
|
|
const char *meta;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
meta = (c & 0x80) ? "M-" : "";
|
|
|
|
c &= 0x7F;
|
|
|
|
|
|
|
|
if (c < 32)
|
|
|
|
sprintf(string, "%s^%c", meta, (int)c + '@');
|
1998-03-21 20:47:53 +00:00
|
|
|
else if (c == 127)
|
|
|
|
sprintf(string, "%s^?", meta);
|
1994-11-12 05:25:32 +00:00
|
|
|
else
|
1998-03-21 20:47:53 +00:00
|
|
|
sprintf(string, "%s%c", meta, c);
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
return (string);
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* process the reply string
|
|
|
|
*/
|
2003-08-22 17:47:40 +00:00
|
|
|
void
|
|
|
|
chat_send(char *s)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
|
|
|
if (say_next) {
|
1997-08-22 15:24:36 +00:00
|
|
|
say_next = 0;
|
|
|
|
s = clean(s,0);
|
2001-07-26 11:02:39 +00:00
|
|
|
write(STDERR_FILENO, s, strlen(s));
|
1997-08-22 15:24:36 +00:00
|
|
|
free(s);
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hup_next) {
|
1997-08-22 15:24:36 +00:00
|
|
|
hup_next = 0;
|
|
|
|
if (strcmp(s, "OFF") == 0)
|
|
|
|
signal(SIGHUP, SIG_IGN);
|
|
|
|
else
|
|
|
|
signal(SIGHUP, sighup);
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (echo_next) {
|
1997-08-22 15:24:36 +00:00
|
|
|
echo_next = 0;
|
|
|
|
echo = (strcmp(s, "ON") == 0);
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (abort_next) {
|
1994-11-12 05:25:32 +00:00
|
|
|
char *s1;
|
1995-10-31 23:28:29 +00:00
|
|
|
|
1994-11-12 05:25:32 +00:00
|
|
|
abort_next = 0;
|
1995-10-31 23:28:29 +00:00
|
|
|
|
1994-11-12 05:25:32 +00:00
|
|
|
if (n_aborts >= MAX_ABORTS)
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(2, "Too many ABORT strings");
|
1995-10-31 23:28:29 +00:00
|
|
|
|
1994-11-12 05:25:32 +00:00
|
|
|
s1 = clean(s, 0);
|
1995-10-31 23:28:29 +00:00
|
|
|
|
|
|
|
if (strlen(s1) > strlen(s)
|
|
|
|
|| strlen(s1) + 1 > sizeof(fail_buffer))
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(1, "Illegal or too-long ABORT string ('%v')", s);
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
abort_string[n_aborts++] = s1;
|
|
|
|
|
|
|
|
if (verbose)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("abort on (%v)", s);
|
1995-10-31 23:28:29 +00:00
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1995-10-31 23:28:29 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (clear_abort_next) {
|
1997-08-22 15:24:36 +00:00
|
|
|
char *s1;
|
|
|
|
int i;
|
|
|
|
int old_max;
|
|
|
|
int pack = 0;
|
|
|
|
|
|
|
|
clear_abort_next = 0;
|
|
|
|
|
|
|
|
s1 = clean(s, 0);
|
|
|
|
|
|
|
|
if (strlen(s1) > strlen(s)
|
|
|
|
|| strlen(s1) + 1 > sizeof(fail_buffer))
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(1, "Illegal or too-long CLR_ABORT string ('%v')", s);
|
1997-08-22 15:24:36 +00:00
|
|
|
|
|
|
|
old_max = n_aborts;
|
1998-03-21 20:47:53 +00:00
|
|
|
for (i=0; i < n_aborts; i++) {
|
|
|
|
if ( strcmp(s1,abort_string[i]) == 0 ) {
|
|
|
|
free(abort_string[i]);
|
|
|
|
abort_string[i] = NULL;
|
|
|
|
pack++;
|
|
|
|
n_aborts--;
|
|
|
|
if (verbose)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("clear abort on (%v)", s);
|
1997-08-22 15:24:36 +00:00
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
free(s1);
|
1998-03-21 20:47:53 +00:00
|
|
|
if (pack)
|
|
|
|
pack_array(abort_string,old_max);
|
1997-08-22 15:24:36 +00:00
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (report_next) {
|
1995-10-31 23:28:29 +00:00
|
|
|
char *s1;
|
|
|
|
|
|
|
|
report_next = 0;
|
|
|
|
if (n_reports >= MAX_REPORTS)
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(2, "Too many REPORT strings");
|
1995-10-31 23:28:29 +00:00
|
|
|
|
|
|
|
s1 = clean(s, 0);
|
|
|
|
|
|
|
|
if (strlen(s1) > strlen(s) || strlen(s1) > sizeof fail_buffer - 1)
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(1, "Illegal or too-long REPORT string ('%v')", s);
|
1995-10-31 23:28:29 +00:00
|
|
|
|
|
|
|
report_string[n_reports++] = s1;
|
|
|
|
|
|
|
|
if (verbose)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("report (%v)", s);
|
1995-10-31 23:28:29 +00:00
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (clear_report_next) {
|
1997-08-22 15:24:36 +00:00
|
|
|
char *s1;
|
|
|
|
int i;
|
|
|
|
int old_max;
|
|
|
|
int pack = 0;
|
|
|
|
|
|
|
|
clear_report_next = 0;
|
|
|
|
|
|
|
|
s1 = clean(s, 0);
|
|
|
|
|
|
|
|
if (strlen(s1) > strlen(s) || strlen(s1) > sizeof fail_buffer - 1)
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(1, "Illegal or too-long REPORT string ('%v')", s);
|
1997-08-22 15:24:36 +00:00
|
|
|
|
|
|
|
old_max = n_reports;
|
1998-03-21 20:47:53 +00:00
|
|
|
for (i=0; i < n_reports; i++) {
|
|
|
|
if ( strcmp(s1,report_string[i]) == 0 ) {
|
|
|
|
free(report_string[i]);
|
|
|
|
report_string[i] = NULL;
|
|
|
|
pack++;
|
|
|
|
n_reports--;
|
|
|
|
if (verbose)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("clear report (%v)", s);
|
1997-08-22 15:24:36 +00:00
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
free(s1);
|
1998-03-21 20:47:53 +00:00
|
|
|
if (pack)
|
|
|
|
pack_array(report_string,old_max);
|
1997-08-22 15:24:36 +00:00
|
|
|
|
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (timeout_next) {
|
1995-10-31 23:28:29 +00:00
|
|
|
timeout_next = 0;
|
|
|
|
timeout = atoi(s);
|
|
|
|
|
|
|
|
if (timeout <= 0)
|
|
|
|
timeout = DEFAULT_CHAT_TIMEOUT;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
if (verbose)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("timeout set to %d seconds", timeout);
|
1998-03-21 20:47:53 +00:00
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
return;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1995-10-31 23:28:29 +00:00
|
|
|
|
|
|
|
if (strcmp(s, "EOT") == 0)
|
2003-08-22 17:47:40 +00:00
|
|
|
s = strdup("^D\\c");
|
1998-03-21 20:47:53 +00:00
|
|
|
else if (strcmp(s, "BREAK") == 0)
|
2003-08-22 17:47:40 +00:00
|
|
|
s = strdup("\\K\\c");
|
1995-10-31 23:28:29 +00:00
|
|
|
|
|
|
|
if (!put_string(s))
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(1, "Failed");
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
int
|
|
|
|
get_char(void)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1994-11-12 05:25:32 +00:00
|
|
|
int status;
|
|
|
|
char c;
|
|
|
|
|
2001-07-26 11:02:39 +00:00
|
|
|
status = read(STDIN_FILENO, &c, 1);
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
switch (status) {
|
1995-10-31 23:28:29 +00:00
|
|
|
case 1:
|
|
|
|
return ((int)c & 0x7F);
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
default:
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("warning: read() on stdin returned %d", status);
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
case -1:
|
|
|
|
if ((status = fcntl(0, F_GETFL, 0)) == -1)
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(2, "Can't get file mode flags on stdin: %m");
|
|
|
|
|
|
|
|
if (fcntl(0, F_SETFL, status & ~O_NONBLOCK) == -1)
|
|
|
|
fatal(2, "Can't set file mode flags on stdin: %m");
|
1995-10-31 23:28:29 +00:00
|
|
|
|
|
|
|
return (-1);
|
1994-11-12 05:25:32 +00:00
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
int put_char(int c)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1994-11-12 05:25:32 +00:00
|
|
|
int status;
|
1995-10-31 23:28:29 +00:00
|
|
|
char ch = c;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
usleep(10000); /* inter-character typing delay (?) */
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2001-07-26 11:02:39 +00:00
|
|
|
status = write(STDOUT_FILENO, &ch, 1);
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
switch (status) {
|
1995-10-31 23:28:29 +00:00
|
|
|
case 1:
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
default:
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("warning: write() on stdout returned %d", status);
|
1995-10-31 23:28:29 +00:00
|
|
|
|
|
|
|
case -1:
|
|
|
|
if ((status = fcntl(0, F_GETFL, 0)) == -1)
|
1998-03-21 20:47:53 +00:00
|
|
|
fatal(2, "Can't get file mode flags on stdin, %m");
|
|
|
|
|
|
|
|
if (fcntl(0, F_SETFL, status & ~O_NONBLOCK) == -1)
|
|
|
|
fatal(2, "Can't set file mode flags on stdin: %m");
|
1995-10-31 23:28:29 +00:00
|
|
|
|
|
|
|
return (-1);
|
1994-11-12 05:25:32 +00:00
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
int
|
|
|
|
write_char(int c)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
|
|
|
if (alarmed || put_char(c) < 0) {
|
1995-10-31 23:28:29 +00:00
|
|
|
alarm(0);
|
|
|
|
alarmed = 0;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (verbose) {
|
1994-11-12 05:25:32 +00:00
|
|
|
if (errno == EINTR || errno == EWOULDBLOCK)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf(" -- write timed out");
|
1994-11-12 05:25:32 +00:00
|
|
|
else
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf(" -- write failed: %m");
|
1994-11-12 05:25:32 +00:00
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
return (0);
|
1994-11-12 05:25:32 +00:00
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
return (1);
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
int
|
|
|
|
put_string(char *s)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1997-08-22 15:24:36 +00:00
|
|
|
quiet = 0;
|
1994-11-12 05:25:32 +00:00
|
|
|
s = clean(s, 1);
|
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
if (verbose)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("send (%v)", quiet ? "??????" : s);
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
alarm(timeout); alarmed = 0;
|
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
while (*s) {
|
2003-08-22 17:47:40 +00:00
|
|
|
char c = *s++;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (c != '\\') {
|
1994-11-12 05:25:32 +00:00
|
|
|
if (!write_char (c))
|
|
|
|
return 0;
|
|
|
|
continue;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
c = *s++;
|
1998-03-21 20:47:53 +00:00
|
|
|
switch (c) {
|
1994-11-12 05:25:32 +00:00
|
|
|
case 'd':
|
|
|
|
sleep(1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'K':
|
|
|
|
break_sequence();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p':
|
1995-10-31 23:28:29 +00:00
|
|
|
usleep(10000); /* 1/100th of a second (arg is microseconds) */
|
1994-11-12 05:25:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (!write_char (c))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
alarm(0);
|
|
|
|
alarmed = 0;
|
|
|
|
return (1);
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
/*
|
|
|
|
* Echo a character to stderr.
|
|
|
|
* When called with -1, a '\n' character is generated when
|
|
|
|
* the cursor is not at the beginning of a line.
|
|
|
|
*/
|
2003-08-22 17:47:40 +00:00
|
|
|
void
|
|
|
|
echo_stderr(int n)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
|
|
|
static int need_lf;
|
|
|
|
char *s;
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
switch (n) {
|
|
|
|
case '\r': /* ignore '\r' */
|
|
|
|
break;
|
|
|
|
case -1:
|
|
|
|
if (need_lf == 0)
|
1997-08-22 15:24:36 +00:00
|
|
|
break;
|
2002-08-25 13:23:09 +00:00
|
|
|
/* FALLTHROUGH */
|
1998-03-21 20:47:53 +00:00
|
|
|
case '\n':
|
2001-07-26 11:02:39 +00:00
|
|
|
write(STDERR_FILENO, "\n", 1);
|
1998-03-21 20:47:53 +00:00
|
|
|
need_lf = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
s = character(n);
|
2001-07-26 11:02:39 +00:00
|
|
|
write(STDERR_FILENO, s, strlen(s));
|
1998-03-21 20:47:53 +00:00
|
|
|
need_lf = 1;
|
|
|
|
break;
|
1997-08-22 15:24:36 +00:00
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1994-11-12 05:25:32 +00:00
|
|
|
/*
|
|
|
|
* 'Wait for' this string to appear on this file descriptor.
|
|
|
|
*/
|
2003-08-22 17:47:40 +00:00
|
|
|
int
|
|
|
|
get_string(char *string)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
1994-11-12 05:25:32 +00:00
|
|
|
char temp[STR_LEN];
|
2003-08-22 17:47:40 +00:00
|
|
|
int c, printed = 0;
|
|
|
|
size_t len, minlen;
|
|
|
|
char *s = temp, *end = s + STR_LEN;
|
1998-03-21 20:47:53 +00:00
|
|
|
char *logged = temp;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
fail_reason = (char *)0;
|
1999-11-25 07:28:54 +00:00
|
|
|
|
|
|
|
if (strlen(string) > STR_LEN) {
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("expect string is too long");
|
1999-11-25 07:28:54 +00:00
|
|
|
exit_code = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1994-11-12 05:25:32 +00:00
|
|
|
string = clean(string, 0);
|
|
|
|
len = strlen(string);
|
|
|
|
minlen = (len > sizeof(fail_buffer)? len: sizeof(fail_buffer)) - 1;
|
|
|
|
|
|
|
|
if (verbose)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("expect (%v)", string);
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (len == 0) {
|
1994-11-12 05:25:32 +00:00
|
|
|
if (verbose)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("got it");
|
1994-11-12 05:25:32 +00:00
|
|
|
return (1);
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
alarm(timeout);
|
|
|
|
alarmed = 0;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
while ( ! alarmed && (c = get_char()) >= 0) {
|
1995-10-31 23:28:29 +00:00
|
|
|
int n, abort_len, report_len;
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
if (echo)
|
|
|
|
echo_stderr(c);
|
1998-03-21 20:47:53 +00:00
|
|
|
if (verbose && c == '\n') {
|
|
|
|
if (s == logged)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf(""); /* blank line */
|
1994-11-12 05:25:32 +00:00
|
|
|
else
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("%0.*v", s - logged, logged);
|
1998-03-21 20:47:53 +00:00
|
|
|
logged = s + 1;
|
1997-08-22 15:24:36 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
*s++ = c;
|
1995-10-31 23:28:29 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (verbose && s >= logged + 80) {
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("%0.*v", s - logged, logged);
|
1998-03-21 20:47:53 +00:00
|
|
|
logged = s;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Verbose) {
|
|
|
|
if (c == '\n')
|
|
|
|
fputc( '\n', stderr );
|
|
|
|
else if (c != '\r')
|
|
|
|
fprintf( stderr, "%s", character(c) );
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!report_gathering) {
|
|
|
|
for (n = 0; n < n_reports; ++n) {
|
1995-10-31 23:28:29 +00:00
|
|
|
if ((report_string[n] != (char*) NULL) &&
|
|
|
|
s - temp >= (report_len = strlen(report_string[n])) &&
|
1998-03-21 20:47:53 +00:00
|
|
|
strncmp(s - report_len, report_string[n], report_len) == 0) {
|
1995-10-31 23:28:29 +00:00
|
|
|
time_t time_now = time ((time_t*) NULL);
|
|
|
|
struct tm* tm_now = localtime (&time_now);
|
|
|
|
|
|
|
|
strftime (report_buffer, 20, "%b %d %H:%M:%S ", tm_now);
|
|
|
|
strcat (report_buffer, report_string[n]);
|
|
|
|
|
|
|
|
report_string[n] = (char *) NULL;
|
|
|
|
report_gathering = 1;
|
|
|
|
break;
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1995-10-31 23:28:29 +00:00
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!iscntrl (c)) {
|
1995-10-31 23:28:29 +00:00
|
|
|
int rep_len = strlen (report_buffer);
|
|
|
|
report_buffer[rep_len] = c;
|
|
|
|
report_buffer[rep_len + 1] = '\0';
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
|
|
|
else {
|
1995-10-31 23:28:29 +00:00
|
|
|
report_gathering = 0;
|
|
|
|
fprintf (report_fp, "chat: %s\n", report_buffer);
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
2003-08-22 17:47:40 +00:00
|
|
|
if ((size_t)(s - temp) >= len &&
|
1997-08-22 15:24:36 +00:00
|
|
|
c == string[len - 1] &&
|
1998-03-21 20:47:53 +00:00
|
|
|
strncmp(s - len, string, len) == 0) {
|
|
|
|
if (verbose) {
|
|
|
|
if (s > logged)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("%0.*v", s - logged, logged);
|
|
|
|
chat_logf(" -- got it\n");
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
|
|
|
|
alarm(0);
|
|
|
|
alarmed = 0;
|
|
|
|
return (1);
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
for (n = 0; n < n_aborts; ++n) {
|
1997-08-22 15:24:36 +00:00
|
|
|
if (s - temp >= (abort_len = strlen(abort_string[n])) &&
|
1998-03-21 20:47:53 +00:00
|
|
|
strncmp(s - abort_len, abort_string[n], abort_len) == 0) {
|
|
|
|
if (verbose) {
|
|
|
|
if (s > logged)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("%0.*v", s - logged, logged);
|
|
|
|
chat_logf(" -- failed");
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
alarm(0);
|
|
|
|
alarmed = 0;
|
|
|
|
exit_code = n + 4;
|
|
|
|
strcpy(fail_reason = fail_buffer, abort_string[n]);
|
|
|
|
return (0);
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1997-08-22 15:24:36 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (s >= end) {
|
|
|
|
if (logged < s - minlen) {
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("%0.*v", s - logged, logged);
|
1998-03-21 20:47:53 +00:00
|
|
|
logged = s;
|
1994-11-12 05:25:32 +00:00
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
s -= minlen;
|
|
|
|
memmove(temp, s, minlen);
|
|
|
|
logged = temp + (logged - s);
|
|
|
|
s = temp + minlen;
|
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
if (alarmed && verbose)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf("warning: alarm synchronization problem");
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
|
|
|
alarm(0);
|
1995-10-31 23:28:29 +00:00
|
|
|
|
1998-03-21 20:47:53 +00:00
|
|
|
if (verbose && printed) {
|
1994-11-12 05:25:32 +00:00
|
|
|
if (alarmed)
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf(" -- read timed out");
|
1994-11-12 05:25:32 +00:00
|
|
|
else
|
2003-10-31 06:22:03 +00:00
|
|
|
chat_logf(" -- read failed: %m");
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1995-10-31 23:28:29 +00:00
|
|
|
exit_code = 3;
|
|
|
|
alarmed = 0;
|
1994-11-12 05:25:32 +00:00
|
|
|
return (0);
|
1998-03-21 20:47:53 +00:00
|
|
|
}
|
1994-11-12 05:25:32 +00:00
|
|
|
|
1997-08-22 15:24:36 +00:00
|
|
|
void
|
2003-08-22 17:47:40 +00:00
|
|
|
pack_array(char **array, int end)
|
1997-08-22 15:24:36 +00:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < end; i++) {
|
|
|
|
if (array[i] == NULL) {
|
|
|
|
for (j = i+1; j < end; ++j)
|
|
|
|
if (array[j] != NULL)
|
|
|
|
array[i++] = array[j];
|
|
|
|
for (; i < end; ++i)
|
|
|
|
array[i] = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1998-03-21 20:47:53 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* vfmtmsg - format a message into a buffer. Like vsprintf except we
|
|
|
|
* also specify the length of the output buffer, and we handle the
|
|
|
|
* %m (error message) format.
|
|
|
|
* Doesn't do floating-point formats.
|
|
|
|
* Returns the number of chars put into buf.
|
|
|
|
*/
|
|
|
|
#define OUTCHAR(c) (buflen > 0? (--buflen, *buf++ = (c)): 0)
|
|
|
|
|
|
|
|
int
|
2003-08-22 17:47:40 +00:00
|
|
|
vfmtmsg(char *buf, int buflen, const char *fmt, va_list args)
|
1998-03-21 20:47:53 +00:00
|
|
|
{
|
|
|
|
int c, i, n;
|
|
|
|
int width, prec, fillch;
|
|
|
|
int base, len, neg, quoted;
|
|
|
|
unsigned long val = 0;
|
|
|
|
char *str, *buf0;
|
|
|
|
const char *f;
|
|
|
|
unsigned char *p;
|
|
|
|
char num[32];
|
|
|
|
static char hexchars[] = "0123456789abcdef";
|
|
|
|
|
|
|
|
buf0 = buf;
|
|
|
|
--buflen;
|
|
|
|
while (buflen > 0) {
|
|
|
|
for (f = fmt; *f != '%' && *f != 0; ++f)
|
|
|
|
;
|
|
|
|
if (f > fmt) {
|
|
|
|
len = f - fmt;
|
|
|
|
if (len > buflen)
|
|
|
|
len = buflen;
|
|
|
|
memcpy(buf, fmt, len);
|
|
|
|
buf += len;
|
|
|
|
buflen -= len;
|
|
|
|
fmt = f;
|
|
|
|
}
|
|
|
|
if (*fmt == 0)
|
|
|
|
break;
|
|
|
|
c = *++fmt;
|
|
|
|
width = prec = 0;
|
|
|
|
fillch = ' ';
|
|
|
|
if (c == '0') {
|
|
|
|
fillch = '0';
|
|
|
|
c = *++fmt;
|
|
|
|
}
|
|
|
|
if (c == '*') {
|
|
|
|
width = va_arg(args, int);
|
|
|
|
c = *++fmt;
|
|
|
|
} else {
|
|
|
|
while (isdigit(c)) {
|
|
|
|
width = width * 10 + c - '0';
|
|
|
|
c = *++fmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (c == '.') {
|
|
|
|
c = *++fmt;
|
|
|
|
if (c == '*') {
|
|
|
|
prec = va_arg(args, int);
|
|
|
|
c = *++fmt;
|
|
|
|
} else {
|
|
|
|
while (isdigit(c)) {
|
|
|
|
prec = prec * 10 + c - '0';
|
|
|
|
c = *++fmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
str = 0;
|
|
|
|
base = 0;
|
|
|
|
neg = 0;
|
|
|
|
++fmt;
|
|
|
|
switch (c) {
|
|
|
|
case 'd':
|
|
|
|
i = va_arg(args, int);
|
|
|
|
if (i < 0) {
|
|
|
|
neg = 1;
|
|
|
|
val = -i;
|
|
|
|
} else
|
|
|
|
val = i;
|
|
|
|
base = 10;
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
val = va_arg(args, unsigned int);
|
|
|
|
base = 8;
|
|
|
|
break;
|
|
|
|
case 'x':
|
|
|
|
val = va_arg(args, unsigned int);
|
|
|
|
base = 16;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
val = (unsigned long) va_arg(args, void *);
|
|
|
|
base = 16;
|
|
|
|
neg = 2;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
str = va_arg(args, char *);
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
num[0] = va_arg(args, int);
|
|
|
|
num[1] = 0;
|
|
|
|
str = num;
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
str = strerror(errno);
|
|
|
|
break;
|
|
|
|
case 'v': /* "visible" string */
|
|
|
|
case 'q': /* quoted string */
|
|
|
|
quoted = c == 'q';
|
|
|
|
p = va_arg(args, unsigned char *);
|
|
|
|
if (fillch == '0' && prec > 0) {
|
|
|
|
n = prec;
|
|
|
|
} else {
|
|
|
|
n = strlen((char *)p);
|
|
|
|
if (prec > 0 && prec < n)
|
|
|
|
n = prec;
|
|
|
|
}
|
|
|
|
while (n > 0 && buflen > 0) {
|
|
|
|
c = *p++;
|
|
|
|
--n;
|
|
|
|
if (!quoted && c >= 0x80) {
|
|
|
|
OUTCHAR('M');
|
|
|
|
OUTCHAR('-');
|
|
|
|
c -= 0x80;
|
|
|
|
}
|
|
|
|
if (quoted && (c == '"' || c == '\\'))
|
|
|
|
OUTCHAR('\\');
|
|
|
|
if (c < 0x20 || (0x7f <= c && c < 0xa0)) {
|
|
|
|
if (quoted) {
|
|
|
|
OUTCHAR('\\');
|
|
|
|
switch (c) {
|
|
|
|
case '\t': OUTCHAR('t'); break;
|
|
|
|
case '\n': OUTCHAR('n'); break;
|
|
|
|
case '\b': OUTCHAR('b'); break;
|
|
|
|
case '\f': OUTCHAR('f'); break;
|
|
|
|
default:
|
|
|
|
OUTCHAR('x');
|
|
|
|
OUTCHAR(hexchars[c >> 4]);
|
|
|
|
OUTCHAR(hexchars[c & 0xf]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (c == '\t')
|
|
|
|
OUTCHAR(c);
|
|
|
|
else {
|
|
|
|
OUTCHAR('^');
|
|
|
|
OUTCHAR(c ^ 0x40);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
OUTCHAR(c);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
*buf++ = '%';
|
|
|
|
if (c != '%')
|
|
|
|
--fmt; /* so %z outputs %z etc. */
|
|
|
|
--buflen;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (base != 0) {
|
|
|
|
str = num + sizeof(num);
|
|
|
|
*--str = 0;
|
|
|
|
while (str > num + neg) {
|
|
|
|
*--str = hexchars[val % base];
|
|
|
|
val = val / base;
|
|
|
|
if (--prec <= 0 && val == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch (neg) {
|
|
|
|
case 1:
|
|
|
|
*--str = '-';
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
*--str = 'x';
|
|
|
|
*--str = '0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
len = num + sizeof(num) - 1 - str;
|
|
|
|
} else {
|
|
|
|
len = strlen(str);
|
|
|
|
if (prec > 0 && len > prec)
|
|
|
|
len = prec;
|
|
|
|
}
|
|
|
|
if (width > 0) {
|
|
|
|
if (width > buflen)
|
|
|
|
width = buflen;
|
|
|
|
if ((n = width - len) > 0) {
|
|
|
|
buflen -= n;
|
|
|
|
for (; n > 0; --n)
|
|
|
|
*buf++ = fillch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (len > buflen)
|
|
|
|
len = buflen;
|
|
|
|
memcpy(buf, str, len);
|
|
|
|
buf += len;
|
|
|
|
buflen -= len;
|
|
|
|
}
|
|
|
|
*buf = 0;
|
|
|
|
return buf - buf0;
|
|
|
|
}
|