1d843b46116d072f9b44f172df4689c1c5abf19a
[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-2015 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, version 3.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * ** NOTE **   A word on the S_NETCONFIGS semaphore:
16  * This is a fairly high-level type of critical section.  It ensures that no
17  * two threads work on the netconfigs files at the same time.  Since we do
18  * so many things inside these, here are the rules:
19  *  1. begin_critical_section(S_NETCONFIGS) *before* begin_ any others.
20  *  2. Do *not* perform any I/O with the client during these sections.
21  *
22  */
23
24 /*
25  * Duration of time (in seconds) after which pending list subscribe/unsubscribe
26  * requests that have not been confirmed will be deleted.
27  */
28 #define EXP     259200  /* three days */
29
30 #include "sysdep.h"
31 #include <stdlib.h>
32 #include <unistd.h>
33 #include <stdio.h>
34 #include <fcntl.h>
35 #include <ctype.h>
36 #include <signal.h>
37 #include <pwd.h>
38 #include <errno.h>
39 #include <sys/stat.h>
40 #include <sys/types.h>
41 #include <dirent.h>
42 #if TIME_WITH_SYS_TIME
43 # include <sys/time.h>
44 # include <time.h>
45 #else
46 # if HAVE_SYS_TIME_H
47 #  include <sys/time.h>
48 # else
49 #  include <time.h>
50 # endif
51 #endif
52 #ifdef HAVE_SYSCALL_H
53 # include <syscall.h>
54 #else 
55 # if HAVE_SYS_SYSCALL_H
56 #  include <sys/syscall.h>
57 # endif
58 #endif
59
60 #include <sys/wait.h>
61 #include <string.h>
62 #include <limits.h>
63 #include <libcitadel.h>
64 #include "citadel.h"
65 #include "server.h"
66 #include "citserver.h"
67 #include "support.h"
68 #include "config.h"
69 #include "user_ops.h"
70 #include "database.h"
71 #include "msgbase.h"
72 #include "internet_addressing.h"
73 #include "serv_network.h"
74 #include "clientsocket.h"
75 #include "citadel_dirs.h"
76 #include "threads.h"
77 #include "context.h"
78 #include "ctdl_module.h"
79 #include "netspool.h"
80 #include "netmail.h"
81
82 int NetQDebugEnabled = 0;
83 struct CitContext networker_spool_CC;
84
85 /* comes from lookup3.c from libcitadel... */
86 extern uint32_t hashlittle( const void *key, size_t length, uint32_t initval);
87
88 typedef struct __roomlists {
89         RoomProcList *rplist;
90 }roomlists;
91 /*
92  * When we do network processing, it's accomplished in two passes; one to
93  * gather a list of rooms and one to actually do them.  It's ok that rplist
94  * is global; we have a mutex that keeps it safe.
95  */
96 struct RoomProcList *rplist = NULL;
97
98
99 /*
100  * Send the *entire* contents of the current room to one specific network node,
101  * ignoring anything we know about which messages have already undergone
102  * network processing.  This can be used to bring a new node into sync.
103  */
104 int network_sync_to(char *target_node, long len)
105 {
106         struct CitContext *CCC = CC;
107         OneRoomNetCfg OneRNCFG;
108         OneRoomNetCfg *pRNCFG;
109         const RoomNetCfgLine *pCfgLine;
110         SpoolControl sc;
111         int num_spooled = 0;
112
113         /* Grab the configuration line we're looking for */
114         begin_critical_section(S_NETCONFIGS);
115         pRNCFG = CtdlGetNetCfgForRoom(CCC->room.QRnumber);
116         if ((pRNCFG == NULL) ||
117             (pRNCFG->NetConfigs[ignet_push_share] == NULL))
118         {
119                 return -1;
120         }
121
122         pCfgLine = pRNCFG->NetConfigs[ignet_push_share];
123         while (pCfgLine != NULL)
124         {
125                 if (!strcmp(ChrPtr(pCfgLine->Value[0]), target_node))
126                         break;
127                 pCfgLine = pCfgLine->next;
128         }
129         if (pCfgLine == NULL)
130         {
131                 return -1;
132         }
133
134         memset(&sc, 0, sizeof(SpoolControl));
135         memset(&OneRNCFG, 0, sizeof(OneRoomNetCfg));
136         sc.RNCfg = &OneRNCFG;
137         sc.RNCfg->NetConfigs[ignet_push_share] = DuplicateOneGenericCfgLine(pCfgLine);
138         sc.Users[ignet_push_share] = NewStrBufPlain(NULL,
139                                                     StrLength(pCfgLine->Value[0]) +
140                                                     StrLength(pCfgLine->Value[1]) + 10);
141         StrBufAppendBuf(sc.Users[ignet_push_share], 
142                         pCfgLine->Value[0],
143                         0);
144         StrBufAppendBufPlain(sc.Users[ignet_push_share], 
145                              HKEY(","),
146                              0);
147
148         StrBufAppendBuf(sc.Users[ignet_push_share], 
149                         pCfgLine->Value[1],
150                         0);
151         CalcListID(&sc);
152
153         end_critical_section(S_NETCONFIGS);
154
155         sc.working_ignetcfg = CtdlLoadIgNetCfg();
156         sc.the_netmap = CtdlReadNetworkMap();
157
158         /* Send ALL messages */
159         num_spooled = CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, NULL,
160                 network_spool_msg, &sc);
161
162         /* Concise cleanup because we know there's only one node in the sc */
163         DeleteGenericCfgLine(NULL/*TODO*/, &sc.RNCfg->NetConfigs[ignet_push_share]);
164
165         DeleteHash(&sc.working_ignetcfg);
166         DeleteHash(&sc.the_netmap);
167         free_spoolcontrol_struct_members(&sc);
168
169         QN_syslog(LOG_NOTICE, "Synchronized %d messages to <%s>\n",
170                   num_spooled, target_node);
171         return(num_spooled);
172 }
173
174
175 /*
176  * Implements the NSYN command
177  */
178 void cmd_nsyn(char *argbuf) {
179         int num_spooled;
180         long len;
181         char target_node[256];
182
183         if (CtdlAccessCheck(ac_aide)) return;
184
185         len = extract_token(target_node, argbuf, 0, '|', sizeof target_node);
186         num_spooled = network_sync_to(target_node, len);
187         if (num_spooled >= 0) {
188                 cprintf("%d Spooled %d messages.\n", CIT_OK, num_spooled);
189         }
190         else {
191                 cprintf("%d No such room/node share exists.\n",
192                         ERROR + ROOM_NOT_FOUND);
193         }
194 }
195
196 RoomProcList *CreateRoomProcListEntry(struct ctdlroom *qrbuf, OneRoomNetCfg *OneRNCFG)
197 {
198         int i;
199         struct RoomProcList *ptr;
200
201         ptr = (struct RoomProcList *) malloc(sizeof (struct RoomProcList));
202         if (ptr == NULL) return NULL;
203
204         ptr->namelen = strlen(qrbuf->QRname);
205         if (ptr->namelen > ROOMNAMELEN)
206                 ptr->namelen = ROOMNAMELEN - 1;
207
208         memcpy (ptr->name, qrbuf->QRname, ptr->namelen);
209         ptr->name[ptr->namelen] = '\0';
210         ptr->QRNum = qrbuf->QRnumber;
211
212         for (i = 0; i < ptr->namelen; i++)
213         {
214                 ptr->lcname[i] = tolower(ptr->name[i]);
215         }
216
217         ptr->lcname[ptr->namelen] = '\0';
218         ptr->key = hashlittle(ptr->lcname, ptr->namelen, 9872345);
219         ptr->lastsent = OneRNCFG->lastsent;
220         ptr->OneRNCfg = OneRNCFG;
221         return ptr;
222 }
223
224 /*
225  * Batch up and send all outbound traffic from the current room
226  */
227 void network_queue_interesting_rooms(struct ctdlroom *qrbuf, void *data, OneRoomNetCfg *OneRNCfg)
228 {
229         struct RoomProcList *ptr;
230         roomlists *RP = (roomlists*) data;
231
232         if (!HaveSpoolConfig(OneRNCfg))
233                 return;
234
235         ptr = CreateRoomProcListEntry(qrbuf, OneRNCfg);
236
237         if (ptr != NULL)
238         {
239                 ptr->next = RP->rplist;
240                 RP->rplist = ptr;
241         }
242 }
243
244 /*
245  * Batch up and send all outbound traffic from the current room
246  */
247 int network_room_handler (struct ctdlroom *qrbuf)
248 {
249         struct RoomProcList *ptr;
250         OneRoomNetCfg* RNCfg;
251
252         if (qrbuf->QRdefaultview == VIEW_QUEUE)
253                 return 1;
254
255         RNCfg = CtdlGetNetCfgForRoom(qrbuf->QRnumber);
256         if (RNCfg == NULL)
257                 return 1;
258
259         if (!HaveSpoolConfig(RNCfg))
260                 return 1;
261
262         ptr = CreateRoomProcListEntry(qrbuf, RNCfg);
263         if (ptr == NULL)
264                 return 1;
265
266         ptr->OneRNCfg = NULL;
267         begin_critical_section(S_RPLIST);
268         ptr->next = rplist;
269         rplist = ptr;
270         end_critical_section(S_RPLIST);
271         return 1;
272 }
273
274 void destroy_network_queue_room(RoomProcList *rplist)
275 {
276         struct RoomProcList *cur, *p;
277
278         cur = rplist;
279         while (cur != NULL)
280         {
281                 p = cur->next;
282                 free (cur);
283                 cur = p;                
284         }
285 }
286
287 void destroy_network_queue_room_locked (void)
288 {
289         begin_critical_section(S_RPLIST);
290         destroy_network_queue_room(rplist);
291         end_critical_section(S_RPLIST);
292 }
293
294
295 /*
296  * network_do_queue()
297  * 
298  * Run through the rooms doing various types of network stuff.
299  */
300 void network_do_queue(void)
301 {
302         struct CitContext *CCC = CC;
303         static time_t last_run = 0L;
304         int full_processing = 1;
305         HashList *working_ignetcfg;
306         HashList *the_netmap = NULL;
307         int netmap_changed = 0;
308         roomlists RL;
309         SpoolControl *sc = NULL;
310         SpoolControl *pSC;
311
312         /*
313          * Run the full set of processing tasks no more frequently
314          * than once every n seconds
315          */
316         if ( (time(NULL) - last_run) < CtdlGetConfigLong("c_net_freq") )
317         {
318                 full_processing = 0;
319                 syslog(LOG_DEBUG, "Network full processing in %ld seconds.\n",
320                        CtdlGetConfigLong("c_net_freq") - (time(NULL)- last_run)
321                 );
322         }
323
324         become_session(&networker_spool_CC);
325         begin_critical_section(S_RPLIST);
326         RL.rplist = rplist;
327         rplist = NULL;
328         end_critical_section(S_RPLIST);
329 ///TODO hm, check whether we have a config at all here?
330         /* Load the IGnet Configuration into memory */
331         working_ignetcfg = CtdlLoadIgNetCfg();
332
333         /*
334          * Load the network map and filter list into memory.
335          */
336         if (!server_shutting_down)
337                 the_netmap = CtdlReadNetworkMap();
338 #if 0
339         /* filterlist isn't supported anymore
340         if (!server_shutting_down)
341                 load_network_filter_list();
342         */
343 #endif
344
345         /* 
346          * Go ahead and run the queue
347          */
348         if (full_processing && !server_shutting_down) {
349                 QNM_syslog(LOG_DEBUG, "network: loading outbound queue");
350                 CtdlForEachNetCfgRoom(network_queue_interesting_rooms, &RL, maxRoomNetCfg);
351         }
352
353         if ((RL.rplist != NULL) && (!server_shutting_down)) {
354                 RoomProcList *ptr, *cmp;
355                 ptr = RL.rplist;
356                 QNM_syslog(LOG_DEBUG, "network: running outbound queue");
357                 while (ptr != NULL && !server_shutting_down) {
358                         
359                         cmp = ptr->next;
360                         /* filter duplicates from the list... */
361                         while (cmp != NULL) {
362                                 if ((cmp->namelen > 0) &&
363                                     (cmp->key == ptr->key) &&
364                                     (cmp->namelen == ptr->namelen) &&
365                                     (strcmp(cmp->lcname, ptr->lcname) == 0))
366                                 {
367                                         cmp->namelen = 0;
368                                 }
369                                 cmp = cmp->next;
370                         }
371
372                         if (ptr->namelen > 0) {
373                                 InspectQueuedRoom(&sc,
374                                                   ptr, 
375                                                   working_ignetcfg,
376                                                   the_netmap);
377                         }
378                         ptr = ptr->next;
379                 }
380         }
381
382
383         pSC = sc;
384         while (pSC != NULL)
385         {
386                 network_spoolout_room(pSC);
387                 pSC = pSC->next;
388         }
389
390         pSC = sc;
391         while (pSC != NULL)
392         {
393                 sc = pSC->next;
394                 free_spoolcontrol_struct(&pSC);
395                 pSC = sc;
396         }
397         /* If there is anything in the inbound queue, process it */
398         if (!server_shutting_down) {
399                 network_do_spoolin(working_ignetcfg, 
400                                    the_netmap,
401                                    &netmap_changed);
402         }
403
404         /* Free the filter list in memory */
405         free_netfilter_list();
406
407         /* Save the network map back to disk */
408         if (netmap_changed) {
409                 StrBuf *MapStr = CtdlSerializeNetworkMap(the_netmap);
410                 char *pMapStr = SmashStrBuf(&MapStr);
411                 CtdlPutSysConfig(IGNETMAP, pMapStr);
412                 free(pMapStr);
413         }
414
415         /* combine singe message files into one spool entry per remote node. */
416         network_consolidate_spoolout(working_ignetcfg, the_netmap);
417
418         /* shut down. */
419
420         DeleteHash(&the_netmap);
421
422         DeleteHash(&working_ignetcfg);
423
424         QNM_syslog(LOG_DEBUG, "network: queue run completed");
425
426         if (full_processing) {
427                 last_run = time(NULL);
428         }
429         destroy_network_queue_room(RL.rplist);
430         SaveChangedConfigs();
431
432 }
433
434
435
436
437
438
439
440
441 void network_logout_hook(void)
442 {
443         CitContext *CCC = MyContext();
444
445         /*
446          * If we were talking to a network node, we're not anymore...
447          */
448         if (!IsEmptyStr(CCC->net_node)) {
449                 CtdlNetworkTalkingTo(CCC->net_node, strlen(CCC->net_node), NTT_REMOVE);
450                 CCC->net_node[0] = '\0';
451         }
452 }
453 void network_cleanup_function(void)
454 {
455         struct CitContext *CCC = CC;
456
457         if (!IsEmptyStr(CCC->net_node)) {
458                 CtdlNetworkTalkingTo(CCC->net_node, strlen(CCC->net_node), NTT_REMOVE);
459                 CCC->net_node[0] = '\0';
460         }
461 }
462
463
464 int ignet_aftersave(struct CtdlMessage *msg,
465                     recptypes *recps)   /* recipients (if mail) */
466 {
467         /* For IGnet mail, we have to save a new copy into the spooler for
468          * each recipient, with the R and D fields set to the recipient and
469          * destination-node.  This has two ugly side effects: all other
470          * recipients end up being unlisted in this recipient's copy of the
471          * message, and it has to deliver multiple messages to the same
472          * node.  We'll revisit this again in a year or so when everyone has
473          * a network spool receiver that can handle the new style messages.
474          */
475         if ((recps != NULL) && (recps->num_ignet > 0))
476         {
477                 char *recipient;
478                 int rv = 0;
479                 struct ser_ret smr;
480                 FILE *network_fp = NULL;
481                 char submit_filename[128];
482                 static int seqnum = 1;
483                 int i;
484                 char *hold_R, *hold_D, *RBuf, *DBuf;
485                 long hrlen, hdlen, rblen, dblen, count, rlen;
486                 CitContext *CCC = MyContext();
487
488                 CM_GetAsField(msg, eRecipient, &hold_R, &hrlen);;
489                 CM_GetAsField(msg, eDestination, &hold_D, &hdlen);;
490
491                 count = num_tokens(recps->recp_ignet, '|');
492                 rlen = strlen(recps->recp_ignet);
493                 recipient = malloc(rlen + 1);
494                 RBuf = malloc(rlen + 1);
495                 DBuf = malloc(rlen + 1);
496                 for (i=0; i<count; ++i) {
497                         extract_token(recipient, recps->recp_ignet, i,
498                                       '|', rlen + 1);
499
500                         rblen = extract_token(RBuf, recipient, 0, '@', rlen + 1);
501                         dblen = extract_token(DBuf, recipient, 1, '@', rlen + 1);
502                 
503                         CM_SetAsField(msg, eRecipient, &RBuf, rblen);;
504                         CM_SetAsField(msg, eDestination, &DBuf, dblen);;
505                         CtdlSerializeMessage(&smr, msg);
506                         if (smr.len > 0) {
507                                 snprintf(submit_filename, sizeof submit_filename,
508                                          "%s/netmail.%04lx.%04x.%04x",
509                                          ctdl_netin_dir,
510                                          (long) getpid(),
511                                          CCC->cs_pid,
512                                          ++seqnum);
513
514                                 network_fp = fopen(submit_filename, "wb+");
515                                 if (network_fp != NULL) {
516                                         rv = fwrite(smr.ser, smr.len, 1, network_fp);
517                                         if (rv == -1) {
518                                                 MSG_syslog(LOG_EMERG, "CtdlSubmitMsg(): Couldn't write network spool file: %s\n",
519                                                            strerror(errno));
520                                         }
521                                         fclose(network_fp);
522                                 }
523                                 free(smr.ser);
524                         }
525                         CM_GetAsField(msg, eRecipient, &RBuf, &rblen);;
526                         CM_GetAsField(msg, eDestination, &DBuf, &dblen);;
527                 }
528                 free(RBuf);
529                 free(DBuf);
530                 free(recipient);
531                 CM_SetAsField(msg, eRecipient, &hold_R, hrlen);
532                 CM_SetAsField(msg, eDestination, &hold_D, hdlen);
533                 return 1;
534         }
535         return 0;
536 }
537
538 /*
539  * Module entry point
540  */
541
542 void SetNetQDebugEnabled(const int n)
543 {
544         NetQDebugEnabled = n;
545 }
546
547 CTDL_MODULE_INIT(network)
548 {
549         if (!threading)
550         {
551                 CtdlRegisterMessageHook(ignet_aftersave, EVT_AFTERSAVE);
552
553                 CtdlFillSystemContext(&networker_spool_CC, "CitNetSpool");
554                 CtdlRegisterDebugFlagHook(HKEY("networkqueue"), SetNetQDebugEnabled, &NetQDebugEnabled);
555                 CtdlRegisterSessionHook(network_cleanup_function, EVT_STOP, PRIO_STOP + 30);
556                 CtdlRegisterSessionHook(network_logout_hook, EVT_LOGOUT, PRIO_LOGOUT + 10);
557                 CtdlRegisterProtoHook(cmd_nsyn, "NSYN", "Synchronize room to node");
558                 CtdlRegisterRoomHook(network_room_handler);
559                 CtdlRegisterCleanupHook(destroy_network_queue_room_locked);
560                 CtdlRegisterSessionHook(network_do_queue, EVT_TIMER, PRIO_QUEUE + 10);
561         }
562         return "network";
563 }