9c36f848ff269bb2f12277c279090d0e40e626e1
[citadel.git] / citadel / modules / network / serv_network.c
1 /*
2  * $Id$ 
3  *
4  * This module handles shared rooms, inter-Citadel mail, and outbound
5  * mailing list processing.
6  *
7  * Copyright (c) 2000-2010 by the citadel.org team
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 3 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  *
23  * ** NOTE **   A word on the S_NETCONFIGS semaphore:
24  * This is a fairly high-level type of critical section.  It ensures that no
25  * two threads work on the netconfigs files at the same time.  Since we do
26  * so many things inside these, here are the rules:
27  *  1. begin_critical_section(S_NETCONFIGS) *before* begin_ any others.
28  *  2. Do *not* perform any I/O with the client during these sections.
29  *
30  */
31
32 /*
33  * Duration of time (in seconds) after which pending list subscribe/unsubscribe
34  * requests that have not been confirmed will be deleted.
35  */
36 #define EXP     259200  /* three days */
37
38 #include "sysdep.h"
39 #include <stdlib.h>
40 #include <unistd.h>
41 #include <stdio.h>
42 #include <fcntl.h>
43 #include <ctype.h>
44 #include <signal.h>
45 #include <pwd.h>
46 #include <errno.h>
47 #include <sys/stat.h>
48 #include <sys/types.h>
49 #include <dirent.h>
50 #if TIME_WITH_SYS_TIME
51 # include <sys/time.h>
52 # include <time.h>
53 #else
54 # if HAVE_SYS_TIME_H
55 #  include <sys/time.h>
56 # else
57 #  include <time.h>
58 # endif
59 #endif
60 #ifdef HAVE_SYSCALL_H
61 # include <syscall.h>
62 #else 
63 # if HAVE_SYS_SYSCALL_H
64 #  include <sys/syscall.h>
65 # endif
66 #endif
67
68 #include <sys/wait.h>
69 #include <string.h>
70 #include <limits.h>
71 #include <libcitadel.h>
72 #include "citadel.h"
73 #include "server.h"
74 #include "citserver.h"
75 #include "support.h"
76 #include "config.h"
77 #include "user_ops.h"
78 #include "database.h"
79 #include "msgbase.h"
80 #include "internet_addressing.h"
81 #include "serv_network.h"
82 #include "clientsocket.h"
83 #include "file_ops.h"
84 #include "citadel_dirs.h"
85 #include "threads.h"
86
87 #ifndef HAVE_SNPRINTF
88 #include "snprintf.h"
89 #endif
90
91 #include "context.h"
92
93 #include "ctdl_module.h"
94
95
96
97 /* Nonzero while we are doing network processing */
98 static int doing_queue = 0;
99
100 /*
101  * When we do network processing, it's accomplished in two passes; one to
102  * gather a list of rooms and one to actually do them.  It's ok that rplist
103  * is global; we have a mutex that keeps it safe.
104  */
105 struct RoomProcList *rplist = NULL;
106
107 /*
108  * We build a map of network nodes during processing.
109  */
110 NetMap *the_netmap = NULL;
111 int netmap_changed = 0;
112 char *working_ignetcfg = NULL;
113
114 /*
115  * Load or refresh the Citadel network (IGnet) configuration for this node.
116  */
117 void load_working_ignetcfg(void) {
118         char *cfg;
119         char *oldcfg;
120
121         cfg = CtdlGetSysConfig(IGNETCFG);
122         if (cfg == NULL) {
123                 cfg = strdup("");
124         }
125
126         oldcfg = working_ignetcfg;
127         working_ignetcfg = cfg;
128         if (oldcfg != NULL) {
129                 free(oldcfg);
130         }
131 }
132
133
134
135
136
137 /*
138  * Keep track of what messages to reject
139  */
140 FilterList *load_filter_list(void) {
141         char *serialized_list = NULL;
142         int i;
143         char buf[SIZ];
144         FilterList *newlist = NULL;
145         FilterList *nptr;
146
147         serialized_list = CtdlGetSysConfig(FILTERLIST);
148         if (serialized_list == NULL) return(NULL); /* if null, no entries */
149
150         /* Use the string tokenizer to grab one line at a time */
151         for (i=0; i<num_tokens(serialized_list, '\n'); ++i) {
152                 extract_token(buf, serialized_list, i, '\n', sizeof buf);
153                 nptr = (FilterList *) malloc(sizeof(FilterList));
154                 extract_token(nptr->fl_user, buf, 0, '|', sizeof nptr->fl_user);
155                 striplt(nptr->fl_user);
156                 extract_token(nptr->fl_room, buf, 1, '|', sizeof nptr->fl_room);
157                 striplt(nptr->fl_room);
158                 extract_token(nptr->fl_node, buf, 2, '|', sizeof nptr->fl_node);
159                 striplt(nptr->fl_node);
160
161                 /* Cowardly refuse to add an any/any/any entry that would
162                  * end up filtering every single message.
163                  */
164                 if (IsEmptyStr(nptr->fl_user) && 
165                     IsEmptyStr(nptr->fl_room) &&
166                     IsEmptyStr(nptr->fl_node)) {
167                         free(nptr);
168                 }
169                 else {
170                         nptr->next = newlist;
171                         newlist = nptr;
172                 }
173         }
174
175         free(serialized_list);
176         return newlist;
177 }
178
179
180 void free_filter_list(FilterList *fl) {
181         if (fl == NULL) return;
182         free_filter_list(fl->next);
183         free(fl);
184 }
185
186
187
188 /*
189  * Check the use table.  This is a list of messages which have recently
190  * arrived on the system.  It is maintained and queried to prevent the same
191  * message from being entered into the database multiple times if it happens
192  * to arrive multiple times by accident.
193  */
194 int network_usetable(struct CtdlMessage *msg) {
195
196         char msgid[SIZ];
197         struct cdbdata *cdbut;
198         struct UseTable ut;
199
200         /* Bail out if we can't generate a message ID */
201         if (msg == NULL) {
202                 return(0);
203         }
204         if (msg->cm_fields['I'] == NULL) {
205                 return(0);
206         }
207         if (IsEmptyStr(msg->cm_fields['I'])) {
208                 return(0);
209         }
210
211         /* Generate the message ID */
212         strcpy(msgid, msg->cm_fields['I']);
213         if (haschar(msgid, '@') == 0) {
214                 strcat(msgid, "@");
215                 if (msg->cm_fields['N'] != NULL) {
216                         strcat(msgid, msg->cm_fields['N']);
217                 }
218                 else {
219                         return(0);
220                 }
221         }
222
223         cdbut = cdb_fetch(CDB_USETABLE, msgid, strlen(msgid));
224         if (cdbut != NULL) {
225                 cdb_free(cdbut);
226                 CtdlLogPrintf(CTDL_DEBUG, "network_usetable() : we already have %s\n", msgid);
227                 return(1);
228         }
229
230         /* If we got to this point, it's unique: add it. */
231         strcpy(ut.ut_msgid, msgid);
232         ut.ut_timestamp = time(NULL);
233         cdb_store(CDB_USETABLE, msgid, strlen(msgid), &ut, sizeof(struct UseTable) );
234         return(0);
235 }
236
237
238 /* 
239  * Read the network map from its configuration file into memory.
240  */
241 void read_network_map(void) {
242         char *serialized_map = NULL;
243         int i;
244         char buf[SIZ];
245         NetMap *nmptr;
246
247         serialized_map = CtdlGetSysConfig(IGNETMAP);
248         if (serialized_map == NULL) return;     /* if null, no entries */
249
250         /* Use the string tokenizer to grab one line at a time */
251         for (i=0; i<num_tokens(serialized_map, '\n'); ++i) {
252                 extract_token(buf, serialized_map, i, '\n', sizeof buf);
253                 nmptr = (NetMap *) malloc(sizeof(NetMap));
254                 extract_token(nmptr->nodename, buf, 0, '|', sizeof nmptr->nodename);
255                 nmptr->lastcontact = extract_long(buf, 1);
256                 extract_token(nmptr->nexthop, buf, 2, '|', sizeof nmptr->nexthop);
257                 nmptr->next = the_netmap;
258                 the_netmap = nmptr;
259         }
260
261         free(serialized_map);
262         netmap_changed = 0;
263 }
264
265
266 /*
267  * Write the network map from memory back to the configuration file.
268  */
269 void write_network_map(void) {
270         char *serialized_map = NULL;
271         NetMap *nmptr;
272
273
274         if (netmap_changed) {
275                 serialized_map = strdup("");
276         
277                 if (the_netmap != NULL) {
278                         for (nmptr = the_netmap; nmptr != NULL; nmptr = nmptr->next) {
279                                 serialized_map = realloc(serialized_map,
280                                                         (strlen(serialized_map)+SIZ) );
281                                 if (!IsEmptyStr(nmptr->nodename)) {
282                                         snprintf(&serialized_map[strlen(serialized_map)],
283                                                 SIZ,
284                                                 "%s|%ld|%s\n",
285                                                 nmptr->nodename,
286                                                 (long)nmptr->lastcontact,
287                                                 nmptr->nexthop);
288                                 }
289                         }
290                 }
291
292                 CtdlPutSysConfig(IGNETMAP, serialized_map);
293                 free(serialized_map);
294         }
295
296         /* Now free the list */
297         while (the_netmap != NULL) {
298                 nmptr = the_netmap->next;
299                 free(the_netmap);
300                 the_netmap = nmptr;
301         }
302         netmap_changed = 0;
303 }
304
305
306
307 /* 
308  * Check the network map and determine whether the supplied node name is
309  * valid.  If it is not a neighbor node, supply the name of a neighbor node
310  * which is the next hop.  If it *is* a neighbor node, we also fill in the
311  * shared secret.
312  */
313 int is_valid_node(char *nexthop, char *secret, char *node) {
314         int i;
315         char linebuf[SIZ];
316         char buf[SIZ];
317         int retval;
318         NetMap *nmptr;
319
320         if (node == NULL) {
321                 return(-1);
322         }
323
324         /*
325          * First try the neighbor nodes
326          */
327         if (working_ignetcfg == NULL) {
328                 CtdlLogPrintf(CTDL_ERR, "working_ignetcfg is NULL!\n");
329                 if (nexthop != NULL) {
330                         strcpy(nexthop, "");
331                 }
332                 return(-1);
333         }
334
335         retval = (-1);
336         if (nexthop != NULL) {
337                 strcpy(nexthop, "");
338         }
339
340         /* Use the string tokenizer to grab one line at a time */
341         for (i=0; i<num_tokens(working_ignetcfg, '\n'); ++i) {
342                 extract_token(linebuf, working_ignetcfg, i, '\n', sizeof linebuf);
343                 extract_token(buf, linebuf, 0, '|', sizeof buf);
344                 if (!strcasecmp(buf, node)) {
345                         if (nexthop != NULL) {
346                                 strcpy(nexthop, "");
347                         }
348                         if (secret != NULL) {
349                                 extract_token(secret, linebuf, 1, '|', 256);
350                         }
351                         retval = 0;
352                 }
353         }
354
355         if (retval == 0) {
356                 return(retval);         /* yup, it's a direct neighbor */
357         }
358
359         /*      
360          * If we get to this point we have to see if we know the next hop
361          */
362         if (the_netmap != NULL) {
363                 for (nmptr = the_netmap; nmptr != NULL; nmptr = nmptr->next) {
364                         if (!strcasecmp(nmptr->nodename, node)) {
365                                 if (nexthop != NULL) {
366                                         strcpy(nexthop, nmptr->nexthop);
367                                 }
368                                 return(0);
369                         }
370                 }
371         }
372
373         /*
374          * If we get to this point, the supplied node name is bogus.
375          */
376         CtdlLogPrintf(CTDL_ERR, "Invalid node name <%s>\n", node);
377         return(-1);
378 }
379
380
381
382
383
384 void cmd_gnet(char *argbuf) {
385         char filename[PATH_MAX];
386         char buf[SIZ];
387         FILE *fp;
388
389         if ( (CC->room.QRflags & QR_MAILBOX) && (CC->user.usernum == atol(CC->room.QRname)) ) {
390                 /* users can edit the netconfigs for their own mailbox rooms */
391         }
392         else if (CtdlAccessCheck(ac_room_aide)) return;
393
394         assoc_file_name(filename, sizeof filename, &CC->room, ctdl_netcfg_dir);
395         cprintf("%d Network settings for room #%ld <%s>\n",
396                 LISTING_FOLLOWS,
397                 CC->room.QRnumber, CC->room.QRname);
398
399         fp = fopen(filename, "r");
400         if (fp != NULL) {
401                 while (fgets(buf, sizeof buf, fp) != NULL) {
402                         buf[strlen(buf)-1] = 0;
403                         cprintf("%s\n", buf);
404                 }
405                 fclose(fp);
406         }
407
408         cprintf("000\n");
409 }
410
411
412 void cmd_snet(char *argbuf) {
413         char tempfilename[PATH_MAX];
414         char filename[PATH_MAX];
415         int TmpFD;
416         StrBuf *Line;
417         struct stat StatBuf;
418         long len;
419         int rc;
420
421         unbuffer_output();
422
423         if ( (CC->room.QRflags & QR_MAILBOX) && (CC->user.usernum == atol(CC->room.QRname)) ) {
424                 /* users can edit the netconfigs for their own mailbox rooms */
425         }
426         else if (CtdlAccessCheck(ac_room_aide)) return;
427
428         len = assoc_file_name(filename, sizeof filename, &CC->room, ctdl_netcfg_dir);
429         memcpy(tempfilename, filename, len + 1);
430
431         memset(&StatBuf, 0, sizeof(struct stat));
432         if (stat(filename, &StatBuf)  == -1)
433                 StatBuf.st_size = 80; /* Not there? guess 80 chars line. */
434
435         sprintf(tempfilename + len, ".%d", CC->cs_pid);
436
437         TmpFD = open(tempfilename, O_CREAT|O_EXCL);
438
439         if (TmpFD > 0)
440         {
441                 char *tmp = malloc(StatBuf.st_size * 2);
442                 memset(tmp, 0, StatBuf.st_size * 2);
443                 rc = write(TmpFD, tmp, StatBuf.st_size * 2);
444                 free(tmp);
445                 if (rc <= 0)
446                 {
447                         close(TmpFD);
448                         cprintf("%d Unable to allocate the space required for %s: %s\n",
449                                 ERROR + INTERNAL_ERROR,
450                                 tempfilename,
451                                 strerror(errno));
452                         return;
453                 }       
454                 lseek(TmpFD, SEEK_SET, 0);
455         }
456         else {
457                 cprintf("%d Unable to allocate the space required for %s: %s\n",
458                         ERROR + INTERNAL_ERROR,
459                         tempfilename,
460                         strerror(errno));
461
462
463         }
464         Line = NewStrBuf();
465
466         cprintf("%d %s\n", SEND_LISTING, tempfilename);
467
468         len = 0;
469         while (rc = CtdlClientGetLine(Line), 
470                (rc >= 0))
471         {
472                 if ((rc == 3) && (strcmp(ChrPtr(Line), "000") == 0))
473                         break;
474                 StrBufAppendBufPlain(Line, HKEY("\n"), 0);
475                 write(TmpFD, ChrPtr(Line), StrLength(Line));
476                 len += StrLength(Line);
477         }
478         FreeStrBuf(&Line);
479         ftruncate(TmpFD, len + 1);
480         close(TmpFD);
481
482         /* Now copy the temp file to its permanent location.
483          * (We copy instead of link because they may be on different filesystems)
484          */
485         begin_critical_section(S_NETCONFIGS);
486         rename(filename, tempfilename);
487         end_critical_section(S_NETCONFIGS);
488 }
489
490
491 /*
492  * Deliver digest messages
493  */
494 void network_deliver_digest(SpoolControl *sc) {
495         char buf[SIZ];
496         int i;
497         struct CtdlMessage *msg = NULL;
498         long msglen;
499         char *recps = NULL;
500         size_t recps_len = SIZ;
501         size_t siz;
502         struct recptypes *valid;
503         namelist *nptr;
504         char bounce_to[256];
505
506         if (sc->num_msgs_spooled < 1) {
507                 fclose(sc->digestfp);
508                 sc->digestfp = NULL;
509                 return;
510         }
511
512         msg = malloc(sizeof(struct CtdlMessage));
513         memset(msg, 0, sizeof(struct CtdlMessage));
514         msg->cm_magic = CTDLMESSAGE_MAGIC;
515         msg->cm_format_type = FMT_RFC822;
516         msg->cm_anon_type = MES_NORMAL;
517
518         sprintf(buf, "%ld", time(NULL));
519         msg->cm_fields['T'] = strdup(buf);
520         msg->cm_fields['A'] = strdup(CC->room.QRname);
521         snprintf(buf, sizeof buf, "[%s]", CC->room.QRname);
522         msg->cm_fields['U'] = strdup(buf);
523         sprintf(buf, "room_%s@%s", CC->room.QRname, config.c_fqdn);
524         for (i=0; buf[i]; ++i) {
525                 if (isspace(buf[i])) buf[i]='_';
526                 buf[i] = tolower(buf[i]);
527         }
528         msg->cm_fields['F'] = strdup(buf);
529         msg->cm_fields['R'] = strdup(buf);
530
531         /* Set the 'List-ID' header */
532         msg->cm_fields['L'] = malloc(1024);
533         snprintf(msg->cm_fields['L'], 1024,
534                 "%s <%ld.list-id.%s>",
535                 CC->room.QRname,
536                 CC->room.QRnumber,
537                 config.c_fqdn
538         );
539
540         /*
541          * Go fetch the contents of the digest
542          */
543         fseek(sc->digestfp, 0L, SEEK_END);
544         msglen = ftell(sc->digestfp);
545
546         msg->cm_fields['M'] = malloc(msglen + 1);
547         fseek(sc->digestfp, 0L, SEEK_SET);
548         siz = fread(msg->cm_fields['M'], (size_t)msglen, 1, sc->digestfp);
549         msg->cm_fields['M'][msglen] = '\0';
550
551         fclose(sc->digestfp);
552         sc->digestfp = NULL;
553
554         /* Now generate the delivery instructions */
555
556         /* 
557          * Figure out how big a buffer we need to allocate
558          */
559         for (nptr = sc->digestrecps; nptr != NULL; nptr = nptr->next) {
560                 recps_len = recps_len + strlen(nptr->name) + 2;
561         }
562         
563         recps = malloc(recps_len);
564
565         if (recps == NULL) {
566                 CtdlLogPrintf(CTDL_EMERG, "Cannot allocate %ld bytes for recps...\n", (long)recps_len);
567                 abort();
568         }
569
570         strcpy(recps, "");
571
572         /* Each recipient */
573         for (nptr = sc->digestrecps; nptr != NULL; nptr = nptr->next) {
574                 if (nptr != sc->digestrecps) {
575                         strcat(recps, ",");
576                 }
577                 strcat(recps, nptr->name);
578         }
579
580         /* Where do we want bounces and other noise to be heard?  Surely not the list members! */
581         snprintf(bounce_to, sizeof bounce_to, "room_aide@%s", config.c_fqdn);
582
583         /* Now submit the message */
584         valid = validate_recipients(recps, NULL, 0);
585         free(recps);
586         if (valid != NULL) {
587                 valid->bounce_to = strdup(bounce_to);
588                 valid->envelope_from = strdup(bounce_to);
589                 CtdlSubmitMsg(msg, valid, NULL, 0);
590         }
591         CtdlFreeMessage(msg);
592         free_recipients(valid);
593 }
594
595
596 /*
597  * Deliver list messages to everyone on the list ... efficiently
598  */
599 void network_deliver_list(struct CtdlMessage *msg, SpoolControl *sc) {
600         char *recps = NULL;
601         size_t recps_len = SIZ;
602         struct recptypes *valid;
603         namelist *nptr;
604         char bounce_to[256];
605
606         /* Don't do this if there were no recipients! */
607         if (sc->listrecps == NULL) return;
608
609         /* Now generate the delivery instructions */
610
611         /* 
612          * Figure out how big a buffer we need to allocate
613          */
614         for (nptr = sc->listrecps; nptr != NULL; nptr = nptr->next) {
615                 recps_len = recps_len + strlen(nptr->name) + 2;
616         }
617         
618         recps = malloc(recps_len);
619
620         if (recps == NULL) {
621                 CtdlLogPrintf(CTDL_EMERG, "Cannot allocate %ld bytes for recps...\n", (long)recps_len);
622                 abort();
623         }
624
625         strcpy(recps, "");
626
627         /* Each recipient */
628         for (nptr = sc->listrecps; nptr != NULL; nptr = nptr->next) {
629                 if (nptr != sc->listrecps) {
630                         strcat(recps, ",");
631                 }
632                 strcat(recps, nptr->name);
633         }
634
635         /* Where do we want bounces and other noise to be heard?  Surely not the list members! */
636         snprintf(bounce_to, sizeof bounce_to, "room_aide@%s", config.c_fqdn);
637
638         /* Now submit the message */
639         valid = validate_recipients(recps, NULL, 0);
640         free(recps);
641         if (valid != NULL) {
642                 valid->bounce_to = strdup(bounce_to);
643                 valid->envelope_from = strdup(bounce_to);
644                 CtdlSubmitMsg(msg, valid, NULL, 0);
645                 free_recipients(valid);
646         }
647         /* Do not call CtdlFreeMessage(msg) here; the caller will free it. */
648 }
649
650
651
652
653 /*
654  * Spools out one message from the list.
655  */
656 void network_spool_msg(long msgnum, void *userdata) {
657         SpoolControl *sc;
658         int i;
659         char *newpath = NULL;
660         size_t instr_len = SIZ;
661         struct CtdlMessage *msg = NULL;
662         namelist *nptr;
663         maplist *mptr;
664         struct ser_ret sermsg;
665         FILE *fp;
666         char filename[PATH_MAX];
667         char buf[SIZ];
668         int bang = 0;
669         int send = 1;
670         int delete_after_send = 0;      /* Set to 1 to delete after spooling */
671         int ok_to_participate = 0;
672         struct recptypes *valid;
673
674         sc = (SpoolControl *)userdata;
675
676         /*
677          * Process mailing list recipients
678          */
679         instr_len = SIZ;
680         if (sc->listrecps != NULL) {
681                 /* Fetch the message.  We're going to need to modify it
682                  * in order to insert the [list name] in it, etc.
683                  */
684                 msg = CtdlFetchMessage(msgnum, 1);
685                 if (msg != NULL) {
686                         if (msg->cm_fields['V'] == NULL){
687                                 /* local message, no enVelope */
688                                 StrBuf *Buf;
689                                 Buf = NewStrBuf();
690                                 StrBufAppendBufPlain(Buf, msg->cm_fields['O'], -1, 0);
691                                 StrBufAppendBufPlain(Buf, HKEY("@"), 0);
692                                 StrBufAppendBufPlain(Buf, config.c_fqdn, -1, 0);
693                                 
694                                 msg->cm_fields['K'] = SmashStrBuf(&Buf);
695                         }
696                         else {
697                                 msg->cm_fields['K'] = strdup (msg->cm_fields['V']);
698                         }
699                         /* Set the 'List-ID' header */
700                         if (msg->cm_fields['L'] != NULL) {
701                                 free(msg->cm_fields['L']);
702                         }
703                         msg->cm_fields['L'] = malloc(1024);
704                         snprintf(msg->cm_fields['L'], 1024,
705                                 "%s <%ld.list-id.%s>",
706                                 CC->room.QRname,
707                                 CC->room.QRnumber,
708                                 config.c_fqdn
709                         );
710
711                         /* Prepend "[List name]" to the subject */
712                         if (msg->cm_fields['U'] == NULL) {
713                                 msg->cm_fields['U'] = strdup("(no subject)");
714                         }
715                         snprintf(buf, sizeof buf, "[%s] %s", CC->room.QRname, msg->cm_fields['U']);
716                         free(msg->cm_fields['U']);
717                         msg->cm_fields['U'] = strdup(buf);
718
719                         /* Set the recipient of the list message to the
720                          * email address of the room itself.
721                          * FIXME ... I want to be able to pick any address
722                          */
723                         if (msg->cm_fields['R'] != NULL) {
724                                 free(msg->cm_fields['R']);
725                         }
726                         msg->cm_fields['R'] = malloc(256);
727                         snprintf(msg->cm_fields['R'], 256,
728                                 "room_%s@%s", CC->room.QRname,
729                                 config.c_fqdn);
730                         for (i=0; msg->cm_fields['R'][i]; ++i) {
731                                 if (isspace(msg->cm_fields['R'][i])) {
732                                         msg->cm_fields['R'][i] = '_';
733                                 }
734                         }
735
736                         /* Handle delivery */
737                         network_deliver_list(msg, sc);
738                         CtdlFreeMessage(msg);
739                 }
740         }
741
742         /*
743          * Process digest recipients
744          */
745         if ((sc->digestrecps != NULL) && (sc->digestfp != NULL)) {
746                 msg = CtdlFetchMessage(msgnum, 1);
747                 if (msg != NULL) {
748                         fprintf(sc->digestfp,   " -----------------------------------"
749                                                 "------------------------------------"
750                                                 "-------\n");
751                         fprintf(sc->digestfp, "From: ");
752                         if (msg->cm_fields['A'] != NULL) {
753                                 fprintf(sc->digestfp, "%s ", msg->cm_fields['A']);
754                         }
755                         if (msg->cm_fields['F'] != NULL) {
756                                 fprintf(sc->digestfp, "<%s> ", msg->cm_fields['F']);
757                         }
758                         else if (msg->cm_fields['N'] != NULL) {
759                                 fprintf(sc->digestfp, "@%s ", msg->cm_fields['N']);
760                         }
761                         fprintf(sc->digestfp, "\n");
762                         if (msg->cm_fields['U'] != NULL) {
763                                 fprintf(sc->digestfp, "Subject: %s\n", msg->cm_fields['U']);
764                         }
765
766                         CC->redirect_buffer = NewStrBufPlain(NULL, SIZ);
767                         
768                         safestrncpy(CC->preferred_formats, "text/plain", sizeof CC->preferred_formats);
769                         CtdlOutputPreLoadedMsg(msg, MT_CITADEL, HEADERS_NONE, 0, 0, 0);
770
771                         StrBufTrim(CC->redirect_buffer);
772                         fwrite(HKEY("\n"), 1, sc->digestfp);
773                         fwrite(SKEY(CC->redirect_buffer), 1, sc->digestfp);
774                         fwrite(HKEY("\n"), 1, sc->digestfp);
775
776                         FreeStrBuf(&CC->redirect_buffer);
777
778                         sc->num_msgs_spooled += 1;
779                         free(msg);
780                 }
781         }
782
783         /*
784          * Process client-side list participations for this room
785          */
786         instr_len = SIZ;
787         if (sc->participates != NULL) {
788                 msg = CtdlFetchMessage(msgnum, 1);
789                 if (msg != NULL) {
790
791                         /* Only send messages which originated on our own Citadel
792                          * network, otherwise we'll end up sending the remote
793                          * mailing list's messages back to it, which is rude...
794                          */
795                         ok_to_participate = 0;
796                         if (msg->cm_fields['N'] != NULL) {
797                                 if (!strcasecmp(msg->cm_fields['N'], config.c_nodename)) {
798                                         ok_to_participate = 1;
799                                 }
800                                 if (is_valid_node(NULL, NULL, msg->cm_fields['N']) == 0) {
801                                         ok_to_participate = 1;
802                                 }
803                         }
804                         if (ok_to_participate) {
805                                 if (msg->cm_fields['F'] != NULL) {
806                                         free(msg->cm_fields['F']);
807                                 }
808                                 msg->cm_fields['F'] = malloc(SIZ);
809                                 /* Replace the Internet email address of the actual
810                                 * author with the email address of the room itself,
811                                 * so the remote listserv doesn't reject us.
812                                 * FIXME ... I want to be able to pick any address
813                                 */
814                                 snprintf(msg->cm_fields['F'], SIZ,
815                                         "room_%s@%s", CC->room.QRname,
816                                         config.c_fqdn);
817                                 for (i=0; msg->cm_fields['F'][i]; ++i) {
818                                         if (isspace(msg->cm_fields['F'][i])) {
819                                                 msg->cm_fields['F'][i] = '_';
820                                         }
821                                 }
822
823                                 /* 
824                                  * Figure out how big a buffer we need to allocate
825                                  */
826                                 for (nptr = sc->participates; nptr != NULL; nptr = nptr->next) {
827
828                                         if (msg->cm_fields['R'] == NULL) {
829                                                 free(msg->cm_fields['R']);
830                                         }
831                                         msg->cm_fields['R'] = strdup(nptr->name);
832         
833                                         valid = validate_recipients(nptr->name, NULL, 0);
834                                         CtdlSubmitMsg(msg, valid, "", 0);
835                                         free_recipients(valid);
836                                 }
837                         
838                         }
839                         CtdlFreeMessage(msg);
840                 }
841         }
842         
843         /*
844          * Process IGnet push shares
845          */
846         msg = CtdlFetchMessage(msgnum, 1);
847         if (msg != NULL) {
848                 size_t newpath_len;
849
850                 /* Prepend our node name to the Path field whenever
851                  * sending a message to another IGnet node
852                  */
853                 if (msg->cm_fields['P'] == NULL) {
854                         msg->cm_fields['P'] = strdup("username");
855                 }
856                 newpath_len = strlen(msg->cm_fields['P']) +
857                          strlen(config.c_nodename) + 2;
858                 newpath = malloc(newpath_len);
859                 snprintf(newpath, newpath_len, "%s!%s",
860                          config.c_nodename, msg->cm_fields['P']);
861                 free(msg->cm_fields['P']);
862                 msg->cm_fields['P'] = newpath;
863
864                 /*
865                  * Determine if this message is set to be deleted
866                  * after sending out on the network
867                  */
868                 if (msg->cm_fields['S'] != NULL) {
869                         if (!strcasecmp(msg->cm_fields['S'], "CANCEL")) {
870                                 delete_after_send = 1;
871                         }
872                 }
873
874                 /* Now send it to every node */
875                 if (sc->ignet_push_shares != NULL)
876                   for (mptr = sc->ignet_push_shares; mptr != NULL;
877                     mptr = mptr->next) {
878
879                         send = 1;
880
881                         /* Check for valid node name */
882                         if (is_valid_node(NULL, NULL, mptr->remote_nodename) != 0) {
883                                 CtdlLogPrintf(CTDL_ERR, "Invalid node <%s>\n", mptr->remote_nodename);
884                                 send = 0;
885                         }
886
887                         /* Check for split horizon */
888                         CtdlLogPrintf(CTDL_DEBUG, "Path is %s\n", msg->cm_fields['P']);
889                         bang = num_tokens(msg->cm_fields['P'], '!');
890                         if (bang > 1) for (i=0; i<(bang-1); ++i) {
891                                 extract_token(buf, msg->cm_fields['P'], i, '!', sizeof buf);
892                                 CtdlLogPrintf(CTDL_DEBUG, "Compare <%s> to <%s>\n",
893                                         buf, mptr->remote_nodename) ;
894                                 if (!strcasecmp(buf, mptr->remote_nodename)) {
895                                         send = 0;
896                                         CtdlLogPrintf(CTDL_DEBUG, "Not sending to %s\n",
897                                                 mptr->remote_nodename);
898                                 }
899                                 else {
900                                         CtdlLogPrintf(CTDL_DEBUG, "Sending to %s\n", mptr->remote_nodename);
901                                 }
902                         }
903
904                         /* Send the message */
905                         if (send == 1) {
906
907                                 /*
908                                  * Force the message to appear in the correct room
909                                  * on the far end by setting the C field correctly
910                                  */
911                                 if (msg->cm_fields['C'] != NULL) {
912                                         free(msg->cm_fields['C']);
913                                 }
914                                 if (!IsEmptyStr(mptr->remote_roomname)) {
915                                         msg->cm_fields['C'] = strdup(mptr->remote_roomname);
916                                 }
917                                 else {
918                                         msg->cm_fields['C'] = strdup(CC->room.QRname);
919                                 }
920
921                                 /* serialize it for transmission */
922                                 serialize_message(&sermsg, msg);
923                                 if (sermsg.len > 0) {
924
925                                         /* write it to a spool file */
926                                         snprintf(filename, sizeof filename,"%s/%s@%lx%x",
927                                                 ctdl_netout_dir,
928                                                 mptr->remote_nodename,
929                                                 time(NULL),
930                                                 rand()
931                                         );
932                                         CtdlLogPrintf(CTDL_DEBUG, "Appending to %s\n", filename);
933                                         fp = fopen(filename, "ab");
934                                         if (fp != NULL) {
935                                                 fwrite(sermsg.ser,
936                                                         sermsg.len, 1, fp);
937                                                 fclose(fp);
938                                         }
939                                         else {
940                                                 CtdlLogPrintf(CTDL_ERR, "%s: %s\n", filename, strerror(errno));
941                                         }
942         
943                                         /* free the serialized version */
944                                         free(sermsg.ser);
945                                 }
946
947                         }
948                 }
949                 CtdlFreeMessage(msg);
950         }
951
952         /* update lastsent */
953         sc->lastsent = msgnum;
954
955         /* Delete this message if delete-after-send is set */
956         if (delete_after_send) {
957                 CtdlDeleteMessages(CC->room.QRname, &msgnum, 1, "");
958         }
959
960 }
961         
962
963 int read_spoolcontrol_file(SpoolControl **scc, char *filename)
964 {
965         FILE *fp;
966         char instr[SIZ];
967         char buf[SIZ];
968         char nodename[256];
969         char roomname[ROOMNAMELEN];
970         size_t miscsize = 0;
971         size_t linesize = 0;
972         int skipthisline = 0;
973         namelist *nptr = NULL;
974         maplist *mptr = NULL;
975         SpoolControl *sc;
976
977         fp = fopen(filename, "r");
978         if (fp == NULL) {
979                 return 0;
980         }
981         sc = malloc(sizeof(SpoolControl));
982         memset(sc, 0, sizeof(SpoolControl));
983         *scc = sc;
984
985         while (fgets(buf, sizeof buf, fp) != NULL) {
986                 buf[strlen(buf)-1] = 0;
987
988                 extract_token(instr, buf, 0, '|', sizeof instr);
989                 if (!strcasecmp(instr, strof(lastsent))) {
990                         sc->lastsent = extract_long(buf, 1);
991                 }
992                 else if (!strcasecmp(instr, strof(listrecp))) {
993                         nptr = (namelist *)
994                                 malloc(sizeof(namelist));
995                         nptr->next = sc->listrecps;
996                         extract_token(nptr->name, buf, 1, '|', sizeof nptr->name);
997                         sc->listrecps = nptr;
998                 }
999                 else if (!strcasecmp(instr, strof(participate))) {
1000                         nptr = (namelist *)
1001                                 malloc(sizeof(namelist));
1002                         nptr->next = sc->participates;
1003                         extract_token(nptr->name, buf, 1, '|', sizeof nptr->name);
1004                         sc->participates = nptr;
1005                 }
1006                 else if (!strcasecmp(instr, strof(digestrecp))) {
1007                         nptr = (namelist *)
1008                                 malloc(sizeof(namelist));
1009                         nptr->next = sc->digestrecps;
1010                         extract_token(nptr->name, buf, 1, '|', sizeof nptr->name);
1011                         sc->digestrecps = nptr;
1012                 }
1013                 else if (!strcasecmp(instr, strof(ignet_push_share))) {
1014                         extract_token(nodename, buf, 1, '|', sizeof nodename);
1015                         extract_token(roomname, buf, 2, '|', sizeof roomname);
1016                         mptr = (maplist *) malloc(sizeof(maplist));
1017                         mptr->next = sc->ignet_push_shares;
1018                         strcpy(mptr->remote_nodename, nodename);
1019                         strcpy(mptr->remote_roomname, roomname);
1020                         sc->ignet_push_shares = mptr;
1021                 }
1022                 else {
1023                         /* Preserve 'other' lines ... *unless* they happen to
1024                          * be subscribe/unsubscribe pendings with expired
1025                          * timestamps.
1026                          */
1027                         skipthisline = 0;
1028                         if (!strncasecmp(buf, strof(subpending)"|", 11)) {
1029                                 if (time(NULL) - extract_long(buf, 4) > EXP) {
1030                                         skipthisline = 1;
1031                                 }
1032                         }
1033                         if (!strncasecmp(buf, strof(unsubpending)"|", 13)) {
1034                                 if (time(NULL) - extract_long(buf, 3) > EXP) {
1035                                         skipthisline = 1;
1036                                 }
1037                         }
1038
1039                         if (skipthisline == 0) {
1040                                 linesize = strlen(buf);
1041                                 sc->misc = realloc(sc->misc,
1042                                         (miscsize + linesize + 2) );
1043                                 sprintf(&sc->misc[miscsize], "%s\n", buf);
1044                                 miscsize = miscsize + linesize + 1;
1045                         }
1046                 }
1047
1048
1049         }
1050         fclose(fp);
1051         return 1;
1052 }
1053
1054 void free_spoolcontrol_struct(SpoolControl **scc)
1055 {
1056         SpoolControl *sc;
1057         namelist *nptr = NULL;
1058         maplist *mptr = NULL;
1059
1060         sc = *scc;
1061         while (sc->listrecps != NULL) {
1062                 nptr = sc->listrecps->next;
1063                 free(sc->listrecps);
1064                 sc->listrecps = nptr;
1065         }
1066         /* Do the same for digestrecps */
1067         while (sc->digestrecps != NULL) {
1068                 nptr = sc->digestrecps->next;
1069                 free(sc->digestrecps);
1070                 sc->digestrecps = nptr;
1071         }
1072         /* Do the same for participates */
1073         while (sc->participates != NULL) {
1074                 nptr = sc->participates->next;
1075                 free(sc->participates);
1076                 sc->participates = nptr;
1077         }
1078         while (sc->ignet_push_shares != NULL) {
1079                 mptr = sc->ignet_push_shares->next;
1080                 free(sc->ignet_push_shares);
1081                 sc->ignet_push_shares = mptr;
1082         }
1083         free(sc->misc);
1084         free(sc);
1085         *scc=NULL;
1086 }
1087
1088 int writenfree_spoolcontrol_file(SpoolControl **scc, char *filename)
1089 {
1090         char tempfilename[PATH_MAX];
1091         FILE *fp;
1092         SpoolControl *sc;
1093         namelist *nptr = NULL;
1094         maplist *mptr = NULL;
1095         long len;
1096         time_t unixtime;
1097         struct timeval tv;
1098         long reltid; /* if we don't have SYS_gettid, use "random" value */
1099         StrBuf *Cfg;
1100         int rc;
1101
1102         len = strlen(filename);
1103         memcpy(tempfilename, filename, len + 1);
1104
1105
1106 #if defined(HAVE_SYSCALL_H) && defined (SYS_gettid)
1107         reltid = syscall(SYS_gettid);
1108 #endif
1109         gettimeofday(&tv, NULL);
1110         /* Promote to time_t; types differ on some OSes (like darwin) */
1111         unixtime = tv.tv_sec;
1112
1113         sprintf(tempfilename + len, ".%ld-%ld", reltid, unixtime);
1114         sc = *scc;
1115         fp = fopen(tempfilename, "w");
1116         Cfg = NewStrBuf();
1117         if (fp == NULL) {
1118                 CtdlLogPrintf(CTDL_CRIT, "ERROR: cannot open %s: %s\n",
1119                         filename, strerror(errno));
1120                 free_spoolcontrol_struct(scc);
1121         }
1122         else {
1123                 fprintf(fp, "lastsent|%ld\n", sc->lastsent);
1124
1125                 /* Write out the listrecps while freeing from memory at the
1126                  * same time.  Am I clever or what?  :)
1127                  */
1128                 while (sc->listrecps != NULL) {
1129                         StrBufAppendPrintf(Cfg, "listrecp|%s\n", sc->listrecps->name);
1130                         nptr = sc->listrecps->next;
1131                         free(sc->listrecps);
1132                         sc->listrecps = nptr;
1133                 }
1134                 /* Do the same for digestrecps */
1135                 while (sc->digestrecps != NULL) {
1136                         StrBufAppendPrintf(Cfg, "digestrecp|%s\n", sc->digestrecps->name);
1137                         nptr = sc->digestrecps->next;
1138                         free(sc->digestrecps);
1139                         sc->digestrecps = nptr;
1140                 }
1141                 /* Do the same for participates */
1142                 while (sc->participates != NULL) {
1143                         StrBufAppendPrintf(Cfg, "participate|%s\n", sc->participates->name);
1144                         nptr = sc->participates->next;
1145                         free(sc->participates);
1146                         sc->participates = nptr;
1147                 }
1148                 while (sc->ignet_push_shares != NULL) {
1149                         StrBufAppendPrintf(Cfg, "ignet_push_share|%s", sc->ignet_push_shares->remote_nodename);
1150                         if (!IsEmptyStr(sc->ignet_push_shares->remote_roomname)) {
1151                                 StrBufAppendPrintf(Cfg, "|%s", sc->ignet_push_shares->remote_roomname);
1152                         }
1153                         StrBufAppendPrintf(Cfg, "\n");
1154                         mptr = sc->ignet_push_shares->next;
1155                         free(sc->ignet_push_shares);
1156                         sc->ignet_push_shares = mptr;
1157                 }
1158                 if (sc->misc != NULL) {
1159                         StrBufAppendBufPlain(Cfg, sc->misc, -1, 0);
1160                 }
1161                 free(sc->misc);
1162
1163                 rc = fwrite(ChrPtr(Cfg), StrLength(Cfg), 1, fp);
1164                 if (rc >=0)
1165                 {
1166                         fclose(fp);
1167                         rename(filename, tempfilename);
1168                 }
1169                 else {
1170                         CtdlLogPrintf(CTDL_EMERG, 
1171                                       "unable to write %s; not enough space on the disk?\n", 
1172                                       tempfilename);
1173                         fclose(fp);
1174                 }
1175                 FreeStrBuf(&Cfg);
1176                 free(sc);
1177                 *scc=NULL;
1178         }
1179         return 1;
1180 }
1181 int is_recipient(SpoolControl *sc, const char *Name)
1182 {
1183         namelist *nptr;
1184         size_t len;
1185
1186         len = strlen(Name);
1187         nptr = sc->listrecps;
1188         while (nptr != NULL) {
1189                 if (strncmp(Name, nptr->name, len)==0)
1190                         return 1;
1191                 nptr = nptr->next;
1192         }
1193         /* Do the same for digestrecps */
1194         nptr = sc->digestrecps;
1195         while (nptr != NULL) {
1196                 if (strncmp(Name, nptr->name, len)==0)
1197                         return 1;
1198                 nptr = nptr->next;
1199         }
1200         /* Do the same for participates */
1201         nptr = sc->participates;
1202         while (nptr != NULL) {
1203                 if (strncmp(Name, nptr->name, len)==0)
1204                         return 1;
1205                 nptr = nptr->next;
1206         }
1207         return 0;
1208 }
1209
1210
1211 /*
1212  * Batch up and send all outbound traffic from the current room
1213  */
1214 void network_spoolout_room(char *room_to_spool) {
1215         char buf[SIZ];
1216         char filename[PATH_MAX];
1217         SpoolControl *sc;
1218         int i;
1219
1220         /*
1221          * If the room doesn't exist, don't try to perform its networking tasks.
1222          * Normally this should never happen, but once in a while maybe a room gets
1223          * queued for networking and then deleted before it can happen.
1224          */
1225         if (CtdlGetRoom(&CC->room, room_to_spool) != 0) {
1226                 CtdlLogPrintf(CTDL_CRIT, "ERROR: cannot load <%s>\n", room_to_spool);
1227                 return;
1228         }
1229
1230         assoc_file_name(filename, sizeof filename, &CC->room, ctdl_netcfg_dir);
1231         begin_critical_section(S_NETCONFIGS);
1232
1233         /* Only do net processing for rooms that have netconfigs */
1234         if (!read_spoolcontrol_file(&sc, filename))
1235         {
1236                 end_critical_section(S_NETCONFIGS);
1237                 return;
1238         }
1239         CtdlLogPrintf(CTDL_INFO, "Networking started for <%s>\n", CC->room.QRname);
1240
1241         /* If there are digest recipients, we have to build a digest */
1242         if (sc->digestrecps != NULL) {
1243                 sc->digestfp = tmpfile();
1244                 fprintf(sc->digestfp, "Content-type: text/plain\n\n");
1245         }
1246
1247         /* Do something useful */
1248         CtdlForEachMessage(MSGS_GT, sc->lastsent, NULL, NULL, NULL,
1249                 network_spool_msg, sc);
1250
1251         /* If we wrote a digest, deliver it and then close it */
1252         snprintf(buf, sizeof buf, "room_%s@%s",
1253                 CC->room.QRname, config.c_fqdn);
1254         for (i=0; buf[i]; ++i) {
1255                 buf[i] = tolower(buf[i]);
1256                 if (isspace(buf[i])) buf[i] = '_';
1257         }
1258         if (sc->digestfp != NULL) {
1259                 fprintf(sc->digestfp,   " -----------------------------------"
1260                                         "------------------------------------"
1261                                         "-------\n"
1262                                         "You are subscribed to the '%s' "
1263                                         "list.\n"
1264                                         "To post to the list: %s\n",
1265                                         CC->room.QRname, buf
1266                 );
1267                 network_deliver_digest(sc);     /* deliver and close */
1268         }
1269
1270         /* Now rewrite the config file */
1271         writenfree_spoolcontrol_file (&sc, filename);
1272         end_critical_section(S_NETCONFIGS);
1273 }
1274
1275
1276
1277 /*
1278  * Send the *entire* contents of the current room to one specific network node,
1279  * ignoring anything we know about which messages have already undergone
1280  * network processing.  This can be used to bring a new node into sync.
1281  */
1282 int network_sync_to(char *target_node) {
1283         SpoolControl sc;
1284         int num_spooled = 0;
1285         int found_node = 0;
1286         char buf[256];
1287         char sc_type[256];
1288         char sc_node[256];
1289         char sc_room[256];
1290         char filename[PATH_MAX];
1291         FILE *fp;
1292
1293         /* Grab the configuration line we're looking for */
1294         assoc_file_name(filename, sizeof filename, &CC->room, ctdl_netcfg_dir);
1295         begin_critical_section(S_NETCONFIGS);
1296         fp = fopen(filename, "r");
1297         if (fp == NULL) {
1298                 end_critical_section(S_NETCONFIGS);
1299                 return(-1);
1300         }
1301         while (fgets(buf, sizeof buf, fp) != NULL) {
1302                 buf[strlen(buf)-1] = 0;
1303                 extract_token(sc_type, buf, 0, '|', sizeof sc_type);
1304                 extract_token(sc_node, buf, 1, '|', sizeof sc_node);
1305                 extract_token(sc_room, buf, 2, '|', sizeof sc_room);
1306                 if ( (!strcasecmp(sc_type, "ignet_push_share"))
1307                    && (!strcasecmp(sc_node, target_node)) ) {
1308                         found_node = 1;
1309                         
1310                         /* Concise syntax because we don't need a full linked-list */
1311                         memset(&sc, 0, sizeof(SpoolControl));
1312                         sc.ignet_push_shares = (maplist *)
1313                                 malloc(sizeof(maplist));
1314                         sc.ignet_push_shares->next = NULL;
1315                         safestrncpy(sc.ignet_push_shares->remote_nodename,
1316                                 sc_node,
1317                                 sizeof sc.ignet_push_shares->remote_nodename);
1318                         safestrncpy(sc.ignet_push_shares->remote_roomname,
1319                                 sc_room,
1320                                 sizeof sc.ignet_push_shares->remote_roomname);
1321                 }
1322         }
1323         fclose(fp);
1324         end_critical_section(S_NETCONFIGS);
1325
1326         if (!found_node) return(-1);
1327
1328         /* Send ALL messages */
1329         num_spooled = CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, NULL,
1330                 network_spool_msg, &sc);
1331
1332         /* Concise cleanup because we know there's only one node in the sc */
1333         free(sc.ignet_push_shares);
1334
1335         CtdlLogPrintf(CTDL_NOTICE, "Synchronized %d messages to <%s>\n",
1336                 num_spooled, target_node);
1337         return(num_spooled);
1338 }
1339
1340
1341 /*
1342  * Implements the NSYN command
1343  */
1344 void cmd_nsyn(char *argbuf) {
1345         int num_spooled;
1346         char target_node[256];
1347
1348         if (CtdlAccessCheck(ac_aide)) return;
1349
1350         extract_token(target_node, argbuf, 0, '|', sizeof target_node);
1351         num_spooled = network_sync_to(target_node);
1352         if (num_spooled >= 0) {
1353                 cprintf("%d Spooled %d messages.\n", CIT_OK, num_spooled);
1354         }
1355         else {
1356                 cprintf("%d No such room/node share exists.\n",
1357                         ERROR + ROOM_NOT_FOUND);
1358         }
1359 }
1360
1361
1362
1363 /*
1364  * Batch up and send all outbound traffic from the current room
1365  */
1366 void network_queue_room(struct ctdlroom *qrbuf, void *data) {
1367         struct RoomProcList *ptr;
1368
1369         ptr = (struct RoomProcList *) malloc(sizeof (struct RoomProcList));
1370         if (ptr == NULL) return;
1371
1372         safestrncpy(ptr->name, qrbuf->QRname, sizeof ptr->name);
1373         begin_critical_section(S_RPLIST);
1374         ptr->next = rplist;
1375         rplist = ptr;
1376         end_critical_section(S_RPLIST);
1377 }
1378
1379 void destroy_network_queue_room(void)
1380 {
1381         struct RoomProcList *cur, *p;
1382         NetMap *nmcur, *nmp;
1383
1384         cur = rplist;
1385         begin_critical_section(S_RPLIST);
1386         while (cur != NULL)
1387         {
1388                 p = cur->next;
1389                 free (cur);
1390                 cur = p;                
1391         }
1392         rplist = NULL;
1393         end_critical_section(S_RPLIST);
1394
1395         nmcur = the_netmap;
1396         while (nmcur != NULL)
1397         {
1398                 nmp = nmcur->next;
1399                 free (nmcur);
1400                 nmcur = nmp;            
1401         }
1402         the_netmap = NULL;
1403         if (working_ignetcfg != NULL)
1404                 free (working_ignetcfg);
1405         working_ignetcfg = NULL;
1406 }
1407
1408
1409 /*
1410  * Learn topology from path fields
1411  */
1412 void network_learn_topology(char *node, char *path) {
1413         char nexthop[256];
1414         NetMap *nmptr;
1415
1416         strcpy(nexthop, "");
1417
1418         if (num_tokens(path, '!') < 3) return;
1419         for (nmptr = the_netmap; nmptr != NULL; nmptr = nmptr->next) {
1420                 if (!strcasecmp(nmptr->nodename, node)) {
1421                         extract_token(nmptr->nexthop, path, 0, '!', sizeof nmptr->nexthop);
1422                         nmptr->lastcontact = time(NULL);
1423                         ++netmap_changed;
1424                         return;
1425                 }
1426         }
1427
1428         /* If we got here then it's not in the map, so add it. */
1429         nmptr = (NetMap *) malloc(sizeof (NetMap));
1430         strcpy(nmptr->nodename, node);
1431         nmptr->lastcontact = time(NULL);
1432         extract_token(nmptr->nexthop, path, 0, '!', sizeof nmptr->nexthop);
1433         nmptr->next = the_netmap;
1434         the_netmap = nmptr;
1435         ++netmap_changed;
1436 }
1437
1438
1439
1440
1441 /*
1442  * Bounce a message back to the sender
1443  */
1444 void network_bounce(struct CtdlMessage *msg, char *reason) {
1445         char *oldpath = NULL;
1446         char buf[SIZ];
1447         char bouncesource[SIZ];
1448         char recipient[SIZ];
1449         struct recptypes *valid = NULL;
1450         char force_room[ROOMNAMELEN];
1451         static int serialnum = 0;
1452         size_t size;
1453
1454         CtdlLogPrintf(CTDL_DEBUG, "entering network_bounce()\n");
1455
1456         if (msg == NULL) return;
1457
1458         snprintf(bouncesource, sizeof bouncesource, "%s@%s", BOUNCESOURCE, config.c_nodename);
1459
1460         /* 
1461          * Give it a fresh message ID
1462          */
1463         if (msg->cm_fields['I'] != NULL) {
1464                 free(msg->cm_fields['I']);
1465         }
1466         snprintf(buf, sizeof buf, "%ld.%04lx.%04x@%s",
1467                 (long)time(NULL), (long)getpid(), ++serialnum, config.c_fqdn);
1468         msg->cm_fields['I'] = strdup(buf);
1469
1470         /*
1471          * FIXME ... right now we're just sending a bounce; we really want to
1472          * include the text of the bounced message.
1473          */
1474         if (msg->cm_fields['M'] != NULL) {
1475                 free(msg->cm_fields['M']);
1476         }
1477         msg->cm_fields['M'] = strdup(reason);
1478         msg->cm_format_type = 0;
1479
1480         /*
1481          * Turn the message around
1482          */
1483         if (msg->cm_fields['R'] == NULL) {
1484                 free(msg->cm_fields['R']);
1485         }
1486
1487         if (msg->cm_fields['D'] == NULL) {
1488                 free(msg->cm_fields['D']);
1489         }
1490
1491         snprintf(recipient, sizeof recipient, "%s@%s",
1492                 msg->cm_fields['A'], msg->cm_fields['N']);
1493
1494         if (msg->cm_fields['A'] == NULL) {
1495                 free(msg->cm_fields['A']);
1496         }
1497
1498         if (msg->cm_fields['N'] == NULL) {
1499                 free(msg->cm_fields['N']);
1500         }
1501
1502         if (msg->cm_fields['U'] == NULL) {
1503                 free(msg->cm_fields['U']);
1504         }
1505
1506         msg->cm_fields['A'] = strdup(BOUNCESOURCE);
1507         msg->cm_fields['N'] = strdup(config.c_nodename);
1508         msg->cm_fields['U'] = strdup("Delivery Status Notification (Failure)");
1509
1510         /* prepend our node to the path */
1511         if (msg->cm_fields['P'] != NULL) {
1512                 oldpath = msg->cm_fields['P'];
1513                 msg->cm_fields['P'] = NULL;
1514         }
1515         else {
1516                 oldpath = strdup("unknown_user");
1517         }
1518         size = strlen(oldpath) + SIZ;
1519         msg->cm_fields['P'] = malloc(size);
1520         snprintf(msg->cm_fields['P'], size, "%s!%s", config.c_nodename, oldpath);
1521         free(oldpath);
1522
1523         /* Now submit the message */
1524         valid = validate_recipients(recipient, NULL, 0);
1525         if (valid != NULL) if (valid->num_error != 0) {
1526                 free_recipients(valid);
1527                 valid = NULL;
1528         }
1529         if ( (valid == NULL) || (!strcasecmp(recipient, bouncesource)) ) {
1530                 strcpy(force_room, config.c_aideroom);
1531         }
1532         else {
1533                 strcpy(force_room, "");
1534         }
1535         if ( (valid == NULL) && IsEmptyStr(force_room) ) {
1536                 strcpy(force_room, config.c_aideroom);
1537         }
1538         CtdlSubmitMsg(msg, valid, force_room, 0);
1539
1540         /* Clean up */
1541         if (valid != NULL) free_recipients(valid);
1542         CtdlFreeMessage(msg);
1543         CtdlLogPrintf(CTDL_DEBUG, "leaving network_bounce()\n");
1544 }
1545
1546
1547
1548
1549 /*
1550  * Process a buffer containing a single message from a single file
1551  * from the inbound queue 
1552  */
1553 void network_process_buffer(char *buffer, long size) {
1554         struct CtdlMessage *msg = NULL;
1555         long pos;
1556         int field;
1557         struct recptypes *recp = NULL;
1558         char target_room[ROOMNAMELEN];
1559         struct ser_ret sermsg;
1560         char *oldpath = NULL;
1561         char filename[PATH_MAX];
1562         FILE *fp;
1563         char nexthop[SIZ];
1564         unsigned char firstbyte;
1565         unsigned char lastbyte;
1566
1567         CtdlLogPrintf(CTDL_DEBUG, "network_process_buffer() processing %ld bytes\n", size);
1568
1569         /* Validate just a little bit.  First byte should be FF and * last byte should be 00. */
1570         firstbyte = buffer[0];
1571         lastbyte = buffer[size-1];
1572         if ( (firstbyte != 255) || (lastbyte != 0) ) {
1573                 CtdlLogPrintf(CTDL_ERR, "Corrupt message ignored.  Length=%ld, firstbyte = %d, lastbyte = %d\n",
1574                         size, firstbyte, lastbyte);
1575                 return;
1576         }
1577
1578         /* Set default target room to trash */
1579         strcpy(target_room, TWITROOM);
1580
1581         /* Load the message into memory */
1582         msg = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
1583         memset(msg, 0, sizeof(struct CtdlMessage));
1584         msg->cm_magic = CTDLMESSAGE_MAGIC;
1585         msg->cm_anon_type = buffer[1];
1586         msg->cm_format_type = buffer[2];
1587
1588         for (pos = 3; pos < size; ++pos) {
1589                 field = buffer[pos];
1590                 msg->cm_fields[field] = strdup(&buffer[pos+1]);
1591                 pos = pos + strlen(&buffer[(int)pos]);
1592         }
1593
1594         /* Check for message routing */
1595         if (msg->cm_fields['D'] != NULL) {
1596                 if (strcasecmp(msg->cm_fields['D'], config.c_nodename)) {
1597
1598                         /* route the message */
1599                         strcpy(nexthop, "");
1600                         if (is_valid_node(nexthop, NULL, msg->cm_fields['D']) == 0) {
1601                                 /* prepend our node to the path */
1602                                 if (msg->cm_fields['P'] != NULL) {
1603                                         oldpath = msg->cm_fields['P'];
1604                                         msg->cm_fields['P'] = NULL;
1605                                 }
1606                                 else {
1607                                         oldpath = strdup("unknown_user");
1608                                 }
1609                                 size = strlen(oldpath) + SIZ;
1610                                 msg->cm_fields['P'] = malloc(size);
1611                                 snprintf(msg->cm_fields['P'], size, "%s!%s",
1612                                         config.c_nodename, oldpath);
1613                                 free(oldpath);
1614
1615                                 /* serialize the message */
1616                                 serialize_message(&sermsg, msg);
1617
1618                                 /* now send it */
1619                                 if (IsEmptyStr(nexthop)) {
1620                                         strcpy(nexthop, msg->cm_fields['D']);
1621                                 }
1622                                 snprintf(filename, 
1623                                         sizeof filename,
1624                                         "%s/%s@%lx%x",
1625                                         ctdl_netout_dir,
1626                                         nexthop,
1627                                         time(NULL),
1628                                         rand()
1629                                 );
1630                                 CtdlLogPrintf(CTDL_DEBUG, "Appending to %s\n", filename);
1631                                 fp = fopen(filename, "ab");
1632                                 if (fp != NULL) {
1633                                         fwrite(sermsg.ser, sermsg.len, 1, fp);
1634                                         fclose(fp);
1635                                 }
1636                                 else {
1637                                         CtdlLogPrintf(CTDL_ERR, "%s: %s\n", filename, strerror(errno));
1638                                 }
1639                                 free(sermsg.ser);
1640                                 CtdlFreeMessage(msg);
1641                                 return;
1642                         }
1643                         
1644                         else {  /* invalid destination node name */
1645
1646                                 network_bounce(msg,
1647 "A message you sent could not be delivered due to an invalid destination node"
1648 " name.  Please check the address and try sending the message again.\n");
1649                                 msg = NULL;
1650                                 return;
1651
1652                         }
1653                 }
1654         }
1655
1656         /*
1657          * Check to see if we already have a copy of this message, and
1658          * abort its processing if so.  (We used to post a warning to Aide>
1659          * every time this happened, but the network is now so densely
1660          * connected that it's inevitable.)
1661          */
1662         if (network_usetable(msg) != 0) {
1663                 CtdlFreeMessage(msg);
1664                 return;
1665         }
1666
1667         /* Learn network topology from the path */
1668         if ((msg->cm_fields['N'] != NULL) && (msg->cm_fields['P'] != NULL)) {
1669                 network_learn_topology(msg->cm_fields['N'], msg->cm_fields['P']);
1670         }
1671
1672         /* Is the sending node giving us a very persuasive suggestion about
1673          * which room this message should be saved in?  If so, go with that.
1674          */
1675         if (msg->cm_fields['C'] != NULL) {
1676                 safestrncpy(target_room, msg->cm_fields['C'], sizeof target_room);
1677         }
1678
1679         /* Otherwise, does it have a recipient?  If so, validate it... */
1680         else if (msg->cm_fields['R'] != NULL) {
1681                 recp = validate_recipients(msg->cm_fields['R'], NULL, 0);
1682                 if (recp != NULL) if (recp->num_error != 0) {
1683                         network_bounce(msg,
1684                                 "A message you sent could not be delivered due to an invalid address.\n"
1685                                 "Please check the address and try sending the message again.\n");
1686                         msg = NULL;
1687                         free_recipients(recp);
1688                         CtdlLogPrintf(CTDL_DEBUG, "Bouncing message due to invalid recipient address.\n");
1689                         return;
1690                 }
1691                 strcpy(target_room, "");        /* no target room if mail */
1692         }
1693
1694         /* Our last shot at finding a home for this message is to see if
1695          * it has the O field (Originating room) set.
1696          */
1697         else if (msg->cm_fields['O'] != NULL) {
1698                 safestrncpy(target_room, msg->cm_fields['O'], sizeof target_room);
1699         }
1700
1701         /* Strip out fields that are only relevant during transit */
1702         if (msg->cm_fields['D'] != NULL) {
1703                 free(msg->cm_fields['D']);
1704                 msg->cm_fields['D'] = NULL;
1705         }
1706         if (msg->cm_fields['C'] != NULL) {
1707                 free(msg->cm_fields['C']);
1708                 msg->cm_fields['C'] = NULL;
1709         }
1710
1711         /* save the message into a room */
1712         if (PerformNetprocHooks(msg, target_room) == 0) {
1713                 msg->cm_flags = CM_SKIP_HOOKS;
1714                 CtdlSubmitMsg(msg, recp, target_room, 0);
1715         }
1716         CtdlFreeMessage(msg);
1717         free_recipients(recp);
1718 }
1719
1720
1721 /*
1722  * Process a single message from a single file from the inbound queue 
1723  */
1724 void network_process_message(FILE *fp, long msgstart, long msgend) {
1725         long hold_pos;
1726         long size;
1727         char *buffer;
1728
1729         hold_pos = ftell(fp);
1730         size = msgend - msgstart + 1;
1731         buffer = malloc(size);
1732         if (buffer != NULL) {
1733                 fseek(fp, msgstart, SEEK_SET);
1734                 if (fread(buffer, size, 1, fp) > 0) {
1735                         network_process_buffer(buffer, size);
1736                 }
1737                 free(buffer);
1738         }
1739
1740         fseek(fp, hold_pos, SEEK_SET);
1741 }
1742
1743
1744 /*
1745  * Process a single file from the inbound queue 
1746  */
1747 void network_process_file(char *filename) {
1748         FILE *fp;
1749         long msgstart = (-1L);
1750         long msgend = (-1L);
1751         long msgcur = 0L;
1752         int ch;
1753
1754
1755         fp = fopen(filename, "rb");
1756         if (fp == NULL) {
1757                 CtdlLogPrintf(CTDL_CRIT, "Error opening %s: %s\n", filename, strerror(errno));
1758                 return;
1759         }
1760
1761         fseek(fp, 0L, SEEK_END);
1762         CtdlLogPrintf(CTDL_INFO, "network: processing %ld bytes from %s\n", ftell(fp), filename);
1763         rewind(fp);
1764
1765         /* Look for messages in the data stream and break them out */
1766         while (ch = getc(fp), ch >= 0) {
1767         
1768                 if (ch == 255) {
1769                         if (msgstart >= 0L) {
1770                                 msgend = msgcur - 1;
1771                                 network_process_message(fp, msgstart, msgend);
1772                         }
1773                         msgstart = msgcur;
1774                 }
1775
1776                 ++msgcur;
1777         }
1778
1779         msgend = msgcur - 1;
1780         if (msgstart >= 0L) {
1781                 network_process_message(fp, msgstart, msgend);
1782         }
1783
1784         fclose(fp);
1785         unlink(filename);
1786 }
1787
1788
1789 /*
1790  * Process anything in the inbound queue
1791  */
1792 void network_do_spoolin(void) {
1793         DIR *dp;
1794         struct dirent *d;
1795         struct stat statbuf;
1796         char filename[PATH_MAX];
1797         static time_t last_spoolin_mtime = 0L;
1798
1799         /*
1800          * Check the spoolin directory's modification time.  If it hasn't
1801          * been touched, we don't need to scan it.
1802          */
1803         if (stat(ctdl_netin_dir, &statbuf)) return;
1804         if (statbuf.st_mtime == last_spoolin_mtime) {
1805                 CtdlLogPrintf(CTDL_DEBUG, "network: nothing in inbound queue\n");
1806                 return;
1807         }
1808         last_spoolin_mtime = statbuf.st_mtime;
1809         CtdlLogPrintf(CTDL_DEBUG, "network: processing inbound queue\n");
1810
1811         /*
1812          * Ok, there's something interesting in there, so scan it.
1813          */
1814         dp = opendir(ctdl_netin_dir);
1815         if (dp == NULL) return;
1816
1817         while (d = readdir(dp), d != NULL) {
1818                 if ((strcmp(d->d_name, ".")) && (strcmp(d->d_name, ".."))) {
1819                         snprintf(filename, 
1820                                 sizeof filename,
1821                                 "%s/%s",
1822                                 ctdl_netin_dir,
1823                                 d->d_name
1824                         );
1825                         network_process_file(filename);
1826                 }
1827         }
1828
1829         closedir(dp);
1830 }
1831
1832 /*
1833  * Step 1: consolidate files in the outbound queue into one file per neighbor node
1834  * Step 2: delete any files in the outbound queue that were for neighbors who no longer exist.
1835  */
1836 void network_consolidate_spoolout(void) {
1837         DIR *dp;
1838         struct dirent *d;
1839         char filename[PATH_MAX];
1840         char cmd[PATH_MAX];
1841         char nexthop[256];
1842         int i;
1843         char *ptr;
1844
1845         /* Step 1: consolidate files in the outbound queue into one file per neighbor node */
1846         dp = opendir(ctdl_netout_dir);
1847         if (dp == NULL) return;
1848         while (d = readdir(dp), d != NULL) {
1849                 if (
1850                         (strcmp(d->d_name, "."))
1851                         && (strcmp(d->d_name, ".."))
1852                         && (strchr(d->d_name, '@') != NULL)
1853                 ) {
1854                         safestrncpy(nexthop, d->d_name, sizeof nexthop);
1855                         ptr = strchr(nexthop, '@');
1856                         if (ptr) *ptr = 0;
1857         
1858                         snprintf(filename, 
1859                                 sizeof filename,
1860                                 "%s/%s",
1861                                 ctdl_netout_dir,
1862                                 d->d_name
1863                         );
1864         
1865                         CtdlLogPrintf(CTDL_DEBUG, "Consolidate %s to %s\n", filename, nexthop);
1866                         if (network_talking_to(nexthop, NTT_CHECK)) {
1867                                 CtdlLogPrintf(CTDL_DEBUG,
1868                                         "Currently online with %s - skipping for now\n",
1869                                         nexthop
1870                                 );
1871                         }
1872                         else {
1873                                 network_talking_to(nexthop, NTT_ADD);
1874                                 snprintf(cmd, sizeof cmd, "/bin/cat %s >>%s/%s && /bin/rm -f %s",
1875                                         filename,
1876                                         ctdl_netout_dir, nexthop,
1877                                         filename
1878                                 );
1879                                 system(cmd);
1880                                 network_talking_to(nexthop, NTT_REMOVE);
1881                         }
1882                 }
1883         }
1884         closedir(dp);
1885
1886         /* Step 2: delete any files in the outbound queue that were for neighbors who no longer exist */
1887
1888         dp = opendir(ctdl_netout_dir);
1889         if (dp == NULL) return;
1890
1891         while (d = readdir(dp), d != NULL) {
1892                 if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
1893                         continue;
1894                 ptr = strchr(d->d_name, '@');
1895                 if (d != NULL)
1896                         continue;
1897                 snprintf(filename, 
1898                         sizeof filename,
1899                         "%s/%s",
1900                         ctdl_netout_dir,
1901                         d->d_name
1902                 );
1903
1904                 strcpy(nexthop, "");
1905                 i = is_valid_node(nexthop, NULL, d->d_name);
1906         
1907                 if ( (i != 0) || !IsEmptyStr(nexthop) ) {
1908                         unlink(filename);
1909                 }
1910         }
1911
1912
1913         closedir(dp);
1914 }
1915
1916
1917 /*
1918  * receive network spool from the remote system
1919  */
1920 void receive_spool(int *sock, char *remote_nodename) {
1921         long download_len = 0L;
1922         long bytes_received = 0L;
1923         char buf[SIZ];
1924         static char pbuf[IGNET_PACKET_SIZE];
1925         char tempfilename[PATH_MAX];
1926         char permfilename[PATH_MAX];
1927         long plen;
1928         FILE *fp;
1929
1930         snprintf(tempfilename, 
1931                 sizeof tempfilename, 
1932                 "%s/%s.%lx%x",
1933                 ctdl_nettmp_dir,
1934                 remote_nodename, 
1935                 time(NULL),
1936                 rand()
1937         );
1938
1939         snprintf(permfilename, 
1940                 sizeof permfilename, 
1941                 "%s/%s.%lx%x",
1942                 ctdl_netin_dir,
1943                 remote_nodename, 
1944                 time(NULL),
1945                 rand()
1946         );
1947
1948         if (sock_puts(sock, "NDOP") < 0) return;
1949         if (sock_getln(sock, buf, sizeof buf) < 0) return;
1950         CtdlLogPrintf(CTDL_DEBUG, "<%s\n", buf);
1951         if (buf[0] != '2') {
1952                 return;
1953         }
1954         download_len = extract_long(&buf[4], 0);
1955
1956         if (download_len>0) {
1957                 bytes_received = 0L;
1958                 fp = fopen(tempfilename, "w");
1959                 if (fp == NULL) {
1960                         CtdlLogPrintf(CTDL_CRIT, "cannot open download file locally: %s\n",
1961                                       strerror(errno));
1962                         return;
1963                 }
1964
1965                 CtdlLogPrintf(CTDL_DEBUG, "For this download we are expecting %d bytes\n", download_len);
1966                 while (bytes_received < download_len) {
1967                         /*
1968                          * If shutting down we can exit here and unlink the temp file.
1969                          * this shouldn't loose us any messages.
1970                          */
1971                         if (CtdlThreadCheckStop())
1972                         {
1973                                 fclose(fp);
1974                                 unlink(tempfilename);
1975                                 return;
1976                         }
1977                         snprintf(buf, sizeof buf, "READ %ld|%ld",
1978                                  bytes_received,
1979                                  ((download_len - bytes_received > IGNET_PACKET_SIZE)
1980                                   ? IGNET_PACKET_SIZE : (download_len - bytes_received)));
1981                         
1982                         if (sock_puts(sock, buf) < 0) {
1983                                 fclose(fp);
1984                                 unlink(tempfilename);
1985                                 return;
1986                         }
1987                         if (sock_getln(sock, buf, sizeof buf) < 0) {
1988                                 fclose(fp);
1989                                 unlink(tempfilename);
1990                                 return;
1991                         }
1992                         
1993                         if (buf[0] == '6') {
1994                                 plen = extract_long(&buf[4], 0);
1995                                 if (sock_read(sock, pbuf, plen, 1) < 0) {
1996                                         fclose(fp);
1997                                         unlink(tempfilename);
1998                                         return;
1999                                 }
2000                                 fwrite((char *) pbuf, plen, 1, fp);
2001                                 bytes_received = bytes_received + plen;
2002                         }
2003                 }
2004
2005                 fclose(fp);
2006         }
2007         /* Last chance for shutdown exit */
2008         if (CtdlThreadCheckStop())
2009         {
2010                 unlink(tempfilename);
2011                 return;
2012         }
2013
2014         if (sock_puts(sock, "CLOS") < 0) {
2015                 unlink(tempfilename);
2016                 return;
2017         }
2018
2019         /*
2020          * From here on we must complete or messages will get lost
2021          */
2022         if (sock_getln(sock, buf, sizeof buf) < 0) {
2023                 unlink(tempfilename);
2024                 return;
2025         }
2026         if (download_len > 0) {
2027                 CtdlLogPrintf(CTDL_NOTICE, "Received %ld octets from <%s>\n", download_len, remote_nodename);
2028         }
2029         CtdlLogPrintf(CTDL_DEBUG, "%s\n", buf);
2030         
2031         /* Now move the temp file to its permanent location.
2032          */
2033         if (link(tempfilename, permfilename) != 0) {
2034                 CtdlLogPrintf(CTDL_ALERT, "Could not link %s to %s: %s\n",
2035                         tempfilename, permfilename, strerror(errno)
2036                 );
2037         }
2038         unlink(tempfilename);
2039 }
2040
2041
2042
2043 /*
2044  * transmit network spool to the remote system
2045  */
2046 void transmit_spool(int *sock, char *remote_nodename)
2047 {
2048         char buf[SIZ];
2049         char pbuf[4096];
2050         long plen;
2051         long bytes_to_write, thisblock, bytes_written;
2052         int fd;
2053         char sfname[128];
2054
2055         if (sock_puts(sock, "NUOP") < 0) return;
2056         if (sock_getln(sock, buf, sizeof buf) < 0) return;
2057         CtdlLogPrintf(CTDL_DEBUG, "<%s\n", buf);
2058         if (buf[0] != '2') {
2059                 return;
2060         }
2061
2062         snprintf(sfname, sizeof sfname, 
2063                 "%s/%s",
2064                 ctdl_netout_dir,
2065                 remote_nodename
2066         );
2067         fd = open(sfname, O_RDONLY);
2068         if (fd < 0) {
2069                 if (errno != ENOENT) {
2070                         CtdlLogPrintf(CTDL_CRIT, "cannot open %s: %s\n", sfname, strerror(errno));
2071                 }
2072                 return;
2073         }
2074         bytes_written = 0;
2075         while (plen = (long) read(fd, pbuf, IGNET_PACKET_SIZE), plen > 0L) {
2076                 bytes_to_write = plen;
2077                 while (bytes_to_write > 0L) {
2078                         /* Exit if shutting down */
2079                         if (CtdlThreadCheckStop())
2080                         {
2081                                 close(fd);
2082                                 return;
2083                         }
2084                         
2085                         snprintf(buf, sizeof buf, "WRIT %ld", bytes_to_write);
2086                         if (sock_puts(sock, buf) < 0) {
2087                                 close(fd);
2088                                 return;
2089                         }
2090                         if (sock_getln(sock, buf, sizeof buf) < 0) {
2091                                 close(fd);
2092                                 return;
2093                         }
2094                         thisblock = atol(&buf[4]);
2095                         if (buf[0] == '7') {
2096                                 if (sock_write(sock, pbuf, (int) thisblock) < 0) {
2097                                         close(fd);
2098                                         return;
2099                                 }
2100                                 bytes_to_write -= thisblock;
2101                                 bytes_written += thisblock;
2102                         } else {
2103                                 goto ABORTUPL;
2104                         }
2105                 }
2106         }
2107
2108 ABORTUPL:
2109         close(fd);
2110
2111         /* Last chance for shutdown exit */
2112         if(CtdlThreadCheckStop())
2113                 return;
2114                 
2115         if (sock_puts(sock, "UCLS 1") < 0) return;
2116
2117         /*
2118          * From here on we must complete or messages will get lost
2119          */
2120         if (sock_getln(sock, buf, sizeof buf) < 0) return;
2121         CtdlLogPrintf(CTDL_NOTICE, "Sent %ld octets to <%s>\n", bytes_written, remote_nodename);
2122         CtdlLogPrintf(CTDL_DEBUG, "<%s\n", buf);
2123         if (buf[0] == '2') {
2124                 CtdlLogPrintf(CTDL_DEBUG, "Removing <%s>\n", sfname);
2125                 unlink(sfname);
2126         }
2127 }
2128
2129
2130
2131 /*
2132  * Poll one Citadel node (called by network_poll_other_citadel_nodes() below)
2133  */
2134 void network_poll_node(char *node, char *secret, char *host, char *port) {
2135         int sock;
2136         char buf[SIZ];
2137         char err_buf[SIZ];
2138         char connected_to[SIZ];
2139         CitContext *CCC=CC;
2140
2141         if (network_talking_to(node, NTT_CHECK)) return;
2142         network_talking_to(node, NTT_ADD);
2143         CtdlLogPrintf(CTDL_DEBUG, "network: polling <%s>\n", node);
2144         CtdlLogPrintf(CTDL_NOTICE, "Connecting to <%s> at %s:%s\n", node, host, port);
2145
2146         sock = sock_connect(host, port, "tcp");
2147         if (sock < 0) {
2148                 CtdlLogPrintf(CTDL_ERR, "Could not connect: %s\n", strerror(errno));
2149                 network_talking_to(node, NTT_REMOVE);
2150                 return;
2151         }
2152         
2153         CtdlLogPrintf(CTDL_DEBUG, "Connected!\n");
2154         CCC->sReadBuf = NewStrBuf();
2155         CCC->sMigrateBuf = NewStrBuf();
2156         CCC->sPos = NULL;
2157
2158         /* Read the server greeting */
2159         if (sock_getln(&sock, buf, sizeof buf) < 0) goto bail;
2160         CtdlLogPrintf(CTDL_DEBUG, ">%s\n", buf);
2161
2162         /* Check that the remote is who we think it is and warn the Aide if not */
2163         extract_token (connected_to, buf, 1, ' ', sizeof connected_to);
2164         if (strcmp(connected_to, node))
2165         {
2166                 snprintf(err_buf, sizeof(err_buf),
2167                         "Connected to node \"%s\" but I was expecting to connect to node \"%s\".",
2168                         connected_to, node
2169                 );
2170                 CtdlLogPrintf(CTDL_ERR, "%s\n", err_buf);
2171                 CtdlAideMessage(err_buf, "Network error");
2172         }
2173         else {
2174                 /* We're talking to the correct node.  Now identify ourselves. */
2175                 snprintf(buf, sizeof buf, "NETP %s|%s", config.c_nodename, secret);
2176                 CtdlLogPrintf(CTDL_DEBUG, "<%s\n", buf);
2177                 if (sock_puts(&sock, buf) <0) goto bail;
2178                 if (sock_getln(&sock, buf, sizeof buf) < 0) goto bail;
2179                 CtdlLogPrintf(CTDL_DEBUG, ">%s\n", buf);
2180                 if (buf[0] != '2') {
2181                         goto bail;
2182                 }
2183         
2184                 /* At this point we are authenticated. */
2185                 if (!CtdlThreadCheckStop())
2186                         receive_spool(&sock, node);
2187                 if (!CtdlThreadCheckStop())
2188                         transmit_spool(&sock, node);
2189         }
2190
2191         sock_puts(&sock, "QUIT");
2192 bail:   
2193         FreeStrBuf(&CCC->sReadBuf);
2194         FreeStrBuf(&CCC->sMigrateBuf);
2195         if (sock != -1)
2196                 sock_close(sock);
2197         network_talking_to(node, NTT_REMOVE);
2198 }
2199
2200
2201
2202 /*
2203  * Poll other Citadel nodes and transfer inbound/outbound network data.
2204  * Set "full" to nonzero to force a poll of every node, or to zero to poll
2205  * only nodes to which we have data to send.
2206  */
2207 void network_poll_other_citadel_nodes(int full_poll) {
2208         int i;
2209         char linebuf[256];
2210         char node[SIZ];
2211         char host[256];
2212         char port[256];
2213         char secret[256];
2214         int poll = 0;
2215         char spoolfile[256];
2216
2217         if (working_ignetcfg == NULL) {
2218                 CtdlLogPrintf(CTDL_DEBUG, "network: no neighbor nodes are configured - not polling.\n");
2219                 return;
2220         }
2221
2222         /* Use the string tokenizer to grab one line at a time */
2223         for (i=0; i<num_tokens(working_ignetcfg, '\n'); ++i) {
2224                 if(CtdlThreadCheckStop())
2225                         return;
2226                 extract_token(linebuf, working_ignetcfg, i, '\n', sizeof linebuf);
2227                 extract_token(node, linebuf, 0, '|', sizeof node);
2228                 extract_token(secret, linebuf, 1, '|', sizeof secret);
2229                 extract_token(host, linebuf, 2, '|', sizeof host);
2230                 extract_token(port, linebuf, 3, '|', sizeof port);
2231                 if ( !IsEmptyStr(node) && !IsEmptyStr(secret) 
2232                    && !IsEmptyStr(host) && !IsEmptyStr(port)) {
2233                         poll = full_poll;
2234                         if (poll == 0) {
2235                                 snprintf(spoolfile, 
2236                                          sizeof spoolfile,
2237                                          "%s/%s",
2238                                          ctdl_netout_dir, 
2239                                          node
2240                                 );
2241                                 if (access(spoolfile, R_OK) == 0) {
2242                                         poll = 1;
2243                                 }
2244                         }
2245                         if (poll) {
2246                                 network_poll_node(node, secret, host, port);
2247                         }
2248                 }
2249         }
2250
2251 }
2252
2253
2254
2255
2256 /*
2257  * It's ok if these directories already exist.  Just fail silently.
2258  */
2259 void create_spool_dirs(void) {
2260         if ((mkdir(ctdl_spool_dir, 0700) != 0) && (errno != EEXIST))
2261                 CtdlLogPrintf(CTDL_EMERG, "unable to create directory [%s]: %s", ctdl_spool_dir, strerror(errno));
2262         if (chown(ctdl_spool_dir, CTDLUID, (-1)) != 0)
2263                 CtdlLogPrintf(CTDL_EMERG, "unable to set the access rights for [%s]: %s", ctdl_spool_dir, strerror(errno));
2264         if ((mkdir(ctdl_netin_dir, 0700) != 0) && (errno != EEXIST))
2265                 CtdlLogPrintf(CTDL_EMERG, "unable to create directory [%s]: %s", ctdl_netin_dir, strerror(errno));
2266         if (chown(ctdl_netin_dir, CTDLUID, (-1)) != 0)
2267                 CtdlLogPrintf(CTDL_EMERG, "unable to set the access rights for [%s]: %s", ctdl_netin_dir, strerror(errno));
2268         if ((mkdir(ctdl_nettmp_dir, 0700) != 0) && (errno != EEXIST))
2269                 CtdlLogPrintf(CTDL_EMERG, "unable to create directory [%s]: %s", ctdl_nettmp_dir, strerror(errno));
2270         if (chown(ctdl_nettmp_dir, CTDLUID, (-1)) != 0)
2271                 CtdlLogPrintf(CTDL_EMERG, "unable to set the access rights for [%s]: %s", ctdl_nettmp_dir, strerror(errno));
2272         if ((mkdir(ctdl_netout_dir, 0700) != 0) && (errno != EEXIST))
2273                 CtdlLogPrintf(CTDL_EMERG, "unable to create directory [%s]: %s", ctdl_netout_dir, strerror(errno));
2274         if (chown(ctdl_netout_dir, CTDLUID, (-1)) != 0)
2275                 CtdlLogPrintf(CTDL_EMERG, "unable to set the access rights for [%s]: %s", ctdl_netout_dir, strerror(errno));
2276 }
2277
2278
2279
2280
2281
2282 /*
2283  * network_do_queue()
2284  * 
2285  * Run through the rooms doing various types of network stuff.
2286  */
2287 void *network_do_queue(void *args) {
2288         static time_t last_run = 0L;
2289         struct RoomProcList *ptr;
2290         int full_processing = 1;
2291         struct CitContext networkerCC;
2292
2293         /* Give the networker its own private CitContext */
2294         CtdlFillSystemContext(&networkerCC, "network");
2295         citthread_setspecific(MyConKey, (void *)&networkerCC );
2296
2297         /*
2298          * Run the full set of processing tasks no more frequently
2299          * than once every n seconds
2300          */
2301         if ( (time(NULL) - last_run) < config.c_net_freq ) {
2302                 full_processing = 0;
2303                 CtdlLogPrintf(CTDL_DEBUG, "Network full processing in %ld seconds.\n",
2304                         config.c_net_freq - (time(NULL)- last_run)
2305                 );
2306         }
2307
2308         /*
2309          * This is a simple concurrency check to make sure only one queue run
2310          * is done at a time.  We could do this with a mutex, but since we
2311          * don't really require extremely fine granularity here, we'll do it
2312          * with a static variable instead.
2313          */
2314         if (doing_queue) {
2315                 CtdlClearSystemContext();
2316                 return NULL;
2317         }
2318         doing_queue = 1;
2319
2320         /* Load the IGnet Configuration into memory */
2321         load_working_ignetcfg();
2322
2323         /*
2324          * Poll other Citadel nodes.  Maybe.  If "full_processing" is set
2325          * then we poll everyone.  Otherwise we only poll nodes we have stuff
2326          * to send to.
2327          */
2328         network_poll_other_citadel_nodes(full_processing);
2329
2330         /*
2331          * Load the network map and filter list into memory.
2332          */
2333         read_network_map();
2334         filterlist = load_filter_list();
2335
2336         /* 
2337          * Go ahead and run the queue
2338          */
2339         if (full_processing && !CtdlThreadCheckStop()) {
2340                 CtdlLogPrintf(CTDL_DEBUG, "network: loading outbound queue\n");
2341                 CtdlForEachRoom(network_queue_room, NULL);
2342         }
2343
2344         if (rplist != NULL) {
2345                 CtdlLogPrintf(CTDL_DEBUG, "network: running outbound queue\n");
2346                 while (rplist != NULL && !CtdlThreadCheckStop()) {
2347                         char spoolroomname[ROOMNAMELEN];
2348                         safestrncpy(spoolroomname, rplist->name, sizeof spoolroomname);
2349                         begin_critical_section(S_RPLIST);
2350
2351                         /* pop this record off the list */
2352                         ptr = rplist;
2353                         rplist = rplist->next;
2354                         free(ptr);
2355
2356                         /* invalidate any duplicate entries to prevent double processing */
2357                         for (ptr=rplist; ptr!=NULL; ptr=ptr->next) {
2358                                 if (!strcasecmp(ptr->name, spoolroomname)) {
2359                                         ptr->name[0] = 0;
2360                                 }
2361                         }
2362
2363                         end_critical_section(S_RPLIST);
2364                         if (spoolroomname[0] != 0) {
2365                                 network_spoolout_room(spoolroomname);
2366                         }
2367                 }
2368         }
2369
2370         /* If there is anything in the inbound queue, process it */
2371         if (!CtdlThreadCheckStop()) {
2372                 network_do_spoolin();
2373         }
2374
2375         /* Save the network map back to disk */
2376         write_network_map();
2377
2378         /* Free the filter list in memory */
2379         free_filter_list(filterlist);
2380         filterlist = NULL;
2381
2382         network_consolidate_spoolout();
2383
2384         CtdlLogPrintf(CTDL_DEBUG, "network: queue run completed\n");
2385
2386         if (full_processing) {
2387                 last_run = time(NULL);
2388         }
2389
2390         doing_queue = 0;
2391
2392         /* Reschedule this task to happen again periodically, unless the thread system indicates
2393          * that the server is shutting down.
2394          */
2395         if (!CtdlThreadCheckStop()) {
2396                 CtdlThreadSchedule("IGnet Network", CTDLTHREAD_BIGSTACK,
2397                         network_do_queue, NULL, time(NULL) + 60
2398                 );
2399         }
2400         else {
2401                 CtdlLogPrintf(CTDL_DEBUG, "network: Task STOPPED.\n");
2402         }
2403         CtdlClearSystemContext();
2404         return NULL;
2405 }
2406
2407
2408 /*
2409  * cmd_netp() - authenticate to the server as another Citadel node polling
2410  *            for network traffic
2411  */
2412 void cmd_netp(char *cmdbuf)
2413 {
2414         char node[256];
2415         char pass[256];
2416         int v;
2417
2418         char secret[256];
2419         char nexthop[256];
2420         char err_buf[SIZ];
2421
2422         /* Authenticate */
2423         extract_token(node, cmdbuf, 0, '|', sizeof node);
2424         extract_token(pass, cmdbuf, 1, '|', sizeof pass);
2425
2426         /* load the IGnet Configuration to check node validity */
2427         load_working_ignetcfg();
2428         v = is_valid_node(nexthop, secret, node);
2429
2430         if (v != 0) {
2431                 snprintf(err_buf, sizeof err_buf,
2432                         "An unknown Citadel server called \"%s\" attempted to connect from %s [%s].\n",
2433                         node, CC->cs_host, CC->cs_addr
2434                 );
2435                 CtdlLogPrintf(CTDL_WARNING, err_buf);
2436                 cprintf("%d authentication failed\n", ERROR + PASSWORD_REQUIRED);
2437                 CtdlAideMessage(err_buf, "IGNet Networking.");
2438                 return;
2439         }
2440
2441         if (strcasecmp(pass, secret)) {
2442                 snprintf(err_buf, sizeof err_buf,
2443                         "A Citadel server at %s [%s] failed to authenticate as network node \"%s\".\n",
2444                         CC->cs_host, CC->cs_addr, node
2445                 );
2446                 CtdlLogPrintf(CTDL_WARNING, err_buf);
2447                 cprintf("%d authentication failed\n", ERROR + PASSWORD_REQUIRED);
2448                 CtdlAideMessage(err_buf, "IGNet Networking.");
2449                 return;
2450         }
2451
2452         if (network_talking_to(node, NTT_CHECK)) {
2453                 CtdlLogPrintf(CTDL_WARNING, "Duplicate session for network node <%s>", node);
2454                 cprintf("%d Already talking to %s right now\n", ERROR + RESOURCE_BUSY, node);
2455                 return;
2456         }
2457
2458         safestrncpy(CC->net_node, node, sizeof CC->net_node);
2459         network_talking_to(node, NTT_ADD);
2460         CtdlLogPrintf(CTDL_NOTICE, "Network node <%s> logged in from %s [%s]\n",
2461                 CC->net_node, CC->cs_host, CC->cs_addr
2462         );
2463         cprintf("%d authenticated as network node '%s'\n", CIT_OK, CC->net_node);
2464 }
2465
2466
2467 int network_room_handler (struct ctdlroom *room)
2468 {
2469         network_queue_room(room, NULL);
2470         return 0;
2471 }
2472
2473
2474 /*
2475  * Module entry point
2476  */
2477 CTDL_MODULE_INIT(network)
2478 {
2479         if (!threading)
2480         {
2481                 create_spool_dirs();
2482                 CtdlRegisterProtoHook(cmd_gnet, "GNET", "Get network config");
2483                 CtdlRegisterProtoHook(cmd_snet, "SNET", "Set network config");
2484                 CtdlRegisterProtoHook(cmd_netp, "NETP", "Identify as network poller");
2485                 CtdlRegisterProtoHook(cmd_nsyn, "NSYN", "Synchronize room to node");
2486                 CtdlRegisterRoomHook(network_room_handler);
2487                 CtdlRegisterCleanupHook(destroy_network_queue_room);
2488         }
2489         else
2490                 CtdlThreadSchedule("IGnet Network", CTDLTHREAD_BIGSTACK, network_do_queue, NULL, 0);
2491         /* return our Subversion id for the Log */
2492         return "$Id$";
2493 }