forked from erikarn/LinBPQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MBLRoutines.c
383 lines (287 loc) · 7.86 KB
/
MBLRoutines.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
/*
Copyright 2001-2015 John Wiseman G8BPQ
This file is part of LinBPQ/BPQ32.
LinBPQ/BPQ32 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 3 of the License, or
(at your option) any later version.
LinBPQ/BPQ32 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 LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
*/
// Mail and Chat Server for BPQ32 Packet Switch
//
// MBL-Style Forwarding Routines
#include "BPQMail.h"
VOID ProcessMBLLine(CIRCUIT * conn, struct UserInfo * user, UCHAR* Buffer, int len)
{
Buffer[len] = 0;
// Winpack can send a second SID to switch to upload mode
if (Buffer[0] == '[' && Buffer[len-2] == ']') // SID
{
if (user->flags & (F_PMS))
{
Parse_SID(conn, &Buffer[1], len-4);
if (conn->BBSFlags & FBBForwarding)
{
conn->FBBIndex = 0; // ready for first block;
conn->FBBChecksum = 0;
memset(&conn->FBBHeaders[0], 0, 5 * sizeof(struct FBBHeaderLine));
}
else
FBBputs(conn, ">\r");
}
return;
}
if (Buffer[0] == 6 && Buffer[1] == 5)
{
// ?? Sally send there after a failed tranfer
memmove(Buffer, &Buffer[2], len);
len-=2;
}
if (_memicmp(Buffer, "F< ", 3) == 0)
{
// FBB Compressed request from system using UI Messages
int Number = atoi(&Buffer[3]);
struct MsgInfo * Msg = FindMessageByNumber(Number);
char ErrMsg[80];
int ErrLen;
if (Msg == 0)
{
ErrLen = sprintf(&ErrMsg[2], "Msg $%d does not exist!\r>", Number);
ErrMsg[0] = 0x18;
ErrMsg[1] = ErrLen;
BBSputs(conn, ErrMsg);
FBBputs(conn, ">\r");
return;
}
Msg = FindMessage(user->Call, Number, conn->sysop);
if (Msg)
{
SendCompressed(conn, Msg);
FBBputs(conn, ">\r");
Msg->status = 'Y'; // Mark as read
}
else
{
ErrLen = sprintf(&ErrMsg[2], "Msg $%d not available to you!\r>", Number);
ErrMsg[0] = 0x18;
ErrMsg[1] = ErrLen;
BBSputs(conn, ErrMsg);
FBBputs(conn, ">\r");
}
return;
}
if (Buffer[0] == 'S') //Send
{
// SB WANT @ ALLCAN < N6ZFJ $4567_N0ARY
char * Cmd;
char * To = NULL;
char * From = NULL;
char * BID = NULL;
char * ATBBS = NULL;
char * ptr, * Context;
char seps[] = " \t\r";
Cmd = strtok_s(Buffer, seps, &Context);
if (Cmd[1] == 0) Cmd[1] = 'P';
if (RefuseBulls && Cmd[1] == 'B')
{
nodeprintfEx(conn, "NO - BULLS NOT ACCEPTED\r");
if (conn->BBSFlags & OUTWARDCONNECT)
nodeprintfEx(conn, "F>\r"); // if Outward connect must be reverse forward
else
nodeprintfEx(conn, ">\r");
return;
}
To = strtok_s(NULL, seps, &Context);
ptr = strtok_s(NULL, seps, &Context);
while (ptr)
{
if (strcmp(ptr, "@") == 0)
{
ATBBS = _strupr(strtok_s(NULL, seps, &Context));
}
else if(strcmp(ptr, "<") == 0)
{
From = strtok_s(NULL, seps, &Context);
}
else if (ptr[0] == '$')
BID = &ptr[1];
else
{
nodeprintfEx(conn, "*** Error: Invalid Format\r");
return;
}
ptr = strtok_s(NULL, seps, &Context);
}
if (!From)
{
nodeprintfEx(conn, "*** Error: Invalid Format\r");
return;
}
CreateMessage(conn, From, To, ATBBS, toupper(Cmd[1]), BID, NULL);
return;
}
if (Buffer[0] == 'N') // Not wanted
{
if (conn->FwdMsg)
{
// Zap the entry
clear_fwd_bit(conn->FwdMsg->fbbs, user->BBSNumber);
set_fwd_bit(conn->FwdMsg->forw, user->BBSNumber);
conn->UserPointer->ForwardingInfo->MsgCount--;
conn->FwdMsg->Locked = 0; // Unlock
}
return;
}
if (Buffer[0] == 'O') // Need it (OK)
{
struct tm * tm;
time_t now;
char * MsgBytes;
char * MsgPtr; // In case updated for B2
int MsgLen;
if (!conn->FwdMsg)
return;
nodeprintfEx(conn, "%s\r", conn->FwdMsg->title);
MsgBytes = ReadMessageFile(conn->FwdMsg->number);
if (MsgBytes == 0)
{
MsgBytes = _strdup("Message file not found\r");
conn->FwdMsg->length = strlen(MsgBytes);
}
MsgPtr = MsgBytes;
MsgLen = conn->FwdMsg->length;
// If a B2 Message, remove B2 Header
if (conn->FwdMsg->B2Flags)
{
// Remove all B2 Headers, and all but the first part.
MsgPtr = strstr(MsgBytes, "Body:");
if (MsgPtr)
{
MsgLen = atoi(&MsgPtr[5]);
MsgPtr= strstr(MsgBytes, "\r\n\r\n"); // Blank Line after headers
if (MsgPtr)
MsgPtr +=4;
else
MsgPtr = MsgBytes;
}
else
MsgPtr = MsgBytes;
}
MsgLen = RemoveLF(MsgPtr, MsgLen);
now = time(NULL);
tm = gmtime(&now);
nodeprintf(conn, "R:%02d%02d%02d/%02d%02dZ %d@%s.%s %s\r",
tm->tm_year-100, tm->tm_mon+1, tm->tm_mday, tm->tm_hour, tm->tm_min,
conn->FwdMsg->number, BBSName, HRoute, RlineVer);
if (memcmp(MsgPtr, "R:", 2) != 0) // No R line, so must be our message
BBSputs(conn, "\r");
QueueMsg(conn, MsgPtr, MsgLen);
if (user->ForwardingInfo->SendCTRLZ)
nodeprintf(conn, "\rx1a");
else
nodeprintf(conn, "\r/ex\r");
free(MsgBytes);
conn->FBBMsgsSent = TRUE;
return;
}
if (_stricmp(Buffer, "F>\r") == 0)
{
// Reverse forward request
// If we have just sent a nessage, Flag it as sent
if (conn->FBBMsgsSent)
{
conn->FBBMsgsSent = FALSE;
clear_fwd_bit(conn->FwdMsg->fbbs, user->BBSNumber);
set_fwd_bit(conn->FwdMsg->forw, user->BBSNumber);
// Only mark as forwarded if sent to all BBSs that should have it
if (memcmp(conn->FwdMsg->fbbs, zeros, NBMASK) == 0)
{
conn->FwdMsg->status = 'F'; // Mark as forwarded
conn->FwdMsg->datechanged=time(NULL);
}
conn->FwdMsg->Locked = 0; // Unlock
conn->UserPointer->ForwardingInfo->MsgCount--;
}
// Send Message or Disconnect
if (FindMessagestoForward(conn))
{
struct MsgInfo * Msg;
// Send S line and wait for response - SB WANT @ USA < W8AAA $1029_N0XYZ
Msg = conn->FwdMsg;
nodeprintfEx(conn, "S%c %s @ %s < %s $%s\r", Msg->type, Msg->to,
(Msg->via[0]) ? Msg->via : conn->UserPointer->Call,
Msg->from, Msg->bid);
conn->BBSFlags |= MBLFORWARDING;
return;
}
BBSputs(conn, "*** DONE\r");
Flush(conn);
Sleep(400);
Disconnect(conn->BPQStream);
return;
}
if (Buffer[len-2] == '>')
{
// If we have just sent a nessage, Flag it as sent
if (conn->FBBMsgsSent)
{
conn->FBBMsgsSent = FALSE;
clear_fwd_bit(conn->FwdMsg->fbbs, user->BBSNumber);
set_fwd_bit(conn->FwdMsg->forw, user->BBSNumber);
// Only mark as forwarded if sent to all BBSs that should have it
if (memcmp(conn->FwdMsg->fbbs, zeros, NBMASK) == 0)
{
conn->FwdMsg->status = 'F'; // Mark as forwarded
conn->FwdMsg->datechanged=time(NULL);
}
conn->UserPointer->ForwardingInfo->MsgCount--;
}
// Send Message or request reverse using MBL-style forwarding
if (FindMessagestoForward(conn))
{
struct MsgInfo * Msg;
// Send S line and wait for response - SB WANT @ USA < W8AAA $1029_N0XYZ
Msg = conn->FwdMsg;
nodeprintfEx(conn, "S%c %s @ %s < %s $%s\r", Msg->type, Msg->to,
(Msg->via[0]) ? Msg->via : conn->UserPointer->Call,
Msg->from, Msg->bid);
return;
}
else
{
FBBputs(conn, "F>\r");
return;
}
}
// Winpack after doing ocmpressed downloads sends KM or B
if (_stricmp(Buffer, "*** DONE\r") == 0 || _stricmp(Buffer, "*** What?\r") == 0
|| _stricmp(Buffer, "B\r") == 0)
{
Disconnect(conn->BPQStream);
return;
}
if (_stricmp(Buffer, "KM\r") == 0)
{
int i;
struct MsgInfo * Msg;
for (i = NumberofMessages; i > 0; i--)
{
Msg = MsgHddrPtr[i];
if ((_stricmp(Msg->to, user->Call) == 0))
{
if (Msg->type == 'P' && Msg->status == 'Y')
{
FlagAsKilled(Msg);
nodeprintfEx(conn, "Message #%d Killed\r", Msg->number);
}
}
}
SendPrompt(conn, user);
return;
}
}