2001-08-17 05:46:24 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
2002-01-07 19:16:03 +00:00
|
|
|
* $Id$
|
2001-08-17 05:46:24 +00:00
|
|
|
* Purpose ...............: Fidonet mailer
|
|
|
|
*
|
|
|
|
*****************************************************************************
|
2005-08-28 11:34:24 +00:00
|
|
|
* Copyright (C) 1997-2005
|
2001-08-17 05:46:24 +00:00
|
|
|
*
|
|
|
|
* Michiel Broek FIDO: 2:280/2802
|
|
|
|
* Beekmansbos 10
|
|
|
|
* 1971 BV IJmuiden
|
|
|
|
* the Netherlands
|
|
|
|
*
|
|
|
|
* This file is part of MBSE BBS.
|
|
|
|
*
|
|
|
|
* This BBS is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2, or (at your option) any
|
|
|
|
* later version.
|
|
|
|
*
|
|
|
|
* MBSE BBS is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with MBSE BBS; see the file COPYING. If not, write to the Free
|
2003-08-15 20:05:34 +00:00
|
|
|
* Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
2001-08-17 05:46:24 +00:00
|
|
|
*****************************************************************************/
|
|
|
|
|
2002-06-30 12:48:44 +00:00
|
|
|
#include "../config.h"
|
2004-02-21 17:22:00 +00:00
|
|
|
#include "../lib/mbselib.h"
|
2002-01-07 19:16:03 +00:00
|
|
|
#include "../lib/users.h"
|
2002-12-28 17:29:06 +00:00
|
|
|
#include "../lib/nodelist.h"
|
2004-02-21 17:22:00 +00:00
|
|
|
#include "../lib/mbsedb.h"
|
2001-08-17 05:46:24 +00:00
|
|
|
#include "session.h"
|
|
|
|
#include "callstat.h"
|
|
|
|
#include "call.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "dial.h"
|
|
|
|
#include "lutil.h"
|
|
|
|
#include "portsel.h"
|
|
|
|
#include "openport.h"
|
|
|
|
#include "opentcp.h"
|
|
|
|
#include "rdoptions.h"
|
2003-08-23 14:57:51 +00:00
|
|
|
#include "inbound.h"
|
|
|
|
|
2001-08-17 05:46:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
extern int tcp_mode;
|
2003-11-24 22:19:50 +00:00
|
|
|
extern int telnet;
|
2001-08-17 05:46:24 +00:00
|
|
|
extern int immediatecall;
|
|
|
|
extern char *forcedphone;
|
|
|
|
extern char *forcedline;
|
|
|
|
extern char *inetaddr;
|
2003-01-02 16:44:28 +00:00
|
|
|
extern char *protocol;
|
2003-11-30 14:36:53 +00:00
|
|
|
extern pid_t mypid;
|
2001-08-17 05:46:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
int portopen(faddr *addr)
|
|
|
|
{
|
2002-07-02 20:00:49 +00:00
|
|
|
char *p;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if (inetaddr) {
|
|
|
|
Syslog('d', "portopen inetaddr %s", inetaddr);
|
|
|
|
if ((rc = opentcp(inetaddr))) {
|
|
|
|
Syslog('+', "Cannot connect %s", inetaddr);
|
2003-11-30 14:36:53 +00:00
|
|
|
nodeulock(addr, mypid);
|
2002-10-20 20:58:55 +00:00
|
|
|
return MBERR_NO_CONNECTION;
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
2002-10-20 20:58:55 +00:00
|
|
|
return MBERR_OK;
|
2002-07-02 20:00:49 +00:00
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2002-07-02 20:00:49 +00:00
|
|
|
if (forcedline) {
|
|
|
|
Syslog('d', "portopen forcedline %s", forcedline);
|
|
|
|
p = forcedline;
|
|
|
|
strncpy(history.tty, p, 6);
|
|
|
|
|
|
|
|
if (load_port(p)) {
|
|
|
|
if ((rc = openport(p, ttyinfo.portspeed))) {
|
|
|
|
Syslog('+', "Cannot open port %s",p);
|
2003-11-30 14:36:53 +00:00
|
|
|
nodeulock(addr, mypid);
|
2002-10-20 20:58:55 +00:00
|
|
|
putstatus(addr, 10, MBERR_PORTERROR);
|
|
|
|
return MBERR_PORTERROR;
|
2002-07-02 20:00:49 +00:00
|
|
|
}
|
2002-10-20 20:58:55 +00:00
|
|
|
return MBERR_OK;
|
2002-07-02 20:00:49 +00:00
|
|
|
} else {
|
2003-11-30 14:36:53 +00:00
|
|
|
nodeulock(addr, mypid);
|
2002-10-20 20:58:55 +00:00
|
|
|
putstatus(addr, 0, MBERR_PORTERROR);
|
|
|
|
return MBERR_PORTERROR;
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
2002-07-02 20:00:49 +00:00
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2002-07-02 20:00:49 +00:00
|
|
|
WriteError("No call method available, maybe missing parameters");
|
2002-10-20 20:58:55 +00:00
|
|
|
return MBERR_NO_CONNECTION;
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int call(faddr *addr)
|
|
|
|
{
|
2003-01-02 16:44:28 +00:00
|
|
|
int rc = 1;
|
|
|
|
char *p, temp[81];
|
2002-07-02 20:00:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* First check if node is locked, if not lock it immediatly
|
|
|
|
* or stop further waste of time and logfile space.
|
|
|
|
*/
|
2003-11-30 14:36:53 +00:00
|
|
|
if (nodelock(addr, mypid)) {
|
2002-07-02 20:00:49 +00:00
|
|
|
Syslog('+', "System %s is locked", ascfnode(addr, 0x1f));
|
2002-10-20 20:58:55 +00:00
|
|
|
putstatus(addr, 0, MBERR_NODE_LOCKED);
|
|
|
|
return MBERR_NODE_LOCKED;
|
2002-07-02 20:00:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((nlent = getnlent(addr)) == NULL) {
|
|
|
|
WriteError("Cannot call %s: fatal in nodelist lookup", ascfnode(addr, 0x1f));
|
2004-01-20 20:38:51 +00:00
|
|
|
putstatus(addr,10,MBERR_NODE_NOT_IN_LIST);
|
|
|
|
nodeulock(addr, mypid);
|
|
|
|
return MBERR_NODE_NOT_IN_LIST;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if we got a URL to make the call.
|
|
|
|
*/
|
|
|
|
if (nlent->url == NULL) {
|
|
|
|
WriteError("Cannot call %s: no dialmethod available in nodelist", ascfnode(addr, 0x1f));
|
|
|
|
putstatus(addr,10,MBERR_NODE_NOT_IN_LIST);
|
2003-11-30 14:36:53 +00:00
|
|
|
nodeulock(addr, mypid);
|
2002-10-20 20:58:55 +00:00
|
|
|
return MBERR_NODE_NOT_IN_LIST;
|
2002-07-02 20:00:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Load the noderecord if the node is in the setup.
|
|
|
|
*/
|
|
|
|
noderecord(addr);
|
|
|
|
rdoptions(TRUE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fill default history info in case we get a FTS0001 session
|
|
|
|
*/
|
|
|
|
strncpy(history.system_name, nlent->name, 35);
|
|
|
|
strncpy(history.location, nlent->location, 35);
|
|
|
|
strncpy(history.sysop, nlent->sysop, 35);
|
|
|
|
history.aka.zone = addr->zone;
|
|
|
|
history.aka.net = addr->net;
|
|
|
|
history.aka.node = addr->node;
|
|
|
|
history.aka.point = addr->point;
|
|
|
|
if (addr->domain && strlen(addr->domain))
|
2005-08-28 13:45:26 +00:00
|
|
|
snprintf(history.aka.domain, 13, "%s", printable(addr->domain, 0));
|
2002-07-02 20:00:49 +00:00
|
|
|
|
|
|
|
/*
|
2003-01-02 16:44:28 +00:00
|
|
|
* Extract the protocol from the URL.
|
2002-07-02 20:00:49 +00:00
|
|
|
*/
|
2003-01-02 16:44:28 +00:00
|
|
|
strncpy(temp, nlent->url, 80);
|
|
|
|
p = strchr(temp, ':');
|
|
|
|
*p = '\0';
|
|
|
|
protocol = xstrcpy(temp);
|
|
|
|
|
|
|
|
if (strcasecmp(protocol, "pots") && strcasecmp(protocol, "isdn")) {
|
2002-07-02 20:00:49 +00:00
|
|
|
if (!inetaddr) {
|
|
|
|
/*
|
2003-01-02 16:44:28 +00:00
|
|
|
* Get the internet address from the URL.
|
2002-07-02 20:00:49 +00:00
|
|
|
*/
|
2003-01-02 16:44:28 +00:00
|
|
|
p = strchr(nlent->url, '/');
|
|
|
|
p++;
|
|
|
|
p++;
|
|
|
|
inetaddr = xstrcpy(p);
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
2003-01-02 16:44:28 +00:00
|
|
|
RegTCP();
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2003-01-02 16:44:28 +00:00
|
|
|
if (tcp_mode == TCPMODE_NONE) {
|
|
|
|
if (strcmp(protocol, "binkp") == 0) {
|
|
|
|
tcp_mode = TCPMODE_IBN;
|
|
|
|
} else if (strcmp(protocol, "fido") == 0) {
|
|
|
|
tcp_mode = TCPMODE_IFC;
|
2004-01-31 22:15:00 +00:00
|
|
|
} else if (strcmp(protocol, "telnet") == 0) {
|
|
|
|
tcp_mode = TCPMODE_ITN;
|
|
|
|
telnet = TRUE;
|
2003-01-02 16:44:28 +00:00
|
|
|
} else {
|
|
|
|
Syslog('+', "No common TCP/IP protocols for node %s", nlent->name);
|
|
|
|
free(inetaddr);
|
|
|
|
inetaddr = NULL;
|
2002-07-02 20:00:49 +00:00
|
|
|
}
|
2003-01-02 16:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (inetaddr == NULL) {
|
2002-07-02 20:00:49 +00:00
|
|
|
WriteError("No IP address, abort call");
|
2002-10-20 20:58:55 +00:00
|
|
|
rc = MBERR_NO_IP_ADDRESS;
|
2002-07-02 20:00:49 +00:00
|
|
|
putstatus(addr, 10, rc);
|
2003-11-30 14:36:53 +00:00
|
|
|
nodeulock(addr, mypid);
|
2002-07-02 20:00:49 +00:00
|
|
|
return rc;
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
2003-01-02 16:44:28 +00:00
|
|
|
} else {
|
|
|
|
if (!forcedphone) {
|
|
|
|
/*
|
|
|
|
* Get the phone number from the URL.
|
|
|
|
*/
|
|
|
|
p = strchr(nlent->url, '/');
|
|
|
|
p++;
|
|
|
|
p++;
|
|
|
|
forcedphone = xstrcpy(p);
|
|
|
|
}
|
2002-07-02 20:00:49 +00:00
|
|
|
}
|
|
|
|
|
2004-06-18 19:54:13 +00:00
|
|
|
if (((nlent->can_pots && nlent->is_cm) == FALSE) && ((nlent->can_ip && nlent->is_icm) == FALSE) && (!IsZMH())) {
|
2002-12-30 22:13:33 +00:00
|
|
|
Syslog('?', "Warning: calling non-CM system outside ZMH");
|
2002-07-02 20:00:49 +00:00
|
|
|
}
|
|
|
|
|
2005-09-12 13:47:09 +00:00
|
|
|
inbound_open(addr, TRUE, (tcp_mode == TCPMODE_IBN)); /* master sessions are secure */
|
2002-07-02 20:00:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Call when:
|
2003-01-09 21:02:59 +00:00
|
|
|
* there is a phone number and node is not down, hold or pvt
|
|
|
|
* or
|
|
|
|
* there is a fqdn/ip-address and node is not down or hold
|
|
|
|
* and
|
2002-07-02 20:00:49 +00:00
|
|
|
* nocall is false
|
|
|
|
*/
|
2003-01-09 21:02:59 +00:00
|
|
|
if (((forcedphone && ((nlent->pflag & (NL_DUMMY | NL_DOWN | NL_HOLD | NL_PVT)) == 0)) ||
|
|
|
|
(inetaddr && ((nlent->pflag & (NL_DUMMY | NL_DOWN | NL_HOLD)) == 0))) && ((localoptions & NOCALL) == 0)) {
|
2003-01-02 16:44:28 +00:00
|
|
|
Syslog('+', "Calling %s (%s, phone %s)", ascfnode(addr,0x1f), nlent->name, forcedphone);
|
2002-07-02 20:00:49 +00:00
|
|
|
IsDoing("Call %s", ascfnode(addr, 0x0f));
|
|
|
|
rc = portopen(addr);
|
|
|
|
|
2003-01-02 16:44:28 +00:00
|
|
|
if ((rc == MBERR_OK) && (forcedphone)) {
|
|
|
|
if ((rc = dialphone(forcedphone))) {
|
2002-07-02 20:00:49 +00:00
|
|
|
Syslog('+', "Dial failed");
|
2003-11-30 14:36:53 +00:00
|
|
|
nodeulock(addr, mypid);
|
2002-07-02 20:00:49 +00:00
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
|
|
|
|
2002-10-20 20:58:55 +00:00
|
|
|
if (rc == MBERR_OK) {
|
2002-07-02 20:00:49 +00:00
|
|
|
if (!inetaddr)
|
|
|
|
nolocalport();
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2002-07-02 20:00:49 +00:00
|
|
|
if (tcp_mode == TCPMODE_IBN)
|
|
|
|
rc = session(addr,nlent,SESSION_MASTER,SESSION_BINKP,NULL);
|
|
|
|
else
|
|
|
|
rc = session(addr,nlent,SESSION_MASTER,SESSION_UNKNOWN,NULL);
|
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2002-07-02 20:00:49 +00:00
|
|
|
IsDoing("Disconnect");
|
|
|
|
if (inetaddr) {
|
|
|
|
closetcp();
|
2001-08-17 05:46:24 +00:00
|
|
|
} else {
|
2002-07-02 20:00:49 +00:00
|
|
|
hangup();
|
|
|
|
localport();
|
|
|
|
closeport();
|
|
|
|
if (strlen(modem.info)) {
|
|
|
|
/*
|
|
|
|
* If mode info string defined, open port again to get
|
|
|
|
* the aftercall information. Mostly used with ISDN.
|
|
|
|
*/
|
|
|
|
portopen(addr);
|
|
|
|
aftercall();
|
|
|
|
closeport();
|
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
2002-07-02 20:00:49 +00:00
|
|
|
} else {
|
|
|
|
IsDoing("NoCall");
|
2003-01-02 16:44:28 +00:00
|
|
|
Syslog('+', "Cannot call %s (%s)", ascfnode(addr,0x1f), MBSE_SS(nlent->name));
|
2002-10-20 20:58:55 +00:00
|
|
|
rc = MBERR_NO_CONNECTION;
|
2002-07-02 20:00:49 +00:00
|
|
|
putstatus(addr, 10, rc);
|
2003-11-30 14:36:53 +00:00
|
|
|
nodeulock(addr, mypid);
|
2001-08-17 05:46:24 +00:00
|
|
|
return rc;
|
2002-07-02 20:00:49 +00:00
|
|
|
}
|
|
|
|
|
2002-10-21 18:29:29 +00:00
|
|
|
if ((rc == MBERR_NOT_ZMH) || (rc == MBERR_SESSION_ERROR)) /* Session error */
|
2002-07-02 20:00:49 +00:00
|
|
|
putstatus(addr, 5, rc);
|
2002-11-22 19:23:59 +00:00
|
|
|
else if ((rc == MBERR_NO_CONNECTION) || (rc == MBERR_UNKNOWN_SESSION) || (rc == MBERR_FTRANSFER))
|
2002-07-02 20:00:49 +00:00
|
|
|
putstatus(addr,1,rc);
|
|
|
|
else
|
|
|
|
putstatus(addr,0,rc);
|
|
|
|
return rc;
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|