This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbcico/ftsc.c

511 lines
11 KiB
C
Raw Normal View History

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
*
*****************************************************************************
2004-01-25 10:57:35 +00:00
* Copyright (C) 1997-2004
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"
#include "../lib/nodelist.h"
2001-08-17 05:46:24 +00:00
#include "session.h"
#include "ttyio.h"
#include "statetbl.h"
#include "config.h"
#include "ftsc.h"
#include "rdoptions.h"
#include "recvbark.h"
#include "filelist.h"
#include "sendbark.h"
#include "respfreq.h"
#include "xmrecv.h"
#include "xmsend.h"
2003-08-23 14:57:51 +00:00
#include "inbound.h"
2001-08-17 05:46:24 +00:00
extern int master;
extern int made_request;
static int rxftsc(void);
static int txftsc(void);
static int recvfiles(void);
static file_list *tosend;
extern int Loaded;
extern pid_t mypid;
2003-08-24 16:27:57 +00:00
extern char *tempinbound;
2001-08-17 05:46:24 +00:00
int rx_ftsc(void)
{
2002-10-20 20:58:55 +00:00
int rc;
IsDoing("FTS-0001 inbound");
session_flags |= SESSION_BARK;
if ((rc = rxftsc())) {
WriteError("Session failed: rc=%d",rc);
PUTCHAR(CAN);
PUTCHAR(CAN);
PUTCHAR(CAN);
} else
Syslog('+', "FTS-0001 session completed");
tidy_filelist(tosend, (rc == 0));
tosend = NULL;
if (rc)
return MBERR_FTSC;
else
return 0;
2001-08-17 05:46:24 +00:00
}
int tx_ftsc(void)
{
2002-10-20 20:58:55 +00:00
int rc;
IsDoing("FTS-0001 to %s", ascfnode(remote->addr, 0x0f));
if ((rc = txftsc())) {
WriteError("Session failed: rc=%d",rc);
PUTCHAR(CAN);
PUTCHAR(CAN);
PUTCHAR(CAN);
} else
Syslog('+', "FTS-0001 session completed");
tidy_filelist(tosend, (rc == 0));
tosend = NULL;
if (rc)
return MBERR_FTSC;
else
return 0;
2001-08-17 05:46:24 +00:00
}
SM_DECL(txftsc,(char *)"txftsc")
SM_STATES
2004-01-25 10:57:35 +00:00
wait_command,
recv_mail,
send_req,
recv_req
2001-08-17 05:46:24 +00:00
SM_NAMES
2004-01-25 10:57:35 +00:00
(char *)"wait_command",
(char *)"recv_mail",
(char *)"send_req",
(char *)"recv_req"
2001-08-17 05:46:24 +00:00
SM_EDECL
2004-01-25 10:57:35 +00:00
int c,rc, mailsent = FALSE, mailrcvd = FALSE;
char *nonhold_mail;
2001-08-17 05:46:24 +00:00
2004-01-25 10:57:35 +00:00
nonhold_mail = (char *)ALL_MAIL;
tosend = create_filelist(remote,nonhold_mail,2);
2001-08-17 05:46:24 +00:00
2004-01-25 10:57:35 +00:00
if ((rc = xmsndfiles(tosend)))
return rc;
mailsent = TRUE;
2001-08-17 05:46:24 +00:00
SM_START(wait_command)
SM_STATE(wait_command)
2004-01-25 10:57:35 +00:00
c = GETCHAR(30);
if (c == TIMEOUT) {
Syslog('+', "timeout waiting for remote action, try receive");
SM_PROCEED(recv_mail);
} else if (c < 0) {
if (mailrcvd && mailsent) {
/*
* Some systems hangup after sending mail, so if we did
* send and receive mail we consider the session OK.
*/
Syslog('+', "Lost carrier, FTS-0001 session looks complete");
SM_SUCCESS;
} else {
Syslog('+', "got error waiting for TSYNC: received %d",c);
SM_ERROR;
2001-08-17 05:46:24 +00:00
}
2004-01-25 10:57:35 +00:00
} else switch (c) {
case TSYNC: SM_PROCEED(recv_mail);
break;
case SYN: SM_PROCEED(recv_req);
break;
case ENQ: SM_PROCEED(send_req);
break;
case 'C':
case NAK: PUTCHAR(EOT);
SM_PROCEED(wait_command);
break;
case CAN: SM_SUCCESS; /* this is not in BT */
break;
default: Syslog('s', "got '%s' waiting command", printablec(c));
PUTCHAR(SUB);
SM_PROCEED(wait_command);
break;
}
2001-08-17 05:46:24 +00:00
SM_STATE(recv_mail)
2004-01-25 10:57:35 +00:00
if (recvfiles()) {
SM_ERROR;
} else {
mailrcvd = TRUE;
SM_PROCEED(wait_command);
}
2001-08-17 05:46:24 +00:00
SM_STATE(send_req)
2004-01-25 10:57:35 +00:00
if (sendbark()) {
SM_ERROR;
} else {
SM_SUCCESS;
}
2001-08-17 05:46:24 +00:00
SM_STATE(recv_req)
2004-01-25 10:57:35 +00:00
if (recvbark()) {
SM_ERROR;
} else {
SM_PROCEED(wait_command);
}
2001-08-17 05:46:24 +00:00
SM_END
SM_RETURN
SM_DECL(rxftsc,(char *)"rxftsc")
SM_STATES
2004-01-25 10:57:35 +00:00
recv_mail,
send_mail,
send_req,
recv_req
2001-08-17 05:46:24 +00:00
SM_NAMES
2004-01-25 10:57:35 +00:00
(char *)"recv_mail",
(char *)"send_mail",
(char *)"send_req",
(char *)"recv_req"
2001-08-17 05:46:24 +00:00
SM_EDECL
2004-01-25 10:57:35 +00:00
int c, count = 0, didwazoo = FALSE, sentmail = FALSE, rcvdmail = FALSE;
file_list *request = NULL, *tmpfl;
2001-08-17 05:46:24 +00:00
SM_START(recv_mail)
SM_STATE(recv_mail)
2004-01-25 10:57:35 +00:00
if (recvfiles()) {
SM_ERROR;
} else {
rcvdmail = TRUE;
SM_PROCEED(send_mail);
}
2001-08-17 05:46:24 +00:00
SM_STATE(send_mail)
2004-01-25 10:57:35 +00:00
Syslog('x', "rxftsc SEND_MAIL count=%d", count);
if (count++ > 45) {
SM_ERROR;
}
2001-08-17 05:46:24 +00:00
2004-01-25 10:57:35 +00:00
/*
* If we got a wazoo request, add files now.
*/
request = respond_wazoo();
if (request != NULL) {
didwazoo = TRUE;
tmpfl = tosend;
tosend = request;
for (; request->next; request = request->next);
request->next = tmpfl;
request = NULL;
}
2001-08-17 05:46:24 +00:00
2004-01-25 10:57:35 +00:00
if (tosend == NULL) {
count = 0;
SM_PROCEED(send_req);
}
2001-08-17 05:46:24 +00:00
2004-01-25 10:57:35 +00:00
PUTCHAR(TSYNC);
c = GETCHAR(1);
Syslog('x', "Got char 0x%02x", c);
if (c == TIMEOUT) {
Syslog('x', " timeout");
SM_PROCEED(send_mail);
} else if (c < 0) {
Syslog('+', "got error waiting for NAK: received %d",c);
SM_ERROR;
} else switch (c) {
case 'C':
case NAK: if (xmsndfiles(tosend)) {
SM_ERROR;
} else {
sentmail = TRUE;
count = 0;
SM_PROCEED(send_req);
}
break;
case CAN: Syslog('+', "Remote refused to pickup mail");
SM_SUCCESS;
break;
case EOT: PUTCHAR(ACK);
SM_PROCEED(send_mail);
break;
default: Syslog('s', "Got '%s' waiting NAK", printablec(c));
SM_PROCEED(send_mail);
break;
}
2001-08-17 05:46:24 +00:00
SM_STATE(send_req)
2004-01-25 10:57:35 +00:00
Syslog('x', "rxftsc SEND_REQ count=%d", count);
2001-08-17 05:46:24 +00:00
2004-01-25 10:57:35 +00:00
if (didwazoo) {
SM_SUCCESS;
}
2001-08-17 05:46:24 +00:00
2004-01-25 10:57:35 +00:00
if (count > 15) {
SM_ERROR;
}
2001-08-17 05:46:24 +00:00
2004-01-25 10:57:35 +00:00
if (!made_request) {
SM_PROCEED(recv_req);
}
2001-08-17 05:46:24 +00:00
2004-01-25 10:57:35 +00:00
PUTCHAR(SYN);
c = GETCHAR(5);
Syslog('x', "Got char 0x%02x", c);
count++;
if (c == TIMEOUT) {
Syslog('x', " timeout");
SM_PROCEED(send_req);
} else if (c < 0) {
Syslog('+', "got error waiting for ENQ: received %d",c);
SM_ERROR;
} else switch (c) {
case ENQ: if (sendbark()) {
SM_ERROR;
} else {
SM_PROCEED(recv_req);
}
break;
case CAN: Syslog('+', "Remote refused to accept request");
SM_PROCEED(recv_req);
break;
case 'C':
case NAK: PUTCHAR(EOT);
SM_PROCEED(send_req);
break;
case SUB: SM_PROCEED(send_req);
break;
default: Syslog('s', "got '%s' waiting ENQ", printablec(c));
SM_PROCEED(send_req);
break;
}
2001-08-17 05:46:24 +00:00
SM_STATE(recv_req)
2004-01-25 10:57:35 +00:00
if (recvbark()) {
if (sentmail && rcvdmail) {
Syslog('+', "Consider session OK");
SM_SUCCESS;
2001-08-17 05:46:24 +00:00
} else {
2004-01-25 10:57:35 +00:00
SM_ERROR;
2001-08-17 05:46:24 +00:00
}
2004-01-25 10:57:35 +00:00
} else {
SM_SUCCESS;
}
2001-08-17 05:46:24 +00:00
SM_END
SM_RETURN
SM_DECL(recvfiles,(char *)"recvfiles")
SM_STATES
recv_packet,
scan_packet,
recv_file
2001-08-17 05:46:24 +00:00
SM_NAMES
(char *)"recv_packet",
(char *)"scan_packet",
(char *)"recv_file"
2001-08-17 05:46:24 +00:00
SM_EDECL
2003-08-24 16:27:57 +00:00
int rc = 0, ghc = 0;
char recvpktname[16];
2003-08-24 16:27:57 +00:00
char *fpath, *tpath;
FILE *fp;
faddr f, t;
fa_list **tmpl;
2001-08-17 05:46:24 +00:00
SM_START(recv_packet)
Loaded = FALSE;
2001-08-17 05:46:24 +00:00
SM_STATE(recv_packet)
sprintf(recvpktname,"%08lx.pkt",(unsigned long)sequencer());
if ((rc = xmrecv(recvpktname)) == 1) {
SM_SUCCESS;
} else if (rc == 0) {
if (master) {
SM_PROCEED(recv_file);
2001-08-17 05:46:24 +00:00
} else {
SM_PROCEED(scan_packet);
2001-08-17 05:46:24 +00:00
}
} else {
SM_ERROR;
}
2001-08-17 05:46:24 +00:00
SM_STATE(scan_packet)
2003-08-23 14:57:51 +00:00
/*
* We cannot use the temp inbound per node yet, FTS-0001 does it's
* handshake by sending us a .pkt file, we store this in the old
* style ../tmp/ dir in the unprotected inbound.
*/
2003-08-23 15:55:45 +00:00
fpath = xstrcpy(CFG.inbound);
fpath = xstrcat(fpath,(char *)"/tmp/");
fpath = xstrcat(fpath,recvpktname);
2003-08-23 14:57:51 +00:00
mkdirs(fpath, 0700);
fp = fopen(fpath,"r");
if (fp == NULL) {
WriteError("$cannot open received packet");
2003-08-24 16:27:57 +00:00
free(fpath);
SM_ERROR;
}
2003-08-24 16:27:57 +00:00
switch ((ghc = getheader(&f , &t, fp, recvpktname, TRUE))) {
case 3: Syslog('+', "remote mistook us for %s",ascfnode(&t,0x1f));
fclose(fp);
2003-08-24 16:27:57 +00:00
Syslog('s', "Unlink %s rc=%d", fpath, unlink(fpath));
free(fpath);
2001-08-17 05:46:24 +00:00
SM_ERROR;
2003-08-24 16:27:57 +00:00
case 0:
2004-01-25 10:57:35 +00:00
case 5: fclose(fp);
if (nodelock(&f, mypid)) {
/*
* Lock failed, FTSC-0001 allowes only one aka, so abort session.
*/
Syslog('+', "address : %s is locked, abort", ascfnode(&f, 0x1f));
Syslog('s', "Unlink %s rc=%d", fpath, unlink(fpath));
free(fpath);
SM_ERROR;
}
Syslog('+', "accepting session");
2003-08-24 16:27:57 +00:00
for (tmpl = &remote; *tmpl; tmpl = &((*tmpl)->next));
(*tmpl)=(fa_list*)malloc(sizeof(fa_list));
(*tmpl)->next=NULL;
(*tmpl)->addr=(faddr*)malloc(sizeof(faddr));
(*tmpl)->addr->zone=f.zone;
(*tmpl)->addr->net=f.net;
(*tmpl)->addr->node=f.node;
(*tmpl)->addr->point=f.point;
(*tmpl)->addr->name=NULL;
(*tmpl)->addr->domain=NULL;
2004-01-25 10:57:35 +00:00
Syslog('+', "address : %s",ascfnode((*tmpl)->addr,0x1f));
/*
* With the loaded flag we prevent removing the noderecord
* when the remote presents us an address we don't know about.
*/
if (!Loaded) {
if (noderecord((*tmpl)->addr))
Loaded = TRUE;
}
history.aka.zone = remote->addr->zone;
history.aka.net = remote->addr->net;
history.aka.node = remote->addr->node;
history.aka.point = remote->addr->point;
if (remote->addr->domain && strlen(remote->addr->domain))
sprintf(history.aka.domain, "%s", remote->addr->domain);
2001-08-17 05:46:24 +00:00
if (((nlent=getnlent(remote->addr))) && (nlent->pflag != NL_DUMMY)) {
Syslog('+', "remote is a listed system");
strncpy(history.system_name, nlent->name, 35);
strncpy(history.location, nlent->location, 35);
strncpy(history.sysop, nlent->sysop, 35);
UserCity(mypid, nlent->sysop, nlent->location);
} else {
sprintf(history.system_name, "Unknown");
sprintf(history.location, "Somewhere");
}
2001-08-17 05:46:24 +00:00
if (nlent)
rdoptions(Loaded);
2003-08-24 16:27:57 +00:00
if (ghc == 0) {
Syslog('+', "Password correct, protected FTS-0001 session");
2003-08-24 16:27:57 +00:00
inbound_open(remote->addr, TRUE);
} else {
Syslog('+', "Unsecure FTS-0001 session");
inbound_open(remote->addr, FALSE);
}
2003-08-24 16:27:57 +00:00
/*
* Move the packet to the temp inbound so the we can later
* move it to the final inbound.
*/
tpath = xstrcpy(tempinbound);
tpath = xstrcat(tpath,(char *)"/");
tpath = xstrcat(tpath,recvpktname);
Syslog('s', "Move %s to %s rc=%d", fpath, tpath, file_mv(fpath, tpath));
free(fpath);
free(tpath);
tosend = create_filelist(remote,(char *)ALL_MAIL,1);
if (rc == 0) {
SM_PROCEED(recv_file);
} else {
SM_SUCCESS;
}
default:
Syslog('+', "received bad packet apparently from",ascfnode(&f,0x1f));
fclose(fp);
2003-08-24 16:27:57 +00:00
Syslog('s', "Unlink %s rc=%d", fpath, unlink(fpath));
free(fpath);
SM_ERROR;
}
2001-08-17 05:46:24 +00:00
SM_STATE(recv_file)
switch (xmrecv(NULL)) {
case 0: SM_PROCEED(recv_file);
break;
case 1: SM_SUCCESS;
break;
default: SM_ERROR;
break;
}
2001-08-17 05:46:24 +00:00
SM_END
SM_RETURN