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