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