Added clencode and cldecode to safe escape messages with clients

This commit is contained in:
Michiel Broek 2005-10-17 14:36:12 +00:00
parent 6cf5ac3431
commit ce6f83241b
9 changed files with 273 additions and 158 deletions

View File

@ -20,6 +20,8 @@ v0.81.2 14-Oct-2005.
mbtask: mbtask:
Some time_t/int conversions. Some time_t/int conversions.
Added clencode and cldecode to safe escape messages with
clients.
mbsebbs: mbsebbs:
Accepts connections via ssh. Accepts connections via ssh.

View File

@ -530,7 +530,7 @@ char *clencode(char *s)
return s; return s;
} }
for (p = s, q = buf; *p != '\0';) { for (p = s, q = buf; *p != '\0';) {
if ((! isascii(*p)) || (*p == ',')) { if ((! isascii(*p)) || (*p == ',') || (*p == ';')) {
*q++ = '\\'; *q++ = '\\';
*q++ = Base16Code[(*p >> 4) & 0x0f]; *q++ = Base16Code[(*p >> 4) & 0x0f];
*q++ = Base16Code[*p & 0x0f]; *q++ = Base16Code[*p & 0x0f];
@ -570,6 +570,8 @@ char *cldecode(char *s)
*q++ = *p; *q++ = *p;
} }
} }
*q = '\0';
return s; return s;
} }

View File

@ -36,8 +36,8 @@
#include "mutil.h" #include "mutil.h"
int lines = 24; int cols = 80;
int columns = 80; int rows = 24;
extern int bbs_free; extern int bbs_free;
extern int ttyfd; extern int ttyfd;
@ -80,7 +80,7 @@ static void die(int onsig)
void ShowSysinfo(void) void ShowSysinfo(void)
{ {
int ch; int ch;
char buf[128], *cnt; char buf[128], *cnt, *lc;
clr_index(); clr_index();
set_color(WHITE, BLACK); set_color(WHITE, BLACK);
@ -93,7 +93,7 @@ void ShowSysinfo(void)
mbse_mvprintw(11, 6, "5. Local calls"); mbse_mvprintw(11, 6, "5. Local calls");
mbse_mvprintw(12, 6, "6. Date started"); mbse_mvprintw(12, 6, "6. Date started");
mbse_mvprintw(13, 6, "7. Last caller"); mbse_mvprintw(13, 6, "7. Last caller");
center_addstr(lines - 3, (char *)"Press any key"); center_addstr(rows - 3, (char *)"Press any key");
IsDoing("View System Info"); IsDoing("View System Info");
do { do {
@ -110,11 +110,13 @@ void ShowSysinfo(void)
mbse_mvprintw(10,26, "%s", strtok(NULL, ",")); mbse_mvprintw(10,26, "%s", strtok(NULL, ","));
mbse_mvprintw(11,26, "%s", strtok(NULL, ",")); mbse_mvprintw(11,26, "%s", strtok(NULL, ","));
mbse_mvprintw(12,26, "%s", strtok(NULL, ",")); mbse_mvprintw(12,26, "%s", strtok(NULL, ","));
mbse_mvprintw(13,26, "%s", strtok(NULL, ";")); lc = xstrcpy(cldecode(strtok(NULL, ";")));
mbse_mvprintw(13,26, "%s", lc);
free(lc);
fflush(stdout); fflush(stdout);
} }
} }
ch = testkey(lines - 3, columns / 2 + 8); ch = testkey(rows - 3, cols / 2 + 8);
} while (ch == '\0'); } while (ch == '\0');
} }
@ -131,9 +133,9 @@ void ShowLastcaller(void)
set_color(YELLOW, RED); set_color(YELLOW, RED);
mbse_mvprintw( 6, 1, "Nr Username Location Level Device Time Mins Calls Speed Actions "); mbse_mvprintw( 6, 1, "Nr Username Location Level Device Time Mins Calls Speed Actions ");
set_color(CYAN, BLACK); set_color(CYAN, BLACK);
center_addstr(lines - 1, (char *)"Press any key"); center_addstr(rows - 1, (char *)"Press any key");
IsDoing("View Lastcallers"); IsDoing("View Lastcallers");
maxrows = lines - 10; maxrows = rows - 10;
do { do {
show_date(LIGHTGRAY, BLACK, 0, 0); show_date(LIGHTGRAY, BLACK, 0, 0);
@ -161,8 +163,8 @@ void ShowLastcaller(void)
if (strncmp(buf, "100:9,", 6) == 0) { if (strncmp(buf, "100:9,", 6) == 0) {
cnt = strtok(buf, ","); cnt = strtok(buf, ",");
mbse_mvprintw(y, 1, "%2d", i); mbse_mvprintw(y, 1, "%2d", i);
mbse_mvprintw(y, 4, "%s", strtok(NULL, ",")); mbse_mvprintw(y, 4, "%s", cldecode(strtok(NULL, ",")));
mbse_mvprintw(y,19, "%s", strtok(NULL, ",")); mbse_mvprintw(y,19, "%s", cldecode(strtok(NULL, ",")));
mbse_mvprintw(y,32, "%s", strtok(NULL, ",")); mbse_mvprintw(y,32, "%s", strtok(NULL, ","));
mbse_mvprintw(y,38, "%s", strtok(NULL, ",")); mbse_mvprintw(y,38, "%s", strtok(NULL, ","));
mbse_mvprintw(y,45, "%s", strtok(NULL, ",")); mbse_mvprintw(y,45, "%s", strtok(NULL, ","));
@ -175,7 +177,7 @@ void ShowLastcaller(void)
} }
} }
} }
ch = testkey(lines - 1, columns / 2 + 8); ch = testkey(rows - 1, cols / 2 + 8);
} while (ch == '\0'); } while (ch == '\0');
} }
@ -193,7 +195,7 @@ void system_moni(void)
set_color(YELLOW, RED); set_color(YELLOW, RED);
mbse_mvprintw( 7, 1, "Pid tty user program city doing time "); mbse_mvprintw( 7, 1, "Pid tty user program city doing time ");
set_color(CYAN, BLACK); set_color(CYAN, BLACK);
center_addstr(lines - 1, (char *)"Press any key"); center_addstr(rows - 1, (char *)"Press any key");
IsDoing("System Monitor"); IsDoing("System Monitor");
do { do {
@ -202,7 +204,7 @@ void system_moni(void)
eof = 0; eof = 0;
set_color(LIGHTGRAY, BLACK); set_color(LIGHTGRAY, BLACK);
for (y = 8; y <= lines - 2; y++) { for (y = 8; y <= rows - 2; y++) {
if (y == 8) if (y == 8)
snprintf(buf, 128, "GMON:1,1;"); snprintf(buf, 128, "GMON:1,1;");
else else
@ -221,9 +223,9 @@ void system_moni(void)
cnt = strtok(buf, ","); cnt = strtok(buf, ",");
mbse_mvprintw(y, 1, (char *)"%.5s", strtok(NULL, ",")); mbse_mvprintw(y, 1, (char *)"%.5s", strtok(NULL, ","));
mbse_mvprintw(y, 7, (char *)"%.6s", strtok(NULL, ",")); mbse_mvprintw(y, 7, (char *)"%.6s", strtok(NULL, ","));
mbse_mvprintw(y,14, (char *)"%.8s", strtok(NULL, ",")); mbse_mvprintw(y,14, (char *)"%.8s", cldecode(strtok(NULL, ",")));
mbse_mvprintw(y,23, (char *)"%.8s", strtok(NULL, ",")); mbse_mvprintw(y,23, (char *)"%.8s", cldecode(strtok(NULL, ",")));
mbse_mvprintw(y,32, (char *)"%.15s", strtok(NULL, ",")); mbse_mvprintw(y,32, (char *)"%.15s", cldecode(strtok(NULL, ",")));
mbse_mvprintw(y,48, (char *)"%.26s", strtok(NULL, ",")); mbse_mvprintw(y,48, (char *)"%.26s", strtok(NULL, ","));
start = atoi(strtok(NULL, ";")); start = atoi(strtok(NULL, ";"));
now = time(NULL); now = time(NULL);
@ -239,7 +241,7 @@ void system_moni(void)
} }
} /* for () */ } /* for () */
ch = testkey(lines - 1, columns / 2 + 8); ch = testkey(rows - 1, cols / 2 + 8);
} while (ch == '\0'); } while (ch == '\0');
} }
@ -277,7 +279,7 @@ void system_stat(void)
mbse_mvprintw(16,59, "IBC users"); mbse_mvprintw(16,59, "IBC users");
mbse_mvprintw(17, 6, "Communication errors"); mbse_mvprintw(17, 6, "Communication errors");
mbse_mvprintw(19, 6, "Next sequence number"); mbse_mvprintw(19, 6, "Next sequence number");
mbse_mvprintw(lines -3,59, "Press any key"); mbse_mvprintw(rows -3,59, "Press any key");
IsDoing("System Statistics"); IsDoing("System Statistics");
do { do {
@ -326,7 +328,7 @@ void system_stat(void)
break; break;
} }
ch = testkey(lines -3,73); ch = testkey(rows -3,73);
} while (ch == '\0'); } while (ch == '\0');
} }
@ -344,7 +346,7 @@ void disk_stat(void)
set_color(YELLOW, RED); set_color(YELLOW, RED);
mbse_mvprintw( 7, 1, " Size MB Free MB Used FS-Type St Mountpoint "); mbse_mvprintw( 7, 1, " Size MB Free MB Used FS-Type St Mountpoint ");
set_color(CYAN, BLACK); set_color(CYAN, BLACK);
mbse_mvprintw(lines - 2, 6, "Press any key"); mbse_mvprintw(rows - 2, 6, "Press any key");
IsDoing("Filesystem Usage"); IsDoing("Filesystem Usage");
for (i = 0; i < 10; i++) for (i = 0; i < 10; i++)
last[i] = 0; last[i] = 0;
@ -400,7 +402,7 @@ void disk_stat(void)
} }
} }
ch = testkey(lines - 2, 20); ch = testkey(rows - 2, 20);
} while (ch == '\0'); } while (ch == '\0');
} }
@ -461,11 +463,11 @@ void soft_info(void)
set_color(LIGHTCYAN, BLACK); set_color(LIGHTCYAN, BLACK);
center_addstr(14, (char *)"http://www.mbse.dds.nl or 2:280/2802"); center_addstr(14, (char *)"http://www.mbse.dds.nl or 2:280/2802");
set_color(LIGHTGREEN, BLACK); set_color(LIGHTGREEN, BLACK);
center_addstr(lines -7, (char *)"This is free software; released under the terms of the GNU General"); center_addstr(rows -7, (char *)"This is free software; released under the terms of the GNU General");
center_addstr(lines -6, (char *)"Public License as published by the Free Software Foundation."); center_addstr(rows -6, (char *)"Public License as published by the Free Software Foundation.");
set_color(CYAN, BLACK); set_color(CYAN, BLACK);
center_addstr(lines -4, (char *)"Press any key"); center_addstr(rows -4, (char *)"Press any key");
readkey(lines - 4, columns / 2 + 8, LIGHTGRAY, BLACK); readkey(rows - 4, cols / 2 + 8, LIGHTGRAY, BLACK);
} }
@ -473,11 +475,13 @@ void soft_info(void)
/* /*
* Colorize the chat window * Colorize the chat window
*/ */
void Showline(int y, int x, char *msg) void Showline(int y, int x, char *msgin)
{ {
int i; int i;
char *msg;
if (strlen(msg)) { if (strlen(msgin)) {
msg = xstrcpy(cldecode(msgin));
if (msg[0] == '<') { if (msg[0] == '<') {
mbse_locate(y, x); mbse_locate(y, x);
mbse_colour(LIGHTCYAN, BLACK); mbse_colour(LIGHTCYAN, BLACK);
@ -502,6 +506,7 @@ void Showline(int y, int x, char *msg)
mbse_colour(GREEN, BLACK); mbse_colour(GREEN, BLACK);
mbse_mvprintw(y, x, msg); mbse_mvprintw(y, x, msg);
} }
free(msg);
} }
} }
@ -546,7 +551,7 @@ void Chat(int sysop)
static char buf[200]; static char buf[200];
clr_index(); clr_index();
rsize = lines - 7; rsize = rows - 7;
rpointer = 0; rpointer = 0;
snprintf(buf, 200, "CCON,4,%d,%s,%s,%s;", mypid, CFG.sysop_name, CFG.sysop, sysop ? "1":"0"); snprintf(buf, 200, "CCON,4,%d,%s,%s,%s;", mypid, CFG.sysop_name, CFG.sysop, sysop ? "1":"0");
@ -559,19 +564,19 @@ void Chat(int sysop)
mbse_mvprintw(4, 1, (char *)"The chatserver is not configured in /etc/services"); mbse_mvprintw(4, 1, (char *)"The chatserver is not configured in /etc/services");
working(2, 0, 0); working(2, 0, 0);
working(0, 0, 0); working(0, 0, 0);
center_addstr(lines -4, (char *)"Press any key"); center_addstr(rows -4, (char *)"Press any key");
readkey(lines - 4, columns / 2 + 8, LIGHTGRAY, BLACK); readkey(rows - 4, cols / 2 + 8, LIGHTGRAY, BLACK);
return; return;
} }
} }
mbse_locate(lines - 2, 1); mbse_locate(rows - 2, 1);
set_color(WHITE, BLUE); set_color(WHITE, BLUE);
clrtoeol(); clrtoeol();
mbse_mvprintw(lines - 2, 2, "Chat, type \"/EXIT\" to exit"); mbse_mvprintw(rows - 2, 2, "Chat, type \"/EXIT\" to exit");
set_color(WHITE, BLACK); set_color(WHITE, BLACK);
mbse_mvprintw(lines - 1, 1, ">"); mbse_mvprintw(rows - 1, 1, ">");
memset(&sbuf, 0, sizeof(sbuf)); memset(&sbuf, 0, sizeof(sbuf));
memset(&rbuf, 0, sizeof(rbuf)); memset(&rbuf, 0, sizeof(rbuf));
@ -631,7 +636,7 @@ void Chat(int sysop)
/* /*
* Check for a pressed key, if so then process it * Check for a pressed key, if so then process it
*/ */
ch = testkey(lines -1, curpos + 2); ch = testkey(rows -1, curpos + 2);
if (isprint(ch)) { if (isprint(ch)) {
set_color(CYAN, BLACK); set_color(CYAN, BLACK);
if (curpos < 77) { if (curpos < 77) {
@ -673,10 +678,10 @@ void Chat(int sysop)
} }
curpos = 0; curpos = 0;
memset(&sbuf, 0, sizeof(sbuf)); memset(&sbuf, 0, sizeof(sbuf));
mbse_locate(lines - 1, 2); mbse_locate(rows - 1, 2);
clrtoeol(); clrtoeol();
set_color(WHITE, BLACK); set_color(WHITE, BLACK);
mbse_mvprintw(lines - 1, 1, ">"); mbse_mvprintw(rows - 1, 1, ">");
} }
} }
@ -728,9 +733,8 @@ void Chat(int sysop)
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
struct passwd *pw; struct passwd *pw;
struct winsize ws;
char buf[128]; char buf[128];
int rc;
/* /*
* Find out who is on the keyboard or automated the keyboard. * Find out who is on the keyboard or automated the keyboard.
@ -767,21 +771,14 @@ int main(int argc, char *argv[])
signal(SIGTERM,(void (*))die); signal(SIGTERM,(void (*))die);
signal(SIGKILL,(void (*))die); signal(SIGKILL,(void (*))die);
/* if (ioctl(1, TIOCGWINSZ, &ws) != -1 && (ws.ws_col > 0) && (ws.ws_row > 0)) {
* Find out if the environment variables LINES and COLUMNS are present, rows = ws.ws_row;
* if so, then use these for screen dimensions. if (rows < 24) {
*/ Syslog('!', "Warning, only %d screen rows, forcing to 24", rows);
if (getenv("LINES")) { rows = 24;
rc = atoi(getenv("LINES")); }
if (rc >= 24)
lines = rc;
} }
if (getenv("COLUMNS")) { Syslog('+', "Screen size set to %dx%d", cols, rows);
rc = atoi(getenv("COLUMNS"));
if (rc >= 80)
columns = rc;
}
Syslog('-', "Screen size set to %dx%d", columns, lines);
if (lockprogram((char *)"mbmon")) { if (lockprogram((char *)"mbmon")) {
printf("\n\7Another mbmon is already running, abort.\n\n"); printf("\n\7Another mbmon is already running, abort.\n\n");

View File

@ -33,7 +33,7 @@
#include "mutil.h" #include "mutil.h"
extern int lines, columns; extern int rows, cols;
extern int ttyfd; extern int ttyfd;
int bbs_free; int bbs_free;
@ -305,10 +305,10 @@ int select_menu(int max)
* Loop forever until it's right. * Loop forever until it's right.
*/ */
for (;;) { for (;;) {
mbse_mvprintw(lines - 2, 6, "Enter your choice >"); mbse_mvprintw(rows - 2, 6, "Enter your choice >");
menu = (char *)"-"; menu = (char *)"-";
menu = edit_field(lines - 2, 26, 3, '9', menu); menu = edit_field(rows - 2, 26, 3, '9', menu);
mbse_locate(lines -2, 6); mbse_locate(rows - 2, 6);
clrtoeol(); clrtoeol();
if (strncmp(menu, "-", 1) == 0) if (strncmp(menu, "-", 1) == 0)
@ -330,7 +330,7 @@ void clrtoeol()
int i; int i;
printf("\r"); printf("\r");
for (i = 0; i < columns; i++) for (i = 0; i < cols; i++)
putchar(' '); putchar(' ');
printf("\r"); printf("\r");
fflush(stdout); fflush(stdout);
@ -382,10 +382,10 @@ void show_date(int fg, int bg, int y, int x)
set_color(LIGHTGREEN, BLUE); set_color(LIGHTGREEN, BLUE);
p = ctime(&now); p = ctime(&now);
Striplf(p); Striplf(p);
mbse_mvprintw(1, columns - 36, (char *)"%s TZUTC %s", p, gmtoffset(now)); mbse_mvprintw(1, cols - 36, (char *)"%s TZUTC %s", p, gmtoffset(now));
p = asctime(gmtime(&now)); p = asctime(gmtime(&now));
Striplf(p); Striplf(p);
mbse_mvprintw(2, columns - 36, (char *)"%s UTC", p); mbse_mvprintw(2, cols - 36, (char *)"%s UTC", p);
/* /*
* Indicator if bbs is free * Indicator if bbs is free
@ -395,15 +395,15 @@ void show_date(int fg, int bg, int y, int x)
strcpy(buf, SockR("SBBS:0;")); strcpy(buf, SockR("SBBS:0;"));
if (strncmp(buf, "100:2,1", 7) == 0) { if (strncmp(buf, "100:2,1", 7) == 0) {
set_color(WHITE, RED); set_color(WHITE, RED);
mbse_mvprintw(2,columns - 6, (char *)" Down "); mbse_mvprintw(2,cols - 6, (char *)" Down ");
} else { } else {
set_color(WHITE, BLUE); set_color(WHITE, BLUE);
mbse_mvprintw(2,columns - 6, (char *)" Free "); mbse_mvprintw(2,cols - 6, (char *)" Free ");
} }
bbs_free = TRUE; bbs_free = TRUE;
} else { } else {
set_color(WHITE, RED); set_color(WHITE, RED);
mbse_mvprintw(2,columns - 6, (char *)" Busy "); mbse_mvprintw(2,cols - 6, (char *)" Busy ");
bbs_free = FALSE; bbs_free = FALSE;
} }
@ -447,7 +447,7 @@ void show_date(int fg, int bg, int y, int x)
void center_addstr(int y, char *s) void center_addstr(int y, char *s)
{ {
mbse_mvprintw(y, (columns / 2) - (strlen(s) / 2), s); mbse_mvprintw(y, (cols / 2) - (strlen(s) / 2), s);
} }
@ -459,18 +459,18 @@ void screen_start(char *name)
{ {
int i; int i;
mbse_TermInit(1, columns, lines); mbse_TermInit(1, cols, rows);
/* /*
* Overwrite screen the first time, if user had it black on white * Overwrite screen the first time, if user had it black on white
* it will change to white on black. clear() won't do the trick. * it will change to white on black. clear() won't do the trick.
*/ */
set_color(LIGHTGRAY, BLUE); set_color(LIGHTGRAY, BLUE);
mbse_locate(1, 1); mbse_locate(1, 1);
for (i = 0; i < lines; i++) { for (i = 0; i < rows; i++) {
if (i == 3) if (i == 3)
mbse_colour(LIGHTGRAY, BLACK); mbse_colour(LIGHTGRAY, BLACK);
clrtoeol(); clrtoeol();
if (i < lines) if (i < rows)
printf("\n"); printf("\n");
} }
fflush(stdout); fflush(stdout);
@ -521,11 +521,11 @@ void working(int txno, int y, int x)
set_color(LIGHTGRAY, BLACK); set_color(LIGHTGRAY, BLACK);
switch (txno) { switch (txno) {
case 0: mbse_mvprintw(4, columns - 14, (char *)" "); case 0: mbse_mvprintw(4, cols - 14, (char *)" ");
break; break;
case 1: mbse_mvprintw(4, columns - 14, (char *)"Working . . ."); case 1: mbse_mvprintw(4, cols - 14, (char *)"Working . . .");
break; break;
case 2: mbse_mvprintw(4, columns - 14, (char *)">>> ERROR <<<"); case 2: mbse_mvprintw(4, cols - 14, (char *)">>> ERROR <<<");
for (i = 1; i <= 5; i++) { for (i = 1; i <= 5; i++) {
putchar(7); putchar(7);
fflush(stdout); fflush(stdout);
@ -533,12 +533,12 @@ void working(int txno, int y, int x)
} }
msleep(550); msleep(550);
break; break;
case 3: mbse_mvprintw(4, columns - 14, (char *)"Form inserted"); case 3: mbse_mvprintw(4, cols - 14, (char *)"Form inserted");
putchar(7); putchar(7);
fflush(stdout); fflush(stdout);
sleep(1); sleep(1);
break; break;
case 4: mbse_mvprintw(4, columns - 14, (char *)"Form deleted "); case 4: mbse_mvprintw(4, cols - 14, (char *)"Form deleted ");
putchar(7); putchar(7);
fflush(stdout); fflush(stdout);
sleep(1); sleep(1);
@ -562,7 +562,7 @@ void clr_index()
int i; int i;
set_color(LIGHTGRAY, BLACK); set_color(LIGHTGRAY, BLACK);
for (i = 4; i <= (lines); i++) { for (i = 4; i <= (rows); i++) {
mbse_locate(i, 1); mbse_locate(i, 1);
clrtoeol(); clrtoeol();
} }
@ -578,7 +578,7 @@ void showhelp(char *T)
int f, i, x, forlim; int f, i, x, forlim;
f = FALSE; f = FALSE;
mbse_locate(lines, 1); mbse_locate(rows, 1);
set_color(WHITE, RED); set_color(WHITE, RED);
clrtoeol(); clrtoeol();
x = 0; x = 0;

View File

@ -404,11 +404,11 @@ char *chat_connect(char *data)
/* /*
* Register with IBC * Register with IBC
*/ */
pid = strtok(data, ","); /* Should be 3 */ pid = strtok(data, ","); /* Should be 3 */
pid = strtok(NULL, ","); /* The pid */ pid = strtok(NULL, ","); /* The pid */
realname = strtok(NULL, ","); /* Username */ realname = xstrcpy(cldecode(strtok(NULL, ",")));/* Username */
nick = strtok(NULL, ","); /* Mickname */ nick = xstrcpy(cldecode(strtok(NULL, ","))); /* Nickname */
sys = atoi(strtok(NULL, ";")); /* Sysop flag */ sys = atoi(strtok(NULL, ";")); /* Sysop flag */
add_user(&users, CFG.myfqdn, nick, realname); add_user(&users, CFG.myfqdn, nick, realname);
send_all("USER %s@%s %s\r\n", nick, CFG.myfqdn, realname); send_all("USER %s@%s %s\r\n", nick, CFG.myfqdn, realname);
@ -512,8 +512,7 @@ char *chat_put(char *data)
pid = strtok(data, ","); pid = strtok(data, ",");
pid = strtok(NULL, ","); pid = strtok(NULL, ",");
msg = strtok(NULL, "\0"); msg = xstrcpy(cldecode(strtok(NULL, ";")));
msg[strlen(msg)-1] = '\0';
for (tmpu = users; tmpu; tmpu = tmpu->next) { for (tmpu = users; tmpu; tmpu = tmpu->next) {
if (tmpu->pid == atoi(pid)) { if (tmpu->pid == atoi(pid)) {
@ -689,14 +688,17 @@ char *chat_put(char *data)
} }
Syslog('-', "Pid %s was not connected to chatserver"); Syslog('-', "Pid %s was not connected to chatserver");
snprintf(buf, 200, "100:2,1,*** ERROR - Not connected to server;"); snprintf(buf, 200, "100:2,1,*** ERROR - Not connected to server;");
free(msg);
return buf; return buf;
ack: ack:
snprintf(buf, 200, "100:0;"); snprintf(buf, 200, "100:0;");
free(msg);
return buf; return buf;
hangup: hangup:
snprintf(buf, 200, "100:2,1,Disconnecting;"); snprintf(buf, 200, "100:2,1,Disconnecting;");
free(msg);
return buf; return buf;
} }
@ -737,7 +739,7 @@ char *chat_get(char *data)
/* /*
* Message is for us * Message is for us
*/ */
snprintf(buf, 200, "100:2,0,%s;", chat_messages[tmpu->pointer].message); snprintf(buf, 200, "100:2,0,%s;", clencode(chat_messages[tmpu->pointer].message));
Syslog('-', "%s", buf); Syslog('-', "%s", buf);
return buf; return buf;
} }

View File

@ -58,19 +58,21 @@ int cmd_run = FALSE;/* cmd running */
int userlog(char *); int userlog(char *);
int userlog(char *param) int userlog(char *param)
{ {
char *prname, *prpid, *grade, *msg; char *prname, *prpid, *grade, *msg;
static char lfn[PATH_MAX], token[14]; static char lfn[PATH_MAX], token[14];
int rc;
lfn[0] = '\0'; lfn[0] = '\0';
strcpy(token, strtok(param, ",")); strcpy(token, strtok(param, ","));
strcpy(token, strtok(NULL, ",")); strcpy(token, strtok(NULL, ","));
snprintf(lfn, PATH_MAX, "%s/log/%s", getenv("MBSE_ROOT"), token); snprintf(lfn, PATH_MAX, "%s/log/%s", getenv("MBSE_ROOT"), token);
prname = strtok(NULL, ","); prname = strtok(NULL, ",");
prpid = strtok(NULL, ","); prpid = strtok(NULL, ",");
grade = strtok(NULL, ","); grade = strtok(NULL, ",");
msg = strtok(NULL, "\0"); msg = xstrcpy(cldecode(strtok(NULL, ";")));
msg[strlen(msg) -1] = '\0'; rc = ulog(lfn, grade, prname, prpid, msg);
return ulog(lfn, grade, prname, prpid, msg); free(msg);
return rc;
} }
@ -519,7 +521,7 @@ char *exe_cmd(char *in)
} }
/* /*
* SCLO:1,message; * SCLO:0;
* 100:0; * 100:0;
*/ */
if (strncmp(cmd, "SCLO", 4) == 0) { if (strncmp(cmd, "SCLO", 4) == 0) {

View File

@ -58,7 +58,7 @@ char *get_sysinfo(void)
startdate = SYSINFO.StartDate; startdate = SYSINFO.StartDate;
snprintf(buf, SS_BUFSIZE, "100:7,%d,%d,%d,%d,%d,%s,%s;", SYSINFO.SystemCalls, snprintf(buf, SS_BUFSIZE, "100:7,%d,%d,%d,%d,%d,%s,%s;", SYSINFO.SystemCalls,
SYSINFO.Pots, SYSINFO.ISDN, SYSINFO.Network, SYSINFO.Local, SYSINFO.Pots, SYSINFO.ISDN, SYSINFO.Network, SYSINFO.Local,
ctime(&startdate), SYSINFO.LastCaller); ctime(&startdate), clencode(SYSINFO.LastCaller));
} }
fclose(fp); fclose(fp);
@ -94,49 +94,53 @@ char *get_lastcallercount(void)
char *get_lastcallerrec(int Rec) char *get_lastcallerrec(int Rec)
{ {
static char buf[SS_BUFSIZE]; static char buf[SS_BUFSIZE];
char *temp, action[9]; char *temp, action[9], *name, *city;
FILE *fp; FILE *fp;
snprintf(buf, SS_BUFSIZE, "201:1,16;"); snprintf(buf, SS_BUFSIZE, "201:1,16;");
temp = calloc(PATH_MAX, sizeof(char)); temp = calloc(PATH_MAX, sizeof(char));
snprintf(temp, PATH_MAX, "%s/etc/lastcall.data", getenv("MBSE_ROOT")); snprintf(temp, PATH_MAX, "%s/etc/lastcall.data", getenv("MBSE_ROOT"));
if ((fp = fopen(temp, "r")) == NULL) { if ((fp = fopen(temp, "r")) == NULL) {
free(temp); free(temp);
return buf; return buf;
} }
fread(&LCALLhdr, sizeof(LCALLhdr), 1, fp); fread(&LCALLhdr, sizeof(LCALLhdr), 1, fp);
fseek(fp, ((Rec -1) * LCALLhdr.recsize) + LCALLhdr.hdrsize, SEEK_SET); fseek(fp, ((Rec -1) * LCALLhdr.recsize) + LCALLhdr.hdrsize, SEEK_SET);
if (fread(&LCALL, LCALLhdr.recsize, 1, fp) == 1) { if (fread(&LCALL, LCALLhdr.recsize, 1, fp) == 1) {
LCALL.UserName[15] = '\0'; LCALL.UserName[15] = '\0';
LCALL.Location[12] = '\0'; LCALL.Location[12] = '\0';
strcpy(action, "--------"); strcpy(action, "--------");
if (LCALL.Hidden) if (LCALL.Hidden)
action[0] = 'H'; action[0] = 'H';
if (LCALL.Download) if (LCALL.Download)
action[1] = 'D'; action[1] = 'D';
if (LCALL.Upload) if (LCALL.Upload)
action[2] = 'U'; action[2] = 'U';
if (LCALL.Read) if (LCALL.Read)
action[3] = 'R'; action[3] = 'R';
if (LCALL.Wrote) if (LCALL.Wrote)
action[4] = 'P'; action[4] = 'P';
if (LCALL.Chat) if (LCALL.Chat)
action[5] = 'C'; action[5] = 'C';
if (LCALL.Olr) if (LCALL.Olr)
action[6] = 'O'; action[6] = 'O';
if (LCALL.Door) if (LCALL.Door)
action[7] = 'E'; action[7] = 'E';
action[8] = '\0'; action[8] = '\0';
snprintf(buf, SS_BUFSIZE, "100:9,%s,%s,%d,%s,%s,%d,%d,%s,%s;", LCALL.UserName, LCALL.Location, name = xstrcpy(clencode(LCALL.UserName));
city = xstrcpy(clencode(LCALL.Location));
snprintf(buf, SS_BUFSIZE, "100:9,%s,%s,%d,%s,%s,%d,%d,%s,%s;", name, city,
LCALL.SecLevel, LCALL.Device, LCALL.TimeOn, LCALL.SecLevel, LCALL.Device, LCALL.TimeOn,
(int)LCALL.CallTime, LCALL.Calls, LCALL.Speed, action); (int)LCALL.CallTime, LCALL.Calls, LCALL.Speed, action);
} free(name);
free(city);
}
free(temp); free(temp);
fclose(fp); fclose(fp);
return buf; return buf;
} }

View File

@ -76,15 +76,18 @@ int reg_newcon(char *data)
cnt = strtok(data, ","); cnt = strtok(data, ",");
pid = strtok(NULL, ","); pid = strtok(NULL, ",");
tty = strtok(NULL, ","); tty = strtok(NULL, ",");
uid = strtok(NULL, ","); uid = xstrcpy(cldecode(strtok(NULL, ",")));
prg = strtok(NULL, ","); prg = xstrcpy(cldecode(strtok(NULL, ",")));
city = strtok(NULL, ";"); city = xstrcpy(cldecode(strtok(NULL, ";")));
/* /*
* Abort if no empty record is found * Abort if no empty record is found
*/ */
if ((retval = reg_find((char *)"0")) == -1) { if ((retval = reg_find((char *)"0")) == -1) {
Syslog('?', "Maximum clients (%d) reached", MAXCLIENT); Syslog('?', "Maximum clients (%d) reached", MAXCLIENT);
free(uid);
free(prg);
free(city);
return -1; return -1;
} }
@ -110,6 +113,9 @@ int reg_newcon(char *data)
mailers++; mailers++;
Syslog('-', "Registered client pgm \"%s\", pid %s, slot %d, mailers %d, TCP/IP %d", Syslog('-', "Registered client pgm \"%s\", pid %s, slot %d, mailers %d, TCP/IP %d",
prg, pid, retval, mailers, ipmailers); prg, pid, retval, mailers, ipmailers);
free(uid);
free(prg);
free(city);
return retval; return retval;
} }
@ -201,13 +207,16 @@ int reg_doing(char *data)
cnt = strtok(data, ","); cnt = strtok(data, ",");
pid = strtok(NULL, ","); pid = strtok(NULL, ",");
line = strtok(NULL, ";"); line = xstrcpy(cldecode(strtok(NULL, ";")));
if ((rec = reg_find(pid)) == -1) if ((rec = reg_find(pid)) == -1) {
free(line);
return -1; return -1;
}
strncpy(reginfo[rec].doing, line, 35); strncpy(reginfo[rec].doing, line, 35);
reginfo[rec].lastcon = (int)time(NULL); reginfo[rec].lastcon = (int)time(NULL);
free(line);
return 0; return 0;
} }
@ -343,15 +352,20 @@ int reg_user(char *data)
cnt = strtok(data, ","); cnt = strtok(data, ",");
pid = strtok(NULL, ","); pid = strtok(NULL, ",");
user = strtok(NULL, ","); user = xstrcpy(cldecode(strtok(NULL, ",")));
city = strtok(NULL, ";"); city = xstrcpy(cldecode(strtok(NULL, ";")));
if ((rec = reg_find(pid)) == -1) if ((rec = reg_find(pid)) == -1) {
free(user);
free(city);
return -1; return -1;
}
strncpy((char *)&reginfo[rec].uname, user, 35); strncpy((char *)&reginfo[rec].uname, user, 35);
strncpy((char *)&reginfo[rec].city, city, 35); strncpy((char *)&reginfo[rec].city, city, 35);
reginfo[rec].lastcon = (int)time(NULL); reginfo[rec].lastcon = (int)time(NULL);
free(user);
free(city);
return 0; return 0;
} }
@ -384,7 +398,7 @@ int reg_sysop(char *data)
*/ */
char *reg_ipm(char *data) char *reg_ipm(char *data)
{ {
char *cnt, *pid; char *cnt, *pid, *name, *msg;
static char buf[128]; static char buf[128];
int rec; int rec;
@ -401,7 +415,9 @@ char *reg_ipm(char *data)
return buf; return buf;
buf[0] = '\0'; buf[0] = '\0';
snprintf(buf, 128, "100:2,%s,%s;", reginfo[rec].fname[reginfo[rec].ptr_out], reginfo[rec].msg[reginfo[rec].ptr_out]); name = xstrcpy(clencode(reginfo[rec].fname[reginfo[rec].ptr_out]));
msg = xstrcpy(clencode(reginfo[rec].msg[reginfo[rec].ptr_out]));
snprintf(buf, 128, "100:2,%s,%s;", name, msg);
if (reginfo[rec].ptr_out < RB) if (reginfo[rec].ptr_out < RB)
reginfo[rec].ptr_out++; reginfo[rec].ptr_out++;
else else
@ -411,6 +427,8 @@ char *reg_ipm(char *data)
Syslog('+', "reg_ipm: in=%d out=%d ismsg=%d", reginfo[rec].ptr_in, reginfo[rec].ptr_out, reginfo[rec].ismsg); Syslog('+', "reg_ipm: in=%d out=%d ismsg=%d", reginfo[rec].ptr_in, reginfo[rec].ptr_out, reginfo[rec].ismsg);
free(name);
free(msg);
return buf; return buf;
} }
@ -425,10 +443,9 @@ int reg_spm(char *data)
int i; int i;
cnt = strtok(data, ","); cnt = strtok(data, ",");
from = strtok(NULL, ","); from = xstrcpy(cldecode(strtok(NULL, ",")));
too = strtok(NULL, ","); too = xstrcpy(cldecode(strtok(NULL, ",")));
txt = strtok(NULL, "\0"); txt = xstrcpy(cldecode(strtok(NULL, ";")));
txt[strlen(txt)-1] = '\0';
Syslog('-', "SIPM:%s,%s,%s,%s;", cnt, from, too, txt); Syslog('-', "SIPM:%s,%s,%s,%s;", cnt, from, too, txt);
@ -440,6 +457,9 @@ int reg_spm(char *data)
* can't get anymore new messages. * can't get anymore new messages.
*/ */
if (reginfo[i].ismsg && (reginfo[i].ptr_in == reginfo[i].ptr_out)) { if (reginfo[i].ismsg && (reginfo[i].ptr_in == reginfo[i].ptr_out)) {
free(from);
free(too);
free(txt);
return 2; return 2;
} }
@ -447,6 +467,9 @@ int reg_spm(char *data)
* If user has the "do not distrurb" flag set, but the sysop ignore's this. * If user has the "do not distrurb" flag set, but the sysop ignore's this.
*/ */
if (reginfo[i].silent) { if (reginfo[i].silent) {
free(from);
free(too);
free(txt);
return 1; return 1;
} }
@ -469,10 +492,16 @@ int reg_spm(char *data)
} }
Syslog('+', "reg_spm: rec=%d in=%d out=%d ismsg=%d", i, reginfo[i].ptr_in, reginfo[i].ptr_out, reginfo[i].ismsg); Syslog('+', "reg_spm: rec=%d in=%d out=%d ismsg=%d", i, reginfo[i].ptr_in, reginfo[i].ptr_out, reginfo[i].ismsg);
free(from);
free(too);
free(txt);
return 0; return 0;
} }
} }
free(from);
free(too);
free(txt);
return 3; // Error, user not found return 3; // Error, user not found
} }
@ -523,6 +552,7 @@ char *reg_fre(void)
char *get_reginfo(int first) char *get_reginfo(int first)
{ {
static char buf[256]; static char buf[256];
char *name, *prg, *city, *doing;
memset(&buf, 0, sizeof(buf)); memset(&buf, 0, sizeof(buf));
snprintf(buf, 256, "100:0;"); snprintf(buf, 256, "100:0;");
@ -542,11 +572,17 @@ char *get_reginfo(int first)
return buf; return buf;
if ((int)reginfo[entrypos].pid != 0) { if ((int)reginfo[entrypos].pid != 0) {
name = xstrcpy(clencode(reginfo[entrypos].uname));
prg = xstrcpy(clencode(reginfo[entrypos].prg));
city = xstrcpy(clencode(reginfo[entrypos].city));
doing = xstrcpy(clencode( reginfo[entrypos].doing));
snprintf(buf, 256, "100:7,%d,%s,%s,%s,%s,%s,%d;", snprintf(buf, 256, "100:7,%d,%s,%s,%s,%s,%s,%d;",
reginfo[entrypos].pid, reginfo[entrypos].tty, reginfo[entrypos].pid, reginfo[entrypos].tty,
reginfo[entrypos].uname, reginfo[entrypos].prg, name, prg, city, doing, reginfo[entrypos].started);
reginfo[entrypos].city, reginfo[entrypos].doing, free(name);
reginfo[entrypos].started); free(prg);
free(city);
free(doing);
return buf; return buf;
} }
} }
@ -565,25 +601,30 @@ int reg_page(char *data)
cnt = strtok(data, ","); cnt = strtok(data, ",");
pid = strtok(NULL, ","); pid = strtok(NULL, ",");
reason = strtok(NULL, "\0"); reason = xstrcpy(cldecode(strtok(NULL, ";")));
reason[strlen(reason)-1] = '\0';
Syslog('+', "reg_page: pid=%d, reason=\"%s\"", pid, reason); Syslog('+', "reg_page: pid=%d, reason=\"%s\"", pid, reason);
if (!sysop_present) if (!sysop_present) {
free(reason);
return 2; return 2;
}
/* /*
* Check if another user is paging the sysop or has paged the sysop. * Check if another user is paging the sysop or has paged the sysop.
* If so, mark sysop busy. * If so, mark sysop busy.
*/ */
for (i = 1; i < MAXCLIENT; i++) { for (i = 1; i < MAXCLIENT; i++) {
if (reginfo[i].pid && (reginfo[i].pid != atoi(pid)) && (reginfo[i].paging || reginfo[i].haspaged)) if (reginfo[i].pid && (reginfo[i].pid != atoi(pid)) && (reginfo[i].paging || reginfo[i].haspaged)) {
free(reason);
return 1; return 1;
}
} }
if ((rec = reg_find(pid)) == -1) if ((rec = reg_find(pid)) == -1) {
free(reason);
return 3; return 3;
}
/* /*
* All seems well, accept the page * All seems well, accept the page
@ -633,11 +674,11 @@ char *reg_checkpage(char *data)
memset(&buf, 0, sizeof(buf)); memset(&buf, 0, sizeof(buf));
for (i = 1; i < MAXCLIENT; i++) { for (i = 1; i < MAXCLIENT; i++) {
if (reginfo[i].pid && reginfo[i].paging) { if (reginfo[i].pid && reginfo[i].paging) {
snprintf(buf, 128, "100:3,%d,1,%s;", reginfo[i].pid, reginfo[i].reason); snprintf(buf, 128, "100:3,%d,1,%s;", reginfo[i].pid, clencode(reginfo[i].reason));
return buf; return buf;
} }
if (reginfo[i].pid && reginfo[i].haspaged) { if (reginfo[i].pid && reginfo[i].haspaged) {
snprintf(buf, 128, "100:3,%d,0,%s;", reginfo[i].pid, reginfo[i].reason); snprintf(buf, 128, "100:3,%d,0,%s;", reginfo[i].pid, clencode(reginfo[i].reason));
return buf; return buf;
} }
} }

View File

@ -625,3 +625,68 @@ char *printable(char *s, int l)
return pbuff; return pbuff;
} }
char *clencode(char *s)
{
char Base16Code[]="0123456789ABCDEF";
static char *buf;
char *p, *q;
if (buf)
free(buf);
buf = NULL;
if (s == NULL)
return NULL;
if ((buf = malloc(2 * strlen(s) + 1 * sizeof(char))) == NULL) {
Syslog('+', "clencode: out of memory:string too long:\"%s\"", s);
return s;
}
for (p = s, q = buf; *p != '\0';) {
if ((! isascii(*p)) || (*p == ',') || (*p == ';')) {
*q++ = '\\';
*q++ = Base16Code[(*p >> 4) & 0x0f];
*q++ = Base16Code[*p & 0x0f];
p++;
} else if (*p == '\\') {
*q++ = '\\';
*q++ = *p++;
} else {
*q++ = *p++;
}
}
*q = '\0';
return buf;
}
char *cldecode(char *s)
{
char *p, *q;
int i;
if (s == NULL) {
return NULL;
}
for (p = s, q = s; *p; p++) {
if (*p == '\\') {
if (*(p + 1) == '\\') {
*q++ = *p++;
} else {
sscanf(p + 1, "%02x", &i);
*q++ = i;
p += 2;
}
} else {
*q++ = *p;
}
}
*q = '\0';
return s;
}