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/mbnntp/mbnntp.c

265 lines
6.7 KiB
C
Raw Normal View History

2004-04-11 19:38:51 +00:00
/*****************************************************************************
*
* $Id$
* Purpose ...............: MBSE NNTP Server
*
*****************************************************************************
* Copyright (C) 1997-2004
*
* 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
* Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*****************************************************************************/
#include "../config.h"
#include "../lib/mbselib.h"
#include "../lib/users.h"
#include "../lib/mbsedb.h"
#include "openport.h"
#include "ttyio.h"
2004-04-12 11:50:34 +00:00
#include "auth.h"
2004-04-12 13:01:51 +00:00
#include "commands.h"
2004-04-11 19:38:51 +00:00
#include "mbnntp.h"
2004-04-11 21:35:25 +00:00
time_t t_start;
time_t t_end;
char *envptr = NULL;
2004-04-11 19:38:51 +00:00
struct sockaddr_in peeraddr;
2004-04-12 11:50:34 +00:00
pid_t mypid;
2004-04-11 19:38:51 +00:00
2004-04-11 21:35:25 +00:00
extern char *ttystat[];
2004-04-12 11:50:34 +00:00
extern int authorized;
2004-04-11 21:35:25 +00:00
2004-04-11 19:38:51 +00:00
void die(int onsig)
{
signal(onsig, SIG_IGN);
CloseDupes();
if (onsig) {
if (onsig <= NSIG)
WriteError("Terminated on signal %d (%s)", onsig, SigName[onsig]);
else
WriteError("Terminated with error %d", onsig);
}
t_end = time(NULL);
Syslog(' ', "MBNNTP finished in %s", t_elapsed(t_start, t_end));
if (envptr)
free(envptr);
ExitClient(onsig);
}
int main(int argc, char *argv[])
{
struct passwd *pw;
int i, rc, addrlen = sizeof(struct sockaddr_in);
/*
* The next trick is to supply a fake environment variable
* MBSE_ROOT because this program is started from inetd.
* This will setup the variable so InitConfig() will work.
* The /etc/passwd must point to the correct homedirectory.
*/
pw = getpwuid(geteuid());
if (getenv("MBSE_ROOT") == NULL) {
envptr = xstrcpy((char *)"MBSE_ROOT=");
envptr = xstrcat(envptr, pw->pw_dir);
putenv(envptr);
}
2004-04-12 11:50:34 +00:00
mypid = getpid();
2004-04-11 19:38:51 +00:00
/*
* Read the global configuration data, registrate connection
*/
InitConfig();
InitMsgs();
InitUser();
InitFidonet();
umask(002);
2004-04-12 11:50:34 +00:00
memset(&usrconfig, 0, sizeof(usrconfig));
2004-04-11 19:38:51 +00:00
t_start = time(NULL);
2004-04-11 21:35:25 +00:00
InitClient(pw->pw_name, (char *)"mbnntp", CFG.location, CFG.logfile,
2004-04-11 19:38:51 +00:00
CFG.util_loglevel, CFG.error_log, CFG.mgrlog, CFG.debuglog);
Syslog(' ', "MBNNTP v%s", VERSION);
2004-04-12 11:50:34 +00:00
IsDoing("Loging in");
2004-04-11 19:38:51 +00:00
/*
* Catch all the signals we can, and ignore the rest.
*/
for(i = 0; i < NSIG; i++) {
if ((i == SIGINT) || (i == SIGBUS) || (i == SIGILL) || (i == SIGSEGV) || (i == SIGTERM))
signal(i, (void (*))die);
else if (i == SIGCHLD)
signal(i, SIG_DFL);
else if ((i != SIGKILL) && (i != SIGSTOP))
signal(i, SIG_IGN);
}
if ((rc = rawport()) != 0)
WriteError("Unable to set raw mode");
else {
if (getpeername(0,(struct sockaddr*)&peeraddr,&addrlen) == 0) {
Syslog('s', "TCP connection: len=%d, family=%hd, port=%hu, addr=%s",
addrlen,peeraddr.sin_family, peeraddr.sin_port, inet_ntoa(peeraddr.sin_addr));
Syslog('+', "Incoming connection from %s", inet_ntoa(peeraddr.sin_addr));
2004-04-12 11:50:34 +00:00
send_nntp("200 MBNNTP v%s server ready -- no posting allowed", VERSION);
2004-04-11 21:35:25 +00:00
nntp();
2004-04-11 19:38:51 +00:00
}
}
cookedport();
die(0);
return 0;
}
2004-04-11 21:35:25 +00:00
2004-04-12 11:50:34 +00:00
/*
* Get command from the client.
* return < 0: error
* return >= 0: size of buffer
*/
int get_nntp(char *buf, int max)
{
int c, len;
len = 0;
memset(buf, 0, sizeof(buf));
while (TRUE) {
c = tty_getc(180);
if (c <= 0) {
if (c == -2) {
/*
* Timeout
*/
send_nntp("400 Service discontinued");
}
Syslog('+', "Receiver status %s", ttystat[- c]);
return c;
}
if ((c == '\r') || (c == '\n'))
return len;
else {
buf[len] = c;
len++;
buf[len] = '\0';
}
if (len >= max) {
WriteError("Input buffer full");
return len;
}
}
return 0; /* Not reached */
}
2004-04-11 21:35:25 +00:00
void send_nntp(const char *format, ...)
{
char *out;
va_list va_ptr;
out = calloc(4096, sizeof(char));
va_start(va_ptr, format);
vsprintf(out, format, va_ptr);
va_end(va_ptr);
Syslog('n', "> \"%s\"", printable(out, 0));
PUTSTR(out);
PUTSTR((char *)"\r\n");
free(out);
}
void nntp(void)
{
char buf[4096];
2004-04-12 11:50:34 +00:00
int len;
2004-04-11 21:35:25 +00:00
while (TRUE) {
2004-04-12 11:50:34 +00:00
len = get_nntp(buf, sizeof(buf) -1);
if (len < 0)
return;
if (len == 0)
2004-04-11 21:35:25 +00:00
continue;
/*
* Process received command
*/
Syslog('n', "< \"%s\"", printable(buf, 0));
if (strncasecmp(buf, "QUIT", 4) == 0) {
send_nntp("205 Goodbye\r\n");
return;
2004-04-12 11:50:34 +00:00
} else if (strncasecmp(buf, "AUTHINFO USER", 13) == 0) {
auth_user(buf);
} else if (strncasecmp(buf, "AUTHINFO PASS", 13) == 0) {
auth_pass(buf);
2004-04-11 21:35:25 +00:00
} else if (strncasecmp(buf, "LIST", 4) == 0) {
2004-04-12 11:50:34 +00:00
if (check_auth(buf))
command_list(buf);
2004-04-11 21:35:25 +00:00
} else if (strncasecmp(buf, "IHAVE", 5) == 0) {
send_nntp("435 Article not wanted - do not send it");
} else if (strncasecmp(buf, "NEWGROUPS", 9) == 0) {
send_nntp("235 Warning: NEWGROUPS not implemented, returning empty list");
send_nntp(".");
} else if (strncasecmp(buf, "NEWNEWS", 7) == 0) {
send_nntp("230 Warning: NEWNEWS not implemented, returning empty list");
send_nntp(".");
} else if (strncasecmp(buf, "SLAVE", 5) == 0) {
2004-04-12 11:50:34 +00:00
send_nntp("202 Slave status noted");
} else if (strncasecmp(buf, "MODE READER", 11) == 0) {
if (authorized)
send_nntp("200 Server ready, posting allowed");
else
send_nntp("201 Server ready, no posting allowed");
2004-04-11 21:35:25 +00:00
} else if (strncasecmp(buf, "HELP", 4) == 0) {
send_nntp("100 Help text follows");
send_nntp("Recognized commands:");
2004-04-12 11:50:34 +00:00
send_nntp("");
send_nntp("AUTHINFO");
send_nntp("IHAVE (not implemented, messages are always rejected)");
send_nntp("LIST");
send_nntp("NEWGROUPS (not implemented, always returns an empty list)");
send_nntp("NEWNEWS (not implemented, always returns an empty list)");
2004-04-11 21:35:25 +00:00
send_nntp("QUIT");
2004-04-12 11:50:34 +00:00
send_nntp("SLAVE (has no effect)");
2004-04-11 21:35:25 +00:00
send_nntp("");
send_nntp("MBNNTP supports most of RFC-977 and also has support for AUTHINFO and");
send_nntp("limited XOVER support (RFC-2980)");
send_nntp(".");
} else {
send_nntp("500 Unknown command");
}
}
}