1995-01-31 06:29:58 +00:00
|
|
|
/*
|
|
|
|
* Written by Toshiharu OHNO (tony-o@iij.ad.jp)
|
|
|
|
*
|
|
|
|
* Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
|
|
|
|
*
|
|
|
|
* Most of codes are derived from chat.c by Karl Fox (karl@MorningStar.Com).
|
|
|
|
*
|
|
|
|
* Chat -- a program for automatic session establishment (i.e. dial
|
|
|
|
* the phone and log in).
|
|
|
|
*
|
|
|
|
* This software is in the public domain.
|
|
|
|
*
|
|
|
|
* Please send all bug reports, requests for information, etc. to:
|
|
|
|
*
|
|
|
|
* Karl Fox <karl@MorningStar.Com>
|
|
|
|
* Morning Star Technologies, Inc.
|
|
|
|
* 1760 Zollinger Road
|
|
|
|
* Columbus, OH 43221
|
|
|
|
* (614)451-1883
|
1995-05-30 03:57:47 +00:00
|
|
|
*
|
I remove pending signals completely, they are not useless, they are
dangerous! Signal handlers themself must be fixed to not call malloc,
but no pended handlers, it will be correct fix. In finite case each signal
handler can set some variable which will be analized later, but calling
handler functions manually is too dangerous (f.e. signals not blocked while
the handler or handlers switch executed in this case). Of course this
code can be fixed instead of removing, but it not worth fixing in any case.
Should go into 2.2
In addition sig.c code shows following dangerous fragments (there can be more,
but I stop after two):
This fragment
if (fn == SIG_DFL || fn == SIG_IGN) {
handler[sig-1] = (sig_type)0;
<------------- here
signal(sig,fn);
} else {
cause NULL pointer reference when signal comes
"here", but more worse fragment is below:
void handle_signals() {
int sig;
if (caused)
for (sig=0; sig<__MAXSIG; sig++, caused>>=1)
if (caused&1)
(*handler[sig])(sig+1);
}
caused is bitmask which set corresponding bit on each signal coming.
And now imagine, what happens when some signal comes (bit sets) while loop
is executed (see caused>>=1 !!!)
In this light carrier drop situation was (as gdb shows)
1. SIGSEGV in handle_signals because some junk called as *handler reference.
2. Since SIGSEGV was pended too (== never happens),
it can cause various range of disasters.
1997-03-09 20:03:51 +00:00
|
|
|
* $Id: chat.c,v 1.19 1997/03/08 12:15:58 ache Exp $
|
1995-05-30 03:57:47 +00:00
|
|
|
*
|
1995-01-31 06:29:58 +00:00
|
|
|
* TODO:
|
|
|
|
* o Support more UUCP compatible control sequences.
|
|
|
|
* o Dialing shoud not block monitor process.
|
1995-03-11 15:18:55 +00:00
|
|
|
* o Reading modem by select should be unified into main.c
|
1995-01-31 06:29:58 +00:00
|
|
|
*/
|
|
|
|
#include "defs.h"
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#ifndef isblank
|
|
|
|
#define isblank(c) ((c) == '\t' || (c) == ' ')
|
|
|
|
#endif
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <fcntl.h>
|
1995-02-26 12:18:08 +00:00
|
|
|
#include <errno.h>
|
1997-02-25 14:05:17 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <signal.h>
|
1995-02-26 12:18:08 +00:00
|
|
|
#include <sys/wait.h>
|
1995-01-31 06:29:58 +00:00
|
|
|
#include "timeout.h"
|
|
|
|
#include "vars.h"
|
|
|
|
|
1995-02-26 12:18:08 +00:00
|
|
|
#define IBSIZE 200
|
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
static int TimeoutSec;
|
|
|
|
static int abort_next, timeout_next;
|
|
|
|
static int numaborts;
|
|
|
|
char *AbortStrings[50];
|
1996-04-06 02:00:17 +00:00
|
|
|
char inbuff[IBSIZE*2+1];
|
1995-01-31 06:29:58 +00:00
|
|
|
|
|
|
|
extern int ChangeParity(char *);
|
|
|
|
|
|
|
|
#define MATCH 1
|
|
|
|
#define NOMATCH 0
|
|
|
|
#define ABORT -1
|
|
|
|
|
|
|
|
static char *
|
|
|
|
findblank(p, instring)
|
|
|
|
char *p;
|
|
|
|
int instring;
|
|
|
|
{
|
|
|
|
if (instring) {
|
|
|
|
while (*p) {
|
|
|
|
if (*p == '\\') {
|
|
|
|
strcpy(p, p + 1);
|
|
|
|
if (!*p)
|
|
|
|
break;
|
|
|
|
} else if (*p == '"')
|
|
|
|
return(p);
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while (*p) {
|
|
|
|
if (isblank(*p))
|
|
|
|
return(p);
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
MakeArgs(script, pvect)
|
|
|
|
char *script;
|
|
|
|
char **pvect;
|
|
|
|
{
|
|
|
|
int nargs, nb;
|
|
|
|
int instring;
|
|
|
|
|
|
|
|
nargs = 0;
|
|
|
|
while (*script) {
|
|
|
|
nb = strspn(script, " \t");
|
|
|
|
script += nb;
|
|
|
|
if (*script) {
|
|
|
|
if (*script == '"') {
|
|
|
|
instring = 1;
|
|
|
|
script++;
|
|
|
|
if (*script == '\0')
|
|
|
|
return(nargs);
|
|
|
|
} else
|
|
|
|
instring = 0;
|
|
|
|
*pvect++ = script;
|
|
|
|
nargs++;
|
|
|
|
script = findblank(script, instring);
|
|
|
|
if (*script)
|
|
|
|
*script++ = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*pvect = NULL;
|
|
|
|
return nargs;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1997-01-10 07:53:28 +00:00
|
|
|
* \c don't add a cr
|
|
|
|
* \d Sleep a little (delay 2 seconds
|
|
|
|
* \n Line feed character
|
|
|
|
* \P Auth Key password
|
|
|
|
* \p pause 0.25 sec
|
1995-01-31 06:29:58 +00:00
|
|
|
* \r Carrige return character
|
|
|
|
* \s Space character
|
1996-03-08 09:03:09 +00:00
|
|
|
* \T Telephone number(s) (defined via `set phone')
|
1995-01-31 06:29:58 +00:00
|
|
|
* \t Tab character
|
1997-01-10 07:53:28 +00:00
|
|
|
* \U Auth User
|
1995-01-31 06:29:58 +00:00
|
|
|
*/
|
|
|
|
char *
|
1997-01-10 07:53:28 +00:00
|
|
|
ExpandString(str, result, reslen, sendmode)
|
1995-01-31 06:29:58 +00:00
|
|
|
char *str;
|
|
|
|
char *result;
|
1997-01-10 07:53:28 +00:00
|
|
|
int reslen;
|
1995-01-31 06:29:58 +00:00
|
|
|
int sendmode;
|
|
|
|
{
|
|
|
|
int addcr = 0;
|
1996-03-08 09:03:09 +00:00
|
|
|
char *phone;
|
1995-01-31 06:29:58 +00:00
|
|
|
|
1997-01-10 07:53:28 +00:00
|
|
|
result[--reslen] = '\0';
|
1995-01-31 06:29:58 +00:00
|
|
|
if (sendmode)
|
|
|
|
addcr = 1;
|
1997-01-10 07:53:28 +00:00
|
|
|
while (*str && reslen > 0) {
|
1995-01-31 06:29:58 +00:00
|
|
|
switch (*str) {
|
|
|
|
case '\\':
|
|
|
|
str++;
|
|
|
|
switch (*str) {
|
|
|
|
case 'c':
|
|
|
|
if (sendmode)
|
|
|
|
addcr = 0;
|
|
|
|
break;
|
|
|
|
case 'd': /* Delay 2 seconds */
|
|
|
|
sleep(2); break;
|
|
|
|
case 'p':
|
|
|
|
usleep(250000); break; /* Pause 0.25 sec */
|
|
|
|
case 'n':
|
1997-01-10 07:53:28 +00:00
|
|
|
*result++ = '\n'; reslen--; break;
|
1995-01-31 06:29:58 +00:00
|
|
|
case 'r':
|
1997-01-10 07:53:28 +00:00
|
|
|
*result++ = '\r'; reslen--; break;
|
1995-01-31 06:29:58 +00:00
|
|
|
case 's':
|
1997-01-10 07:53:28 +00:00
|
|
|
*result++ = ' '; reslen--; break;
|
1995-01-31 06:29:58 +00:00
|
|
|
case 't':
|
1997-01-10 07:53:28 +00:00
|
|
|
*result++ = '\t'; reslen--; break;
|
1995-01-31 06:29:58 +00:00
|
|
|
case 'P':
|
1997-01-10 07:53:28 +00:00
|
|
|
strncpy(result, VarAuthKey, reslen);
|
|
|
|
reslen -= strlen(result);
|
|
|
|
result += strlen(result);
|
1995-01-31 06:29:58 +00:00
|
|
|
break;
|
|
|
|
case 'T':
|
1996-03-08 13:22:23 +00:00
|
|
|
if (VarNextPhone == NULL) {
|
|
|
|
strcpy(VarPhoneCopy, VarPhoneList);
|
|
|
|
VarNextPhone = VarPhoneCopy;
|
|
|
|
}
|
1996-03-08 09:03:09 +00:00
|
|
|
phone = strsep(&VarNextPhone, ":");
|
1997-01-10 07:53:28 +00:00
|
|
|
strncpy(result, phone, reslen);
|
|
|
|
reslen -= strlen(result);
|
|
|
|
result += strlen(result);
|
1996-03-08 09:03:09 +00:00
|
|
|
if ((mode & (MODE_INTER|MODE_AUTO)) == MODE_INTER)
|
|
|
|
fprintf(stderr, "Phone: %s\n", phone);
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_PHASE_BIT, "Phone: %s\n", phone);
|
1995-01-31 06:29:58 +00:00
|
|
|
break;
|
|
|
|
case 'U':
|
1997-01-10 07:53:28 +00:00
|
|
|
strncpy(result, VarAuthName, reslen);
|
|
|
|
reslen -= strlen(result);
|
|
|
|
result += strlen(result);
|
1995-01-31 06:29:58 +00:00
|
|
|
break;
|
|
|
|
default:
|
1997-01-10 07:53:28 +00:00
|
|
|
reslen--;
|
|
|
|
*result++ = *str;
|
|
|
|
break;
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
1997-01-10 07:53:28 +00:00
|
|
|
if (*str)
|
|
|
|
str++;
|
1995-01-31 06:29:58 +00:00
|
|
|
break;
|
|
|
|
case '^':
|
|
|
|
str++;
|
1997-01-10 07:53:28 +00:00
|
|
|
if (*str) {
|
1995-01-31 06:29:58 +00:00
|
|
|
*result++ = *str++ & 0x1f;
|
1997-01-10 07:53:28 +00:00
|
|
|
reslen--;
|
|
|
|
}
|
1995-01-31 06:29:58 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
*result++ = *str++;
|
1997-01-10 07:53:28 +00:00
|
|
|
reslen--;
|
1995-01-31 06:29:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1997-01-10 07:53:28 +00:00
|
|
|
if (--reslen > 0) {
|
|
|
|
if (addcr)
|
|
|
|
*result++ = '\r';
|
|
|
|
}
|
|
|
|
if (--reslen > 0)
|
|
|
|
*result++ = '\0';
|
1995-01-31 06:29:58 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
1996-05-11 20:48:42 +00:00
|
|
|
#define MAXLOGBUFF 200
|
|
|
|
static char logbuff[MAXLOGBUFF];
|
|
|
|
static int loglen = 0;
|
|
|
|
|
|
|
|
static void clear_log() {
|
|
|
|
memset(logbuff,0,MAXLOGBUFF);
|
|
|
|
loglen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void flush_log() {
|
|
|
|
if ((loglevel & LOG_CONNECT_BIT)
|
|
|
|
|| ((loglevel & LOG_CARRIER_BIT)
|
|
|
|
&& strstr(logbuff,"CARRIER"))) {
|
|
|
|
LogPrintf(LOG_CONNECT_BIT|LOG_CARRIER_BIT,"Chat: %s\n",logbuff);
|
|
|
|
}
|
|
|
|
clear_log();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void connect_log(char *str, int single_p) {
|
|
|
|
int space = MAXLOGBUFF - loglen - 1;
|
|
|
|
|
|
|
|
while (space--) {
|
|
|
|
if (*str == '\n') {
|
|
|
|
flush_log();
|
|
|
|
} else {
|
|
|
|
logbuff[loglen++] = *str;
|
|
|
|
}
|
|
|
|
if (single_p || !*++str) break;
|
|
|
|
}
|
|
|
|
if (!space) flush_log();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
int
|
|
|
|
WaitforString(estr)
|
|
|
|
char *estr;
|
|
|
|
{
|
|
|
|
struct timeval timeout;
|
|
|
|
char *s, *str, ch;
|
|
|
|
char *inp;
|
|
|
|
fd_set rfds;
|
1996-05-11 20:48:42 +00:00
|
|
|
int i, nfds, nb, msg;
|
1995-01-31 06:29:58 +00:00
|
|
|
char buff[200];
|
|
|
|
|
1996-05-11 20:48:42 +00:00
|
|
|
|
1995-02-26 12:18:08 +00:00
|
|
|
#ifdef SIGALRM
|
|
|
|
int omask;
|
|
|
|
omask = sigblock(sigmask(SIGALRM));
|
|
|
|
#endif
|
1996-05-11 20:48:42 +00:00
|
|
|
clear_log();
|
1997-01-10 07:53:28 +00:00
|
|
|
(void) ExpandString(estr, buff, sizeof(buff), 0);
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_CHAT_BIT, "Wait for (%d): %s --> %s\n", TimeoutSec, estr, buff);
|
1995-01-31 06:29:58 +00:00
|
|
|
str = buff;
|
|
|
|
inp = inbuff;
|
|
|
|
|
1996-04-06 02:00:17 +00:00
|
|
|
if (strlen(str)>=IBSIZE){
|
|
|
|
str[IBSIZE]=0;
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_CHAT_BIT, "Truncating String to %d character: %s\n", IBSIZE, str);
|
1996-04-06 02:00:17 +00:00
|
|
|
}
|
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
nfds = modem + 1;
|
|
|
|
s = str;
|
1996-05-11 20:48:42 +00:00
|
|
|
msg = FALSE;
|
1995-01-31 06:29:58 +00:00
|
|
|
for (;;) {
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_SET(modem, &rfds);
|
|
|
|
/*
|
|
|
|
* Because it is not clear whether select() modifies timeout value,
|
|
|
|
* it is better to initialize timeout values everytime.
|
|
|
|
*/
|
|
|
|
timeout.tv_sec = TimeoutSec;
|
|
|
|
timeout.tv_usec = 0;
|
|
|
|
i = select(nfds, &rfds, NULL, NULL, &timeout);
|
|
|
|
#ifdef notdef
|
|
|
|
TimerService();
|
|
|
|
#endif
|
|
|
|
if (i < 0) {
|
1995-02-26 12:18:08 +00:00
|
|
|
#ifdef SIGALRM
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
|
|
|
sigsetmask(omask);
|
|
|
|
#endif
|
1995-01-31 06:29:58 +00:00
|
|
|
perror("select");
|
1995-02-26 12:18:08 +00:00
|
|
|
*inp = 0;
|
1995-01-31 06:29:58 +00:00
|
|
|
return(NOMATCH);
|
|
|
|
} else if (i == 0) { /* Timeout reached! */
|
1995-02-26 12:18:08 +00:00
|
|
|
*inp = 0;
|
|
|
|
if (inp != inbuff)
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_CHAT_BIT, "got: %s\n", inbuff);
|
|
|
|
LogPrintf(LOG_CHAT_BIT, "can't get (%d).\n", timeout.tv_sec);
|
1995-02-26 12:18:08 +00:00
|
|
|
#ifdef SIGALRM
|
|
|
|
sigsetmask(omask);
|
|
|
|
#endif
|
1995-01-31 06:29:58 +00:00
|
|
|
return(NOMATCH);
|
|
|
|
}
|
|
|
|
if (FD_ISSET(modem, &rfds)) { /* got something */
|
1995-02-26 12:18:08 +00:00
|
|
|
if (DEV_IS_SYNC) {
|
1996-04-06 02:00:17 +00:00
|
|
|
int length;
|
|
|
|
if ((length=strlen(inbuff))>IBSIZE){
|
|
|
|
bcopy(&(inbuff[IBSIZE]),inbuff,IBSIZE+1); /* shuffle down next part*/
|
|
|
|
length=strlen(inbuff);
|
|
|
|
}
|
|
|
|
nb = read(modem, &(inbuff[length]), IBSIZE);
|
|
|
|
inbuff[nb + length] = 0;
|
1996-05-11 20:48:42 +00:00
|
|
|
connect_log(inbuff,0);
|
1995-02-26 12:18:08 +00:00
|
|
|
if (strstr(inbuff, str)) {
|
|
|
|
#ifdef SIGALRM
|
|
|
|
sigsetmask(omask);
|
|
|
|
#endif
|
1996-05-11 20:48:42 +00:00
|
|
|
flush_log();
|
1995-01-31 06:29:58 +00:00
|
|
|
return(MATCH);
|
|
|
|
}
|
1995-02-26 12:18:08 +00:00
|
|
|
for (i = 0; i < numaborts; i++) {
|
|
|
|
if (strstr(inbuff, AbortStrings[i])) {
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_CHAT_BIT, "Abort: %s\n", AbortStrings[i]);
|
1995-02-26 12:18:08 +00:00
|
|
|
#ifdef SIGALRM
|
|
|
|
sigsetmask(omask);
|
|
|
|
#endif
|
1996-05-11 20:48:42 +00:00
|
|
|
flush_log();
|
1995-01-31 06:29:58 +00:00
|
|
|
return(ABORT);
|
|
|
|
}
|
|
|
|
}
|
1995-02-26 12:18:08 +00:00
|
|
|
} else {
|
|
|
|
read(modem, &ch, 1);
|
1996-05-11 20:48:42 +00:00
|
|
|
connect_log(&ch,1);
|
1995-02-26 12:18:08 +00:00
|
|
|
*inp++ = ch;
|
|
|
|
if (ch == *s) {
|
|
|
|
s++;
|
|
|
|
if (*s == '\0') {
|
|
|
|
#ifdef SIGALRM
|
|
|
|
sigsetmask(omask);
|
|
|
|
#endif
|
|
|
|
*inp = 0;
|
1996-05-11 20:48:42 +00:00
|
|
|
flush_log();
|
1995-02-26 12:18:08 +00:00
|
|
|
return(MATCH);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
s = str;
|
|
|
|
if (inp == inbuff+ IBSIZE) {
|
|
|
|
bcopy(inp - 100, inbuff, 100);
|
|
|
|
inp = inbuff + 100;
|
|
|
|
}
|
|
|
|
for (i = 0; i < numaborts; i++) { /* Look for Abort strings */
|
|
|
|
int len;
|
|
|
|
char *s1;
|
|
|
|
|
|
|
|
s1 = AbortStrings[i];
|
|
|
|
len = strlen(s1);
|
|
|
|
if ((len <= inp - inbuff) && (strncmp(inp - len, s1, len) == 0)) {
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_CHAT_BIT, "Abort: %s\n", s1);
|
1995-02-26 12:18:08 +00:00
|
|
|
*inp = 0;
|
|
|
|
#ifdef SIGALRM
|
|
|
|
sigsetmask(omask);
|
|
|
|
#endif
|
1996-05-11 20:48:42 +00:00
|
|
|
flush_log();
|
1995-02-26 12:18:08 +00:00
|
|
|
return(ABORT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1995-02-26 12:18:08 +00:00
|
|
|
#ifdef SIGALRM
|
|
|
|
sigsetmask(omask);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ExecStr(command, out)
|
|
|
|
char *command, *out;
|
|
|
|
{
|
|
|
|
int pid;
|
|
|
|
int fids[2];
|
|
|
|
char *vector[20];
|
|
|
|
int stat, nb;
|
|
|
|
char *cp;
|
|
|
|
char tmp[300];
|
|
|
|
extern int errno;
|
|
|
|
|
|
|
|
cp = inbuff + strlen(inbuff) - 1;
|
|
|
|
while (cp > inbuff) {
|
|
|
|
if (*cp < ' ' && *cp != '\t') {
|
|
|
|
cp++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
cp--;
|
|
|
|
}
|
1996-12-15 20:39:30 +00:00
|
|
|
snprintf(tmp, sizeof tmp, "%s %s", command, cp);
|
1995-02-26 12:18:08 +00:00
|
|
|
(void) MakeArgs(tmp, &vector);
|
|
|
|
|
|
|
|
pipe(fids);
|
|
|
|
pid = fork();
|
|
|
|
if (pid == 0) {
|
1997-03-08 10:04:21 +00:00
|
|
|
signal(SIGINT, SIG_DFL);
|
|
|
|
signal(SIGQUIT, SIG_DFL);
|
|
|
|
signal(SIGTERM, SIG_DFL);
|
1997-03-08 12:15:58 +00:00
|
|
|
signal(SIGHUP, SIG_DFL);
|
1995-02-26 12:18:08 +00:00
|
|
|
close(fids[0]);
|
|
|
|
dup2(fids[1], 1);
|
|
|
|
close(fids[1]);
|
|
|
|
nb = open("/dev/tty", O_RDWR);
|
|
|
|
dup2(nb, 0);
|
1997-02-19 01:14:41 +00:00
|
|
|
LogPrintf(LOG_CHAT_BIT, "exec: %s\n", command);
|
1996-06-09 20:40:58 +00:00
|
|
|
/* switch back to original privileges */
|
|
|
|
if (setgid(getgid()) < 0) {
|
|
|
|
LogPrintf(LOG_CHAT_BIT, "setgid: %s\n", strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (setuid(getuid()) < 0) {
|
|
|
|
LogPrintf(LOG_CHAT_BIT, "setuid: %s\n", strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
1995-02-26 12:18:08 +00:00
|
|
|
pid = execvp(command, vector);
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_CHAT_BIT, "execvp failed for (%d/%d): %s\n", pid, errno, command);
|
1995-02-26 12:18:08 +00:00
|
|
|
exit(127);
|
|
|
|
} else {
|
|
|
|
close(fids[1]);
|
|
|
|
for (;;) {
|
|
|
|
nb = read(fids[0], out, 1);
|
|
|
|
if (nb <= 0)
|
|
|
|
break;
|
|
|
|
out++;
|
|
|
|
}
|
|
|
|
*out = '\0';
|
|
|
|
close(fids[0]);
|
|
|
|
close(fids[1]);
|
|
|
|
waitpid(pid, &stat, WNOHANG);
|
|
|
|
}
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SendString(str)
|
|
|
|
char *str;
|
|
|
|
{
|
1995-02-26 12:18:08 +00:00
|
|
|
char *cp;
|
|
|
|
int nb, on;
|
1995-01-31 06:29:58 +00:00
|
|
|
char buff[200];
|
|
|
|
|
|
|
|
if (abort_next) {
|
|
|
|
abort_next = 0;
|
1997-01-10 07:53:28 +00:00
|
|
|
ExpandString(str, buff, sizeof(buff), 0);
|
1995-01-31 06:29:58 +00:00
|
|
|
AbortStrings[numaborts++] = strdup(buff);
|
|
|
|
} else if (timeout_next) {
|
|
|
|
timeout_next = 0;
|
|
|
|
TimeoutSec = atoi(str);
|
|
|
|
if (TimeoutSec <= 0)
|
|
|
|
TimeoutSec = 30;
|
|
|
|
} else {
|
1995-02-26 12:18:08 +00:00
|
|
|
if (*str == '!') {
|
1997-01-10 07:53:28 +00:00
|
|
|
(void) ExpandString(str+1, buff+2, sizeof(buff)-2, 0);
|
1995-02-26 12:18:08 +00:00
|
|
|
ExecStr(buff + 2, buff + 2);
|
|
|
|
} else {
|
1997-01-10 07:53:28 +00:00
|
|
|
(void) ExpandString(str, buff+2, sizeof(buff)-2, 1);
|
1995-02-26 12:18:08 +00:00
|
|
|
}
|
1995-09-02 17:20:54 +00:00
|
|
|
if (strstr(str, "\\P")) { /* Do not log the password itself. */
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_CHAT_BIT, "sending: %s\n", str);
|
1995-09-02 17:20:54 +00:00
|
|
|
} else {
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_CHAT_BIT, "sending: %s\n", buff+2);
|
1995-09-02 17:20:54 +00:00
|
|
|
}
|
1995-02-26 12:18:08 +00:00
|
|
|
cp = buff;
|
|
|
|
if (DEV_IS_SYNC)
|
|
|
|
bcopy("\377\003", buff, 2); /* Prepend HDLC header */
|
|
|
|
else
|
|
|
|
cp += 2;
|
|
|
|
on = strlen(cp);
|
|
|
|
nb = write(modem, cp, on);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ExpectString(str)
|
|
|
|
char *str;
|
|
|
|
{
|
|
|
|
char *minus;
|
|
|
|
int state;
|
|
|
|
|
|
|
|
if (strcmp(str, "ABORT") == 0) {
|
|
|
|
++abort_next;
|
|
|
|
return(MATCH);
|
|
|
|
}
|
|
|
|
if (strcmp(str, "TIMEOUT") == 0) {
|
|
|
|
++timeout_next;
|
|
|
|
return(MATCH);
|
|
|
|
}
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_CHAT_BIT, "Expecting %s\n", str);
|
1995-01-31 06:29:58 +00:00
|
|
|
while (*str) {
|
|
|
|
/*
|
|
|
|
* Check whether if string contains sub-send-expect.
|
|
|
|
*/
|
|
|
|
for (minus = str; *minus; minus++) {
|
|
|
|
if (*minus == '-') {
|
|
|
|
if (minus == str || minus[-1] != '\\')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (*minus == '-') { /* We have sub-send-expect. */
|
|
|
|
*minus++ = '\0';
|
|
|
|
state = WaitforString(str);
|
|
|
|
if (state != NOMATCH)
|
|
|
|
return(state);
|
|
|
|
/*
|
|
|
|
* Can't get expect string. Sendout send part.
|
|
|
|
*/
|
|
|
|
str = minus;
|
|
|
|
for (minus = str; *minus; minus++) {
|
|
|
|
if (*minus == '-') {
|
|
|
|
if (minus == str || minus[-1] != '\\')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (*minus == '-') {
|
|
|
|
*minus++ = '\0';
|
|
|
|
SendString(str);
|
|
|
|
str = minus;
|
|
|
|
} else {
|
|
|
|
SendString(str);
|
|
|
|
return(MATCH);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Simple case. Wait for string.
|
|
|
|
*/
|
|
|
|
return(WaitforString(str));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(MATCH);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
DoChat(script)
|
|
|
|
char *script;
|
|
|
|
{
|
|
|
|
char *vector[20];
|
|
|
|
char **argv;
|
|
|
|
int argc, n, state;
|
|
|
|
#ifdef DEBUG
|
|
|
|
int i;
|
|
|
|
#endif
|
1995-05-30 03:57:47 +00:00
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
timeout_next = abort_next = 0;
|
|
|
|
for (n = 0; AbortStrings[n]; n++) {
|
|
|
|
free(AbortStrings[n]);
|
|
|
|
AbortStrings[n] = NULL;
|
|
|
|
}
|
|
|
|
numaborts = 0;
|
|
|
|
|
|
|
|
bzero(vector, sizeof(vector));
|
|
|
|
n = MakeArgs(script, &vector);
|
|
|
|
#ifdef DEBUG
|
|
|
|
logprintf("n = %d\n", n);
|
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
logprintf(" %s\n", vector[i]);
|
|
|
|
#endif
|
|
|
|
argc = n;
|
|
|
|
argv = vector;
|
|
|
|
TimeoutSec = 30;
|
|
|
|
while (*argv) {
|
|
|
|
if (strcmp(*argv, "P_ZERO") == 0 ||
|
|
|
|
strcmp(*argv, "P_ODD") == 0 || strcmp(*argv, "P_EVEN") == 0) {
|
|
|
|
ChangeParity(*argv++);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
state = ExpectString(*argv++);
|
|
|
|
switch (state) {
|
|
|
|
case MATCH:
|
|
|
|
if (*argv)
|
|
|
|
SendString(*argv++);
|
|
|
|
break;
|
|
|
|
case ABORT:
|
|
|
|
#ifdef notdef
|
|
|
|
HangupModem();
|
|
|
|
#endif
|
|
|
|
case NOMATCH:
|
|
|
|
return(NOMATCH);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(MATCH);
|
|
|
|
}
|