Skip to content
Snippets Groups Projects
Commit 68e76982 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix the areas.bbs AreaMgr addition bug created in commit 813072cd

The newly created/used link_aera() function was copying the address of the
passed fidoaddr_t pointer rather than the value (fidoaddr) pointed to.
This is the actual fix for the problem reported by Tom Moore (1:135/205)
- tested and validated. It only immediately impacted areas.bbs use
(not areas.ini), since we wrote a stringified address directly to the
areas.ini file "links" key. This was not an allocation issue but a memcpy()
issue.

Other unrelated changes:
- Log a debug-level message when ignoring a "NO-ECHO" message (subject "NE:*")
- Log a notice-level message when ignoring a message due to GATEWAY VIOLATION
  (gating a message between net-types when not explicitly configured to do so)
parent c14cea13
No related branches found
No related tags found
No related merge requests found
Pipeline #7352 passed
......@@ -1306,13 +1306,13 @@ bool area_is_linked(unsigned area_num, const fidoaddr_t* addr)
void link_area(unsigned area_num, const fidoaddr_t* addr)
{
area_t* area = &cfg.area[area_num];
if((area->link = realloc_or_free(area->link, sizeof(fidoaddr_t) * (area->links + 1))) == NULL) {
if((area->link = realloc_or_free(area->link, (sizeof *addr) * (area->links + 1))) == NULL) {
lprintf(LOG_ERR,"ERROR line %d allocating memory for area "
"#%u links.",__LINE__, area_num + 1);
bail(1);
return;
}
memcpy(&area->link[area->links++], &addr, sizeof *addr);
memcpy(&area->link[area->links++], addr, sizeof *addr);
}
/* Returns area index */
......@@ -4964,16 +4964,25 @@ ulong export_echomail(const char* sub_code, const nodecfg_t* nodecfg, bool resca
}
}
if((!rescan && !(opt_export_ftn_echomail) && (msg.from_net.type==NET_FIDO))
|| !strnicmp(msg.subj,"NE:",3)) { /* no echo */
if(!rescan && !(opt_export_ftn_echomail) && (msg.from_net.type==NET_FIDO)) {
smb_unlockmsghdr(&smb, &msg);
smb_freemsgmem(&msg);
continue; /* From a Fido node, ignore it */
}
if(strnicmp(msg.subj,"NE:",3) == 0) { /* no echo */
lprintf(LOG_DEBUG, "Ignoring %s message #%u with 'NO-ECHO' subject: %s"
,scfg.sub[subnum]->code, msg.hdr.number, msg.subj);
smb_unlockmsghdr(&smb, &msg);
smb_freemsgmem(&msg);
continue;
}
if(msg.from_net.type!=NET_NONE
&& msg.from_net.type!=NET_FIDO
&& !(scfg.sub[subnum]->misc&SUB_GATE)) {
lprintf(LOG_NOTICE, "GATEWAY VIOLATION: Ignoring %s non-Fido (type %u) network message #%u from %s to %s in area: %s"
,scfg.sub[subnum]->code, msg.from_net.type, msg.hdr.number, msg.from, msg.to, tag);
smb_unlockmsghdr(&smb, &msg);
smb_freemsgmem(&msg);
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment