Newer
Older
/* Synchronet Message-ID generation routines */
/* $Id: msg_id.c,v 1.16 2020/07/15 06:12:56 rswindell Exp $ */
/****************************************************************************
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This program 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 *
* of the License, or (at your option) any later version. *
* See the GNU General Public License for more details: gpl.txt or *
* http://www.fsf.org/copyleft/gpl.html *
* *
* Anonymous FTP access to the most recent released source is available at *
* ftp://vert.synchro.net, ftp://cvs.synchro.net and ftp://ftp.synchro.net *
* *
* Anonymous CVS access to the development source and modification history *
* is available at cvs.synchro.net:/cvsroot/sbbs, example: *
* cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs login *
* (just hit return, no password is necessary) *
* cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs checkout src *
* *
* For Synchronet coding style and modification guidelines, see *
* http://www.synchro.net/source.html *
* *
* You are encouraged to submit any modifications (preferably in Unix diff *
* format) via e-mail to mods@synchro.net *
* *
* Note: If this box doesn't appear square, then you need to fix your tabs. *
****************************************************************************/
#include "sbbs.h"
static ulong msg_number(smbmsg_t* msg)
{
if(msg->idx.number)
return(msg->idx.number);
return(msg->hdr.number);
}
uint32_t get_new_msg_number(smb_t* smb)
{
BOOL locked = smb->locked;
if(!locked && smb_locksmbhdr(smb) != SMB_SUCCESS)
return 0;
if(smb_getstatus(smb)!=SMB_SUCCESS)
return 0;
if(!locked) smb_unlocksmbhdr(smb);
return smb->status.last_msg + 1;
}
static ulong msg_time(smbmsg_t* msg)
{
if(msg->idx.time)
return(msg->idx.time);
return(msg->hdr.when_imported.time);
}
static ulong msgid_serialno(smbmsg_t* msg)
{
return (msg_time(msg)-1000000000) + msg_number(msg);
}
/****************************************************************************/
/* Returns a FidoNet (FTS-9) message-ID */
/* Returns NULL if the message is from FidoNet and doesn't have a MSGID */
/* Pass NULL for msgid if (single-threaded) caller wishes to use static buf */
/****************************************************************************/
char* DLLCALL ftn_msgid(sub_t *sub, smbmsg_t* msg, char* msgid, size_t maxlen)
static char msgidbuf[256];
if(msgid == NULL) {
msgid = msgidbuf;
maxlen = sizeof(msgidbuf);
if(msg->ftn_msgid!=NULL && *msg->ftn_msgid!=0)
return msg->ftn_msgid;
if(msg->from_net.type == NET_FIDO) // Don't generate a message-ID for imported FTN messages
return NULL;
,"%lu.%s@%s %08lx"
,msg_number(msg)
,smb_faddrtoa(&sub->faddr,NULL)
,msgid_serialno(msg)
);
return msgid;
}
/****************************************************************************/
/* Return a general purpose (RFC-822) message-ID */
/****************************************************************************/
char* DLLCALL get_msgid(scfg_t* cfg, uint subnum, smbmsg_t* msg, char* msgid, size_t maxlen)
if(msg->id!=NULL && *msg->id!=0) {
strncpy(msgid,msg->id,maxlen);
}
/* Try *really* hard to get a hostname from the configuration data */
host=cfg->sys_inetaddr;
if(!host[0]) {
host=cfg->sys_id;
if(!host[0]) {
host=cfg->sys_name;
if(!host[0]) {
host=cfg->sys_op;
}
}
}
if(subnum>=cfg->total_subs)
,msg_time(msg)
,msg_number(msg)
,msg_time(msg)
,msg_number(msg)
,cfg->sub[subnum]->code
return(msgid);
}
/****************************************************************************/
/* Get (or generate) the original message-ID for a reply message */
/* Returns NULL if not a valid reply message */
/****************************************************************************/
char* DLLCALL get_replyid(scfg_t* cfg, smb_t* smb, smbmsg_t* msg, char* msgid, size_t maxlen)
{
smbmsg_t remsg;
if(msg->reply_id)
return msg->reply_id;
if(msg->hdr.thread_back == 0)
return NULL;
memset(&remsg, 0, sizeof(remsg));
remsg.hdr.number=msg->hdr.thread_back;
if(smb_getmsgidx(smb, &remsg) != SMB_SUCCESS)
return NULL;
if(smb_getmsghdr(smb, &remsg) != SMB_SUCCESS)
return NULL;
get_msgid(cfg, smb->subnum, &remsg, msgid, maxlen);
return msgid;
}
/****************************************************************************/
/* Add auto-generated message-IDs to a message, if doesn't already have */
/* The message base (smb) must be already opened */
/****************************************************************************/
BOOL DLLCALL add_msg_ids(scfg_t* cfg, smb_t* smb, smbmsg_t* msg, smbmsg_t* remsg)
{
char msg_id[256];
if(msg->hdr.number == 0)
msg->hdr.number = get_new_msg_number(smb);
/* Generate FidoNet (FTS-9) MSGID (for messages posted to FTN sub-boards only) */
if(msg->ftn_msgid == NULL) {
if(smb->subnum == INVALID_SUB && msg->to_net.type == NET_FIDO) {
safe_snprintf(msg_id, sizeof(msg_id)
,"%lu@%s %08lx"
,msg_number(msg)
,smb_faddrtoa(&cfg->faddr[nearest_sysfaddr(cfg, msg->to_net.addr)], NULL)
,msgid_serialno(msg)
);
if(smb_hfield_str(msg, FIDOMSGID, msg_id) != SMB_SUCCESS)
return FALSE;
}
else if(smb->subnum != INVALID_SUB && cfg->sub[smb->subnum]->misc&SUB_FIDO) {
if(ftn_msgid(cfg->sub[smb->subnum], msg, msg_id, sizeof(msg_id)) != NULL) {
if(smb_hfield_str(msg, FIDOMSGID, msg_id) != SMB_SUCCESS)
return FALSE;
}
}
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
}
/* Generate Internet MSG-ID (for all messages) */
if(msg->id == NULL) {
get_msgid(cfg, smb->subnum, msg, msg_id, sizeof(msg_id));
if(smb_hfield_str(msg, RFC822MSGID, msg_id) != SMB_SUCCESS)
return FALSE;
}
/* Generate Reply-IDs (when appropriate) */
if(remsg != NULL) {
if(add_reply_ids(cfg, smb, msg, remsg) != TRUE)
return FALSE;
}
/* Generate FidoNet Program Identifier */
if(msg->ftn_pid == NULL) {
if(smb_hfield_str(msg, FIDOPID, msg_program_id(msg_id, sizeof(msg_id))) != TRUE)
return FALSE;
}
return TRUE; // Success
}
/****************************************************************************/
/* Adds reply-IDs and does some reply/thread-linkage to a new message */
/* Migrated from sbbs_t::postmsg() */
/* The message base (smb) must be already opened successfully */
/****************************************************************************/
BOOL DLLCALL add_reply_ids(scfg_t* cfg, smb_t* smb, smbmsg_t* msg, smbmsg_t* remsg)
{
char* p;
char replyid[256];
msg->hdr.thread_back = remsg->hdr.number; /* needed for threading backward */
if((msg->hdr.thread_id = remsg->hdr.thread_id) == 0)
msg->hdr.thread_id = remsg->hdr.number;
/* Add RFC-822 Reply-ID (generate if necessary) */
if((p = get_replyid(cfg, smb, msg, replyid, sizeof(replyid))) != NULL) {
if(smb_hfield_str(msg, RFC822REPLYID, p) != SMB_SUCCESS)
return FALSE;
}
/* Add FidoNet Reply if original message has FidoNet MSGID */
if(remsg->ftn_msgid != NULL) {
if(smb_hfield_str(msg, FIDOREPLYID, remsg->ftn_msgid) != SMB_SUCCESS)
return FALSE;
}
return TRUE; // Success
}
/****************************************************************************/
/* FTN-compliant "Program Identifier"/PID */
/****************************************************************************/
char* DLLCALL msg_program_id(char* pid, size_t maxlen)
{
char compiler[64];
DESCRIBE_COMPILER(compiler);
snprintf(pid, maxlen, "%.10s %s%c-%s %s %s"
,VERSION_NOTICE,VERSION,REVISION,PLATFORM_DESC
,__DATE__,compiler);
return pid;
}
uint nearest_sysfaddr(scfg_t* cfg, faddr_t* dest_addr)
{
uint i;
for(i=0; i<cfg->total_faddrs; i++)
if(dest_addr->zone == cfg->faddr[i].zone && dest_addr->net == cfg->faddr[i].net)
return i;
for(i=0; i<cfg->total_faddrs; i++)
if(dest_addr->zone == cfg->faddr[i].zone)
return i;
return 0;
}