Calls to cdb_fetch()/cdb_next_item() now check ptr for NULL or non-NULL
[citadel.git] / citadel / server / msgbase.c
1 // Implements the message store.
2 //
3 // Copyright (c) 1987-2023 by the citadel.org team
4 //
5 // This program is open source software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License version 3.
7
8 #include <stdlib.h>
9 #include <unistd.h>
10 #include <stdio.h>
11 #include <regex.h>
12 #include <sys/stat.h>
13 #include <assert.h>
14 #include <libcitadel.h>
15 #include "ctdl_module.h"
16 #include "citserver.h"
17 #include "control.h"
18 #include "config.h"
19 #include "clientsocket.h"
20 #include "genstamp.h"
21 #include "room_ops.h"
22 #include "user_ops.h"
23 #include "internet_addressing.h"
24 #include "euidindex.h"
25 #include "msgbase.h"
26 #include "journaling.h"
27
28 struct addresses_to_be_filed *atbf = NULL;
29
30 // These are the four-character field headers we use when outputting
31 // messages in Citadel format (as opposed to RFC822 format).
32 char *msgkeys[] = {
33         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
34         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
35         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
36         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
37         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
38         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
39         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
40         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
41         NULL, 
42         "from", // A -> eAuthor
43         NULL,   // B -> eBig_message
44         NULL,   // C (formerly used as eRemoteRoom)
45         NULL,   // D (formerly used as eDestination)
46         "exti", // E -> eXclusivID
47         "rfca", // F -> erFc822Addr
48         NULL,   // G
49         "hnod", // H (formerly used as eHumanNode)
50         "msgn", // I -> emessageId
51         "jrnl", // J -> eJournal
52         "rep2", // K -> eReplyTo
53         "list", // L -> eListID
54         "text", // M -> eMesageText
55         NULL,   // N (formerly used as eNodename)
56         "room", // O -> eOriginalRoom
57         "path", // P -> eMessagePath
58         NULL,   // Q
59         "rcpt", // R -> eRecipient
60         NULL,   // S (formerly used as eSpecialField)
61         "time", // T -> eTimestamp
62         "subj", // U -> eMsgSubject
63         "nvto", // V -> eenVelopeTo
64         "wefw", // W -> eWeferences
65         NULL,   // X
66         "cccc", // Y -> eCarbonCopY
67         NULL    // Z
68 };
69
70
71 HashList *msgKeyLookup = NULL;
72
73 int GetFieldFromMnemonic(eMsgField *f, const char* c) {
74         void *v = NULL;
75         if (GetHash(msgKeyLookup, c, 4, &v)) {
76                 *f = (eMsgField) v;
77                 return 1;
78         }
79         return 0;
80 }
81
82 void FillMsgKeyLookupTable(void) {
83         long i;
84
85         msgKeyLookup = NewHash (1, FourHash);
86
87         for (i=0; i < 91; i++) {
88                 if (msgkeys[i] != NULL) {
89                         Put(msgKeyLookup, msgkeys[i], 4, (void*)i, reference_free_handler);
90                 }
91         }
92 }
93
94
95 eMsgField FieldOrder[]  = {
96 /* Important fields */
97         emessageId   ,
98         eMessagePath ,
99         eTimestamp   ,
100         eAuthor      ,
101         erFc822Addr  ,
102         eOriginalRoom,
103         eRecipient   ,
104 /* Semi-important fields */
105         eBig_message ,
106         eExclusiveID ,
107         eWeferences  ,
108         eJournal     ,
109 /* G is not used yet */
110         eReplyTo     ,
111         eListID      ,
112 /* Q is not used yet */
113         eenVelopeTo  ,
114 /* X is not used yet */
115 /* Z is not used yet */
116         eCarbonCopY  ,
117         eMsgSubject  ,
118 /* internal only */
119         eErrorMsg    ,
120         eSuppressIdx ,
121         eExtnotify   ,
122 /* Message text (MUST be last) */
123         eMesageText 
124 /* Not saved to disk: 
125         eVltMsgNum
126 */
127 };
128
129 static const long NDiskFields = sizeof(FieldOrder) / sizeof(eMsgField);
130
131
132 int CM_IsEmpty(struct CtdlMessage *Msg, eMsgField which) {
133         return !((Msg->cm_fields[which] != NULL) && (Msg->cm_fields[which][0] != '\0'));
134 }
135
136
137 void CM_SetField(struct CtdlMessage *Msg, eMsgField which, const char *buf, long length) {
138         if (Msg->cm_fields[which] != NULL) {
139                 free (Msg->cm_fields[which]);
140         }
141         if (length < 0) {                       // You can set the length to -1 to have CM_SetField measure it for you
142                 length = strlen(buf);
143         }
144         Msg->cm_fields[which] = malloc(length + 1);
145         memcpy(Msg->cm_fields[which], buf, length);
146         Msg->cm_fields[which][length] = '\0';
147         Msg->cm_lengths[which] = length;
148 }
149
150
151 void CM_SetFieldLONG(struct CtdlMessage *Msg, eMsgField which, long lvalue) {
152         char buf[128];
153         long len;
154         len = snprintf(buf, sizeof(buf), "%ld", lvalue);
155         CM_SetField(Msg, which, buf, len);
156 }
157
158
159 void CM_CutFieldAt(struct CtdlMessage *Msg, eMsgField WhichToCut, long maxlen) {
160         if (Msg->cm_fields[WhichToCut] == NULL)
161                 return;
162
163         if (Msg->cm_lengths[WhichToCut] > maxlen)
164         {
165                 Msg->cm_fields[WhichToCut][maxlen] = '\0';
166                 Msg->cm_lengths[WhichToCut] = maxlen;
167         }
168 }
169
170
171 void CM_FlushField(struct CtdlMessage *Msg, eMsgField which) {
172         if (Msg->cm_fields[which] != NULL)
173                 free (Msg->cm_fields[which]);
174         Msg->cm_fields[which] = NULL;
175         Msg->cm_lengths[which] = 0;
176 }
177
178
179 void CM_Flush(struct CtdlMessage *Msg) {
180         int i;
181
182         if (CM_IsValidMsg(Msg) == 0) {
183                 return;
184         }
185
186         for (i = 0; i < 256; ++i) {
187                 CM_FlushField(Msg, i);
188         }
189 }
190
191
192 void CM_CopyField(struct CtdlMessage *Msg, eMsgField WhichToPutTo, eMsgField WhichtToCopy) {
193         long len;
194         if (Msg->cm_fields[WhichToPutTo] != NULL) {
195                 free (Msg->cm_fields[WhichToPutTo]);
196         }
197
198         if (Msg->cm_fields[WhichtToCopy] != NULL) {
199                 len = Msg->cm_lengths[WhichtToCopy];
200                 Msg->cm_fields[WhichToPutTo] = malloc(len + 1);
201                 memcpy(Msg->cm_fields[WhichToPutTo], Msg->cm_fields[WhichtToCopy], len);
202                 Msg->cm_fields[WhichToPutTo][len] = '\0';
203                 Msg->cm_lengths[WhichToPutTo] = len;
204         }
205         else {
206                 Msg->cm_fields[WhichToPutTo] = NULL;
207                 Msg->cm_lengths[WhichToPutTo] = 0;
208         }
209 }
210
211
212 void CM_PrependToField(struct CtdlMessage *Msg, eMsgField which, const char *buf, long length) {
213         if (Msg->cm_fields[which] != NULL) {
214                 long oldmsgsize;
215                 long newmsgsize;
216                 char *new;
217
218                 oldmsgsize = Msg->cm_lengths[which] + 1;
219                 newmsgsize = length + oldmsgsize;
220
221                 new = malloc(newmsgsize);
222                 memcpy(new, buf, length);
223                 memcpy(new + length, Msg->cm_fields[which], oldmsgsize);
224                 free(Msg->cm_fields[which]);
225                 Msg->cm_fields[which] = new;
226                 Msg->cm_lengths[which] = newmsgsize - 1;
227         }
228         else {
229                 Msg->cm_fields[which] = malloc(length + 1);
230                 memcpy(Msg->cm_fields[which], buf, length);
231                 Msg->cm_fields[which][length] = '\0';
232                 Msg->cm_lengths[which] = length;
233         }
234 }
235
236
237 void CM_SetAsField(struct CtdlMessage *Msg, eMsgField which, char **buf, long length) {
238         if (Msg->cm_fields[which] != NULL) {
239                 free (Msg->cm_fields[which]);
240         }
241
242         Msg->cm_fields[which] = *buf;
243         *buf = NULL;
244         if (length < 0) {                       // You can set the length to -1 to have CM_SetField measure it for you
245                 Msg->cm_lengths[which] = strlen(Msg->cm_fields[which]);
246         }
247         else {
248                 Msg->cm_lengths[which] = length;
249         }
250 }
251
252
253 void CM_SetAsFieldSB(struct CtdlMessage *Msg, eMsgField which, StrBuf **buf) {
254         if (Msg->cm_fields[which] != NULL) {
255                 free (Msg->cm_fields[which]);
256         }
257
258         Msg->cm_lengths[which] = StrLength(*buf);
259         Msg->cm_fields[which] = SmashStrBuf(buf);
260 }
261
262
263 void CM_GetAsField(struct CtdlMessage *Msg, eMsgField which, char **ret, long *retlen) {
264         if (Msg->cm_fields[which] != NULL) {
265                 *retlen = Msg->cm_lengths[which];
266                 *ret = Msg->cm_fields[which];
267                 Msg->cm_fields[which] = NULL;
268                 Msg->cm_lengths[which] = 0;
269         }
270         else {
271                 *ret = NULL;
272                 *retlen = 0;
273         }
274 }
275
276
277 // Returns 1 if the supplied pointer points to a valid Citadel message.
278 // If the pointer is NULL or the magic number check fails, returns 0.
279 int CM_IsValidMsg(struct CtdlMessage *msg) {
280         if (msg == NULL) {
281                 return 0;
282         }
283         if ((msg->cm_magic) != CTDLMESSAGE_MAGIC) {
284                 syslog(LOG_WARNING, "msgbase: CM_IsValidMsg() self-check failed");
285                 return 0;
286         }
287         return 1;
288 }
289
290
291 void CM_FreeContents(struct CtdlMessage *msg) {
292         int i;
293
294         for (i = 0; i < 256; ++i)
295                 if (msg->cm_fields[i] != NULL) {
296                         free(msg->cm_fields[i]);
297                         msg->cm_lengths[i] = 0;
298                 }
299
300         msg->cm_magic = 0;      // just in case
301 }
302
303
304 // 'Destructor' for struct CtdlMessage
305 void CM_Free(struct CtdlMessage *msg) {
306         if (CM_IsValidMsg(msg) == 0) {
307                 if (msg != NULL) free (msg);
308                 return;
309         }
310         CM_FreeContents(msg);
311         free(msg);
312 }
313
314
315 int CM_DupField(eMsgField i, struct CtdlMessage *OrgMsg, struct CtdlMessage *NewMsg) {
316         long len;
317         len = OrgMsg->cm_lengths[i];
318         NewMsg->cm_fields[i] = malloc(len + 1);
319         if (NewMsg->cm_fields[i] == NULL) {
320                 return 0;
321         }
322         memcpy(NewMsg->cm_fields[i], OrgMsg->cm_fields[i], len);
323         NewMsg->cm_fields[i][len] = '\0';
324         NewMsg->cm_lengths[i] = len;
325         return 1;
326 }
327
328
329 struct CtdlMessage *CM_Duplicate(struct CtdlMessage *OrgMsg) {
330         int i;
331         struct CtdlMessage *NewMsg;
332
333         if (CM_IsValidMsg(OrgMsg) == 0) {
334                 return NULL;
335         }
336         NewMsg = (struct CtdlMessage *)malloc(sizeof(struct CtdlMessage));
337         if (NewMsg == NULL) {
338                 return NULL;
339         }
340
341         memcpy(NewMsg, OrgMsg, sizeof(struct CtdlMessage));
342
343         memset(&NewMsg->cm_fields, 0, sizeof(char*) * 256);
344         
345         for (i = 0; i < 256; ++i) {
346                 if (OrgMsg->cm_fields[i] != NULL) {
347                         if (!CM_DupField(i, OrgMsg, NewMsg)) {
348                                 CM_Free(NewMsg);
349                                 return NULL;
350                         }
351                 }
352         }
353
354         return NewMsg;
355 }
356
357
358 // Determine if a given message matches the fields in a message template.
359 // Return 0 for a successful match.
360 int CtdlMsgCmp(struct CtdlMessage *msg, struct CtdlMessage *template) {
361         int i;
362
363         // If there aren't any fields in the template, all messages will match.
364         if (template == NULL) return(0);
365
366         // Null messages are bogus.
367         if (msg == NULL) return(1);
368
369         for (i='A'; i<='Z'; ++i) {
370                 if (template->cm_fields[i] != NULL) {
371                         if (msg->cm_fields[i] == NULL) {
372                                 // Considered equal if temmplate is empty string
373                                 if (IsEmptyStr(template->cm_fields[i])) continue;
374                                 return 1;
375                         }
376                         if ((template->cm_lengths[i] != msg->cm_lengths[i]) ||
377                             (strcasecmp(msg->cm_fields[i], template->cm_fields[i])))
378                                 return 1;
379                 }
380         }
381
382         // All compares succeeded: we have a match!
383         return 0;
384 }
385
386
387 // Retrieve the "seen" message list for the current room.
388 void CtdlGetSeen(char *buf, int which_set) {
389         struct visit vbuf;
390
391         // Learn about the user and room in question
392         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
393
394         if (which_set == ctdlsetseen_seen) {
395                 safestrncpy(buf, vbuf.v_seen, SIZ);
396         }
397         if (which_set == ctdlsetseen_answered) {
398                 safestrncpy(buf, vbuf.v_answered, SIZ);
399         }
400 }
401
402
403 // Manipulate the "seen msgs" string (or other message set strings)
404 void CtdlSetSeen(long *target_msgnums, int num_target_msgnums,
405                 int target_setting, int which_set,
406                 struct ctdluser *which_user, struct ctdlroom *which_room) {
407         int i, k;
408         int is_seen = 0;
409         int was_seen = 0;
410         long lo = (-1L);
411         long hi = (-1L);
412         struct visit vbuf;
413         long *msglist;
414         int num_msgs = 0;
415         StrBuf *vset;
416         StrBuf *setstr;
417         StrBuf *lostr;
418         StrBuf *histr;
419         const char *pvset;
420         char *is_set;   // actually an array of booleans
421
422         // Don't bother doing *anything* if we were passed a list of zero messages
423         if (num_target_msgnums < 1) {
424                 return;
425         }
426
427         // If no room was specified, we go with the current room.
428         if (!which_room) {
429                 which_room = &CC->room;
430         }
431
432         // If no user was specified, we go with the current user.
433         if (!which_user) {
434                 which_user = &CC->user;
435         }
436
437         syslog(LOG_DEBUG, "msgbase: CtdlSetSeen(%d msgs starting with %ld, %s, %d) in <%s>",
438                    num_target_msgnums, target_msgnums[0],
439                    (target_setting ? "SET" : "CLEAR"),
440                    which_set,
441                    which_room->QRname);
442
443         // Learn about the user and room in question
444         CtdlGetRelationship(&vbuf, which_user, which_room);
445
446         // Load the message list
447         num_msgs = CtdlFetchMsgList(which_room->QRnumber, &msglist);
448         if (num_msgs <= 0) {
449                 free(msglist);
450                 return;
451         }
452         
453         is_set = malloc(num_msgs * sizeof(char));
454         memset(is_set, 0, (num_msgs * sizeof(char)) );
455
456         // Decide which message set we're manipulating
457         switch(which_set) {
458         case ctdlsetseen_seen:
459                 vset = NewStrBufPlain(vbuf.v_seen, -1);
460                 break;
461         case ctdlsetseen_answered:
462                 vset = NewStrBufPlain(vbuf.v_answered, -1);
463                 break;
464         default:
465                 vset = NewStrBuf();
466         }
467
468         // Translate the existing sequence set into an array of booleans
469         setstr = NewStrBuf();
470         lostr = NewStrBuf();
471         histr = NewStrBuf();
472         pvset = NULL;
473         while (StrBufExtract_NextToken(setstr, vset, &pvset, ',') >= 0) {
474
475                 StrBufExtract_token(lostr, setstr, 0, ':');
476                 if (StrBufNum_tokens(setstr, ':') >= 2) {
477                         StrBufExtract_token(histr, setstr, 1, ':');
478                 }
479                 else {
480                         FlushStrBuf(histr);
481                         StrBufAppendBuf(histr, lostr, 0);
482                 }
483                 lo = StrTol(lostr);
484                 if (!strcmp(ChrPtr(histr), "*")) {
485                         hi = LONG_MAX;
486                 }
487                 else {
488                         hi = StrTol(histr);
489                 }
490
491                 for (i = 0; i < num_msgs; ++i) {
492                         if ((msglist[i] >= lo) && (msglist[i] <= hi)) {
493                                 is_set[i] = 1;
494                         }
495                 }
496         }
497         FreeStrBuf(&setstr);
498         FreeStrBuf(&lostr);
499         FreeStrBuf(&histr);
500
501         // Now translate the array of booleans back into a sequence set
502         FlushStrBuf(vset);
503         was_seen = 0;
504         lo = (-1);
505         hi = (-1);
506
507         for (i=0; i<num_msgs; ++i) {
508                 is_seen = is_set[i];
509
510                 // Apply changes
511                 for (k=0; k<num_target_msgnums; ++k) {
512                         if (msglist[i] == target_msgnums[k]) {
513                                 is_seen = target_setting;
514                         }
515                 }
516
517                 if ((was_seen == 0) && (is_seen == 1)) {
518                         lo = msglist[i];
519                 }
520                 else if ((was_seen == 1) && (is_seen == 0)) {
521                         hi = msglist[i-1];
522
523                         if (StrLength(vset) > 0) {
524                                 StrBufAppendBufPlain(vset, HKEY(","), 0);
525                         }
526                         if (lo == hi) {
527                                 StrBufAppendPrintf(vset, "%ld", hi);
528                         }
529                         else {
530                                 StrBufAppendPrintf(vset, "%ld:%ld", lo, hi);
531                         }
532                 }
533
534                 if ((is_seen) && (i == num_msgs - 1)) {
535                         if (StrLength(vset) > 0) {
536                                 StrBufAppendBufPlain(vset, HKEY(","), 0);
537                         }
538                         if ((i==0) || (was_seen == 0)) {
539                                 StrBufAppendPrintf(vset, "%ld", msglist[i]);
540                         }
541                         else {
542                                 StrBufAppendPrintf(vset, "%ld:%ld", lo, msglist[i]);
543                         }
544                 }
545
546                 was_seen = is_seen;
547         }
548
549         // We will have to stuff this string back into a 4096 byte buffer, so if it's
550         // larger than that now, truncate it by removing tokens from the beginning.
551         // The limit of 100 iterations is there to prevent an infinite loop in case
552         // something unexpected happens.
553         int number_of_truncations = 0;
554         while ( (StrLength(vset) > SIZ) && (number_of_truncations < 100) ) {
555                 StrBufRemove_token(vset, 0, ',');
556                 ++number_of_truncations;
557         }
558
559         // If we're truncating the sequence set of messages marked with the 'seen' flag,
560         // we want the earliest messages (the truncated ones) to be marked, not unmarked.
561         // Otherwise messages at the beginning will suddenly appear to be 'unseen'.
562         if ( (which_set == ctdlsetseen_seen) && (number_of_truncations > 0) ) {
563                 StrBuf *first_tok;
564                 first_tok = NewStrBuf();
565                 StrBufExtract_token(first_tok, vset, 0, ',');
566                 StrBufRemove_token(vset, 0, ',');
567
568                 if (StrBufNum_tokens(first_tok, ':') > 1) {
569                         StrBufRemove_token(first_tok, 0, ':');
570                 }
571                 
572                 StrBuf *new_set;
573                 new_set = NewStrBuf();
574                 StrBufAppendBufPlain(new_set, HKEY("1:"), 0);
575                 StrBufAppendBuf(new_set, first_tok, 0);
576                 StrBufAppendBufPlain(new_set, HKEY(":"), 0);
577                 StrBufAppendBuf(new_set, vset, 0);
578
579                 FreeStrBuf(&vset);
580                 FreeStrBuf(&first_tok);
581                 vset = new_set;
582         }
583
584         // Decide which message set we're manipulating.  Zero the buffers so they compress well.
585         switch (which_set) {
586                 case ctdlsetseen_seen:
587                         memset(vbuf.v_seen, 0, sizeof vbuf.v_seen);
588                         safestrncpy(vbuf.v_seen, ChrPtr(vset), sizeof vbuf.v_seen);
589                         break;
590                 case ctdlsetseen_answered:
591                         memset(vbuf.v_answered, 0, sizeof vbuf.v_seen);
592                         safestrncpy(vbuf.v_answered, ChrPtr(vset), sizeof vbuf.v_answered);
593                         break;
594         }
595
596         free(is_set);
597         free(msglist);
598         CtdlSetRelationship(&vbuf, which_user, which_room);
599         FreeStrBuf(&vset);
600 }
601
602
603 // API function to perform an operation for each qualifying message in the
604 // current room.  (Returns the number of messages processed.)
605 int CtdlForEachMessage(int mode, long ref, char *search_string,
606                         char *content_type,
607                         struct CtdlMessage *compare,
608                         ForEachMsgCallback CallBack,
609                         void *userdata)
610 {
611         int a, i, j;
612         struct visit vbuf;
613         long *msglist = NULL;
614         int num_msgs = 0;
615         int num_processed = 0;
616         long thismsg;
617         struct MetaData smi;
618         struct CtdlMessage *msg = NULL;
619         int is_seen = 0;
620         long lastold = 0L;
621         int printed_lastold = 0;
622         int num_search_msgs = 0;
623         long *search_msgs = NULL;
624         regex_t re;
625         int need_to_free_re = 0;
626         regmatch_t pm;
627
628         if ((content_type) && (!IsEmptyStr(content_type))) {
629                 regcomp(&re, content_type, 0);
630                 need_to_free_re = 1;
631         }
632
633         // Learn about the user and room in question
634         if (server_shutting_down) {
635                 if (need_to_free_re) regfree(&re);
636                 return -1;
637         }
638         CtdlGetUser(&CC->user, CC->curr_user);
639
640         if (server_shutting_down) {
641                 if (need_to_free_re) regfree(&re);
642                 return -1;
643         }
644         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
645
646         if (server_shutting_down) {
647                 if (need_to_free_re) regfree(&re);
648                 return -1;
649         }
650
651         // Load the message list
652         num_msgs = CtdlFetchMsgList(CC->room.QRnumber, &msglist);
653         if (num_msgs <= 0) {
654                 free(msglist);
655                 if (need_to_free_re) regfree(&re);
656                 return 0;       // No messages at all?  No further action.
657         }
658
659         /*
660          * Now begin the traversal.
661          */
662         if (num_msgs > 0) for (a = 0; a < num_msgs; ++a) {
663
664                 /* If the caller is looking for a specific MIME type, filter
665                  * out all messages which are not of the type requested.
666                  */
667                 if ((content_type != NULL) && (!IsEmptyStr(content_type))) {
668
669                         /* This call to GetMetaData() sits inside this loop
670                          * so that we only do the extra database read per msg
671                          * if we need to.  Doing the extra read all the time
672                          * really kills the server.  If we ever need to use
673                          * metadata for another search criterion, we need to
674                          * move the read somewhere else -- but still be smart
675                          * enough to only do the read if the caller has
676                          * specified something that will need it.
677                          */
678                         if (server_shutting_down) {
679                                 if (need_to_free_re) regfree(&re);
680                                 free(msglist);
681                                 return -1;
682                         }
683                         GetMetaData(&smi, msglist[a]);
684
685                         /* if (strcasecmp(smi.meta_content_type, content_type)) { old non-regex way */
686                         if (regexec(&re, smi.meta_content_type, 1, &pm, 0) != 0) {
687                                 msglist[a] = 0L;
688                         }
689                 }
690         }
691
692         num_msgs = sort_msglist(msglist, num_msgs);
693
694         /* If a template was supplied, filter out the messages which
695          * don't match.  (This could induce some delays!)
696          */
697         if (num_msgs > 0) {
698                 if (compare != NULL) {
699                         for (a = 0; a < num_msgs; ++a) {
700                                 if (server_shutting_down) {
701                                         if (need_to_free_re) regfree(&re);
702                                         free(msglist);
703                                         return -1;
704                                 }
705                                 msg = CtdlFetchMessage(msglist[a], 1);
706                                 if (msg != NULL) {
707                                         if (CtdlMsgCmp(msg, compare)) {
708                                                 msglist[a] = 0L;
709                                         }
710                                         CM_Free(msg);
711                                 }
712                         }
713                 }
714         }
715
716         /* If a search string was specified, get a message list from
717          * the full text index and remove messages which aren't on both
718          * lists.
719          *
720          * How this works:
721          * Since the lists are sorted and strictly ascending, and the
722          * output list is guaranteed to be shorter than or equal to the
723          * input list, we overwrite the bottom of the input list.  This
724          * eliminates the need to memmove big chunks of the list over and
725          * over again.
726          */
727         if ( (num_msgs > 0) && (mode == MSGS_SEARCH) && (search_string) ) {
728
729                 /* Call search module via hook mechanism.
730                  * NULL means use any search function available.
731                  * otherwise replace with a char * to name of search routine
732                  */
733                 CtdlModuleDoSearch(&num_search_msgs, &search_msgs, search_string, "fulltext");
734
735                 if (num_search_msgs > 0) {
736         
737                         int orig_num_msgs;
738
739                         orig_num_msgs = num_msgs;
740                         num_msgs = 0;
741                         for (i=0; i<orig_num_msgs; ++i) {
742                                 for (j=0; j<num_search_msgs; ++j) {
743                                         if (msglist[i] == search_msgs[j]) {
744                                                 msglist[num_msgs++] = msglist[i];
745                                         }
746                                 }
747                         }
748                 }
749                 else {
750                         num_msgs = 0;   /* No messages qualify */
751                 }
752                 if (search_msgs != NULL) free(search_msgs);
753
754                 /* Now that we've purged messages which don't contain the search
755                  * string, treat a MSGS_SEARCH just like a MSGS_ALL from this
756                  * point on.
757                  */
758                 mode = MSGS_ALL;
759         }
760
761         /*
762          * Now iterate through the message list, according to the
763          * criteria supplied by the caller.
764          */
765         if (num_msgs > 0)
766                 for (a = 0; a < num_msgs; ++a) {
767                         if (server_shutting_down) {
768                                 if (need_to_free_re) regfree(&re);
769                                 free(msglist);
770                                 return num_processed;
771                         }
772                         thismsg = msglist[a];
773                         if (mode == MSGS_ALL) {
774                                 is_seen = 0;
775                         }
776                         else {
777                                 is_seen = is_msg_in_sequence_set(vbuf.v_seen, thismsg);
778                                 if (is_seen) lastold = thismsg;
779                         }
780                         if (
781                                 (thismsg > 0L)
782                         && (
783                                 (mode == MSGS_ALL)
784                                 || ((mode == MSGS_OLD) && (is_seen))
785                                 || ((mode == MSGS_NEW) && (!is_seen))
786                                 || ((mode == MSGS_LAST) && (a >= (num_msgs - ref)))
787                                 || ((mode == MSGS_FIRST) && (a < ref))
788                                 || ((mode == MSGS_GT) && (thismsg > ref))
789                                 || ((mode == MSGS_LT) && (thismsg < ref))
790                                 || ((mode == MSGS_EQ) && (thismsg == ref))
791                             )
792                             ) {
793                                 if ((mode == MSGS_NEW) && (CC->user.flags & US_LASTOLD) && (lastold > 0L) && (printed_lastold == 0) && (!is_seen)) {
794                                         if (CallBack) {
795                                                 CallBack(lastold, userdata);
796                                         }
797                                         printed_lastold = 1;
798                                         ++num_processed;
799                                 }
800                                 if (CallBack) {
801                                         CallBack(thismsg, userdata);
802                                 }
803                                 ++num_processed;
804                         }
805                 }
806         if (need_to_free_re) regfree(&re);
807
808         /*
809          * We cache the most recent msglist in order to do security checks later
810          */
811         if (CC->client_socket > 0) {
812                 if (CC->cached_msglist != NULL) {
813                         free(CC->cached_msglist);
814                 }
815                 CC->cached_msglist = msglist;
816                 CC->cached_num_msgs = num_msgs;
817         }
818         else {
819                 free(msglist);
820         }
821
822         return num_processed;
823 }
824
825
826 /*
827  * memfmout()  -  Citadel text formatter and paginator.
828  *           Although the original purpose of this routine was to format
829  *           text to the reader's screen width, all we're really using it
830  *           for here is to format text out to 80 columns before sending it
831  *           to the client.  The client software may reformat it again.
832  */
833 void memfmout(
834         char *mptr,             /* where are we going to get our text from? */
835         const char *nl          /* string to terminate lines with */
836 ) {
837         int column = 0;
838         unsigned char ch = 0;
839         char outbuf[1024];
840         int len = 0;
841         int nllen = 0;
842
843         if (!mptr) return;
844         nllen = strlen(nl);
845         while (ch=*(mptr++), ch != 0) {
846
847                 if (ch == '\n') {
848                         if (client_write(outbuf, len) == -1) {
849                                 syslog(LOG_ERR, "msgbase: memfmout() aborting due to write failure");
850                                 return;
851                         }
852                         len = 0;
853                         if (client_write(nl, nllen) == -1) {
854                                 syslog(LOG_ERR, "msgbase: memfmout() aborting due to write failure");
855                                 return;
856                         }
857                         column = 0;
858                 }
859                 else if (ch == '\r') {
860                         /* Ignore carriage returns.  Newlines are always LF or CRLF but never CR. */
861                 }
862                 else if (isspace(ch)) {
863                         if (column > 72) {              /* Beyond 72 columns, break on the next space */
864                                 if (client_write(outbuf, len) == -1) {
865                                         syslog(LOG_ERR, "msgbase: memfmout() aborting due to write failure");
866                                         return;
867                                 }
868                                 len = 0;
869                                 if (client_write(nl, nllen) == -1) {
870                                         syslog(LOG_ERR, "msgbase: memfmout() aborting due to write failure");
871                                         return;
872                                 }
873                                 column = 0;
874                         }
875                         else {
876                                 outbuf[len++] = ch;
877                                 ++column;
878                         }
879                 }
880                 else {
881                         outbuf[len++] = ch;
882                         ++column;
883                         if (column > 1000) {            /* Beyond 1000 columns, break anywhere */
884                                 if (client_write(outbuf, len) == -1) {
885                                         syslog(LOG_ERR, "msgbase: memfmout() aborting due to write failure");
886                                         return;
887                                 }
888                                 len = 0;
889                                 if (client_write(nl, nllen) == -1) {
890                                         syslog(LOG_ERR, "msgbase: memfmout(): aborting due to write failure");
891                                         return;
892                                 }
893                                 column = 0;
894                         }
895                 }
896         }
897         if (len) {
898                 if (client_write(outbuf, len) == -1) {
899                         syslog(LOG_ERR, "msgbase: memfmout() aborting due to write failure");
900                         return;
901                 }
902                 client_write(nl, nllen);
903                 column = 0;
904         }
905 }
906
907
908 /*
909  * Callback function for mime parser that simply lists the part
910  */
911 void list_this_part(char *name, char *filename, char *partnum, char *disp,
912                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
913                     char *cbid, void *cbuserdata)
914 {
915         struct ma_info *ma;
916         
917         ma = (struct ma_info *)cbuserdata;
918         if (ma->is_ma == 0) {
919                 cprintf("part=%s|%s|%s|%s|%s|%ld|%s|%s\n",
920                         name, 
921                         filename, 
922                         partnum, 
923                         disp, 
924                         cbtype, 
925                         (long)length, 
926                         cbid, 
927                         cbcharset);
928         }
929 }
930
931
932 /* 
933  * Callback function for multipart prefix
934  */
935 void list_this_pref(char *name, char *filename, char *partnum, char *disp,
936                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
937                     char *cbid, void *cbuserdata)
938 {
939         struct ma_info *ma;
940         
941         ma = (struct ma_info *)cbuserdata;
942         if (!strcasecmp(cbtype, "multipart/alternative")) {
943                 ++ma->is_ma;
944         }
945
946         if (ma->is_ma == 0) {
947                 cprintf("pref=%s|%s\n", partnum, cbtype);
948         }
949 }
950
951
952 /* 
953  * Callback function for multipart sufffix
954  */
955 void list_this_suff(char *name, char *filename, char *partnum, char *disp,
956                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
957                     char *cbid, void *cbuserdata)
958 {
959         struct ma_info *ma;
960         
961         ma = (struct ma_info *)cbuserdata;
962         if (ma->is_ma == 0) {
963                 cprintf("suff=%s|%s\n", partnum, cbtype);
964         }
965         if (!strcasecmp(cbtype, "multipart/alternative")) {
966                 --ma->is_ma;
967         }
968 }
969
970
971 /*
972  * Callback function for mime parser that opens a section for downloading
973  * we use serv_files function here: 
974  */
975 extern void OpenCmdResult(char *filename, const char *mime_type);
976 void mime_download(char *name, char *filename, char *partnum, char *disp,
977                    void *content, char *cbtype, char *cbcharset, size_t length,
978                    char *encoding, char *cbid, void *cbuserdata)
979 {
980         int rv = 0;
981
982         /* Silently go away if there's already a download open. */
983         if (CC->download_fp != NULL)
984                 return;
985
986         if (
987                 (!IsEmptyStr(partnum) && (!strcasecmp(CC->download_desired_section, partnum)))
988         ||      (!IsEmptyStr(cbid) && (!strcasecmp(CC->download_desired_section, cbid)))
989         ) {
990                 CC->download_fp = tmpfile();
991                 if (CC->download_fp == NULL) {
992                         syslog(LOG_ERR, "msgbase: mime_download() couldn't write: %m");
993                         cprintf("%d cannot open temporary file: %s\n", ERROR + INTERNAL_ERROR, strerror(errno));
994                         return;
995                 }
996         
997                 rv = fwrite(content, length, 1, CC->download_fp);
998                 if (rv <= 0) {
999                         syslog(LOG_ERR, "msgbase: mime_download() Couldn't write: %m");
1000                         cprintf("%d unable to write tempfile.\n", ERROR + TOO_BIG);
1001                         fclose(CC->download_fp);
1002                         CC->download_fp = NULL;
1003                         return;
1004                 }
1005                 fflush(CC->download_fp);
1006                 rewind(CC->download_fp);
1007         
1008                 OpenCmdResult(filename, cbtype);
1009         }
1010 }
1011
1012
1013 /*
1014  * Callback function for mime parser that outputs a section all at once.
1015  * We can specify the desired section by part number *or* content-id.
1016  */
1017 void mime_spew_section(char *name, char *filename, char *partnum, char *disp,
1018                    void *content, char *cbtype, char *cbcharset, size_t length,
1019                    char *encoding, char *cbid, void *cbuserdata)
1020 {
1021         int *found_it = (int *)cbuserdata;
1022
1023         if (
1024                 (!IsEmptyStr(partnum) && (!strcasecmp(CC->download_desired_section, partnum)))
1025         ||      (!IsEmptyStr(cbid) && (!strcasecmp(CC->download_desired_section, cbid)))
1026         ) {
1027                 *found_it = 1;
1028                 cprintf("%d %d|-1|%s|%s|%s\n",
1029                         BINARY_FOLLOWS,
1030                         (int)length,
1031                         filename,
1032                         cbtype,
1033                         cbcharset
1034                 );
1035                 client_write(content, length);
1036         }
1037 }
1038
1039
1040 struct CtdlMessage *CtdlDeserializeMessage(long msgnum, int with_body, const char *Buffer, long Length) {
1041         struct CtdlMessage *ret = NULL;
1042         const char *mptr;
1043         const char *upper_bound;
1044         cit_uint8_t ch;
1045         cit_uint8_t field_header;
1046         eMsgField which;
1047
1048         mptr = Buffer;
1049         upper_bound = Buffer + Length;
1050         if (msgnum <= 0) {
1051                 return NULL;
1052         }
1053
1054         // Parse the three bytes that begin EVERY message on disk.
1055         // The first is always 0xFF, the on-disk magic number.
1056         // The second is the anonymous/public type byte.
1057         // The third is the format type byte (vari, fixed, or MIME).
1058         //
1059         ch = *mptr++;
1060         if (ch != 255) {
1061                 syslog(LOG_ERR, "msgbase: message %ld appears to be corrupted", msgnum);
1062                 return NULL;
1063         }
1064         ret = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
1065         memset(ret, 0, sizeof(struct CtdlMessage));
1066
1067         ret->cm_magic = CTDLMESSAGE_MAGIC;
1068         ret->cm_anon_type = *mptr++;                            // Anon type byte
1069         ret->cm_format_type = *mptr++;                          // Format type byte
1070
1071         // The rest is zero or more arbitrary fields.  Load them in.
1072         // We're done when we encounter either a zero-length field or
1073         // have just processed the 'M' (message text) field.
1074         //
1075         do {
1076                 field_header = '\0';
1077                 long len;
1078
1079                 while (field_header == '\0') {                  // work around possibly buggy messages
1080                         if (mptr >= upper_bound) {
1081                                 break;
1082                         }
1083                         field_header = *mptr++;
1084                 }
1085                 if (mptr >= upper_bound) {
1086                         break;
1087                 }
1088                 which = field_header;
1089                 len = strlen(mptr);
1090
1091                 CM_SetField(ret, which, mptr, len);
1092
1093                 mptr += len + 1;                                // advance to next field
1094
1095         } while ((mptr < upper_bound) && (field_header != 'M'));
1096         return (ret);
1097 }
1098
1099
1100 // Load a message from disk into memory.
1101 // This is used by CtdlOutputMsg() and other fetch functions.
1102 //
1103 // NOTE: Caller is responsible for freeing the returned CtdlMessage struct
1104 //       using the CM_Free(); function.
1105 //
1106 struct CtdlMessage *CtdlFetchMessage(long msgnum, int with_body) {
1107         struct cdbdata dmsgtext;
1108         struct CtdlMessage *ret = NULL;
1109
1110         syslog(LOG_DEBUG, "msgbase: CtdlFetchMessage(%ld, %d)", msgnum, with_body);
1111         dmsgtext = cdb_fetch(CDB_MSGMAIN, &msgnum, sizeof(long));
1112         if (dmsgtext.ptr == NULL) {
1113                 syslog(LOG_ERR, "msgbase: message #%ld was not found", msgnum);
1114                 return NULL;
1115         }
1116
1117         if (dmsgtext.ptr[dmsgtext.len - 1] != '\0') {
1118                 // FIXME LMDB cannot write to immutable memory
1119                 syslog(LOG_ERR, "msgbase: CtdlFetchMessage(%ld, %d) Forcefully terminating message!!", msgnum, with_body);
1120                 dmsgtext.ptr[dmsgtext.len - 1] = '\0';
1121         }
1122
1123         ret = CtdlDeserializeMessage(msgnum, with_body, dmsgtext.ptr, dmsgtext.len);
1124         if (ret == NULL) {
1125                 return NULL;
1126         }
1127
1128         // Always make sure there's something in the msg text field.  If
1129         // it's NULL, the message text is most likely stored separately,
1130         // so go ahead and fetch that.  Failing that, just set a dummy
1131         // body so other code doesn't barf.
1132         //
1133         if ( (CM_IsEmpty(ret, eMesageText)) && (with_body) ) {
1134                 dmsgtext = cdb_fetch(CDB_BIGMSGS, &msgnum, sizeof(long));
1135                 if (dmsgtext.ptr != NULL) {
1136                         CM_SetAsField(ret, eMesageText, &dmsgtext.ptr, dmsgtext.len - 1);
1137                 }
1138         }
1139         if (CM_IsEmpty(ret, eMesageText)) {
1140                 CM_SetField(ret, eMesageText, HKEY("\r\n\r\n (no text)\r\n"));
1141         }
1142
1143         return (ret);
1144 }
1145
1146
1147 // Pre callback function for multipart/alternative
1148 //
1149 // NOTE: this differs from the standard behavior for a reason.  Normally when
1150 //       displaying multipart/alternative you want to show the _last_ usable
1151 //       format in the message.  Here we show the _first_ one, because it's
1152 //       usually text/plain.  Since this set of functions is designed for text
1153 //       output to non-MIME-aware clients, this is the desired behavior.
1154 //
1155 void fixed_output_pre(char *name, char *filename, char *partnum, char *disp,
1156                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1157                 char *cbid, void *cbuserdata)
1158 {
1159         struct ma_info *ma;
1160         
1161         ma = (struct ma_info *)cbuserdata;
1162         syslog(LOG_DEBUG, "msgbase: fixed_output_pre() type=<%s>", cbtype);     
1163         if (!strcasecmp(cbtype, "multipart/alternative")) {
1164                 ++ma->is_ma;
1165                 ma->did_print = 0;
1166         }
1167         if (!strcasecmp(cbtype, "message/rfc822")) {
1168                 ++ma->freeze;
1169         }
1170 }
1171
1172
1173 //
1174 // Post callback function for multipart/alternative
1175 //
1176 void fixed_output_post(char *name, char *filename, char *partnum, char *disp,
1177                 void *content, char *cbtype, char *cbcharset, size_t length,
1178                 char *encoding, char *cbid, void *cbuserdata)
1179 {
1180         struct ma_info *ma;
1181         
1182         ma = (struct ma_info *)cbuserdata;
1183         syslog(LOG_DEBUG, "msgbase: fixed_output_post() type=<%s>", cbtype);    
1184         if (!strcasecmp(cbtype, "multipart/alternative")) {
1185                 --ma->is_ma;
1186                 ma->did_print = 0;
1187         }
1188         if (!strcasecmp(cbtype, "message/rfc822")) {
1189                 --ma->freeze;
1190         }
1191 }
1192
1193
1194 // Inline callback function for mime parser that wants to display text
1195 void fixed_output(char *name, char *filename, char *partnum, char *disp,
1196                 void *content, char *cbtype, char *cbcharset, size_t length,
1197                 char *encoding, char *cbid, void *cbuserdata)
1198 {
1199         char *ptr;
1200         char *wptr;
1201         size_t wlen;
1202         struct ma_info *ma;
1203
1204         ma = (struct ma_info *)cbuserdata;
1205
1206         syslog(LOG_DEBUG,
1207                 "msgbase: fixed_output() part %s: %s (%s) (%ld bytes)",
1208                 partnum, filename, cbtype, (long)length
1209         );
1210
1211         // If we're in the middle of a multipart/alternative scope and
1212         // we've already printed another section, skip this one.
1213         if ( (ma->is_ma) && (ma->did_print) ) {
1214                 syslog(LOG_DEBUG, "msgbase: skipping part %s (%s)", partnum, cbtype);
1215                 return;
1216         }
1217         ma->did_print = 1;
1218
1219         if ( (!strcasecmp(cbtype, "text/plain")) 
1220            || (IsEmptyStr(cbtype)) ) {
1221                 wptr = content;
1222                 if (length > 0) {
1223                         client_write(wptr, length);
1224                         if (wptr[length-1] != '\n') {
1225                                 cprintf("\n");
1226                         }
1227                 }
1228                 return;
1229         }
1230
1231         if (!strcasecmp(cbtype, "text/html")) {
1232                 ptr = html_to_ascii(content, length, 80, 0);
1233                 wlen = strlen(ptr);
1234                 client_write(ptr, wlen);
1235                 if ((wlen > 0) && (ptr[wlen-1] != '\n')) {
1236                         cprintf("\n");
1237                 }
1238                 free(ptr);
1239                 return;
1240         }
1241
1242         if (ma->use_fo_hooks) {
1243                 if (PerformFixedOutputHooks(cbtype, content, length)) {         // returns nonzero if it handled the part
1244                         return;
1245                 }
1246         }
1247
1248         if (strncasecmp(cbtype, "multipart/", 10)) {
1249                 cprintf("Part %s: %s (%s) (%ld bytes)\r\n",
1250                         partnum, filename, cbtype, (long)length);
1251                 return;
1252         }
1253 }
1254
1255
1256 // The client is elegant and sophisticated and wants to be choosy about
1257 // MIME content types, so figure out which multipart/alternative part
1258 // we're going to send.
1259 //
1260 // We use a system of weights.  When we find a part that matches one of the
1261 // MIME types we've declared as preferential, we can store it in ma->chosen_part
1262 // and then set ma->chosen_pref to that MIME type's position in our preference
1263 // list.  If we then hit another match, we only replace the first match if
1264 // the preference value is lower.
1265 void choose_preferred(char *name, char *filename, char *partnum, char *disp,
1266                 void *content, char *cbtype, char *cbcharset, size_t length,
1267                 char *encoding, char *cbid, void *cbuserdata)
1268 {
1269         char buf[1024];
1270         int i;
1271         struct ma_info *ma;
1272         
1273         ma = (struct ma_info *)cbuserdata;
1274
1275         for (i=0; i<num_tokens(CC->preferred_formats, '|'); ++i) {
1276                 extract_token(buf, CC->preferred_formats, i, '|', sizeof buf);
1277                 if ( (!strcasecmp(buf, cbtype)) && (!ma->freeze) ) {
1278                         if (i < ma->chosen_pref) {
1279                                 syslog(LOG_DEBUG, "msgbase: setting chosen part to <%s>", partnum);
1280                                 safestrncpy(ma->chosen_part, partnum, sizeof ma->chosen_part);
1281                                 ma->chosen_pref = i;
1282                         }
1283                 }
1284         }
1285 }
1286
1287
1288 // Now that we've chosen our preferred part, output it.
1289 void output_preferred(char *name, 
1290                       char *filename, 
1291                       char *partnum, 
1292                       char *disp,
1293                       void *content, 
1294                       char *cbtype, 
1295                       char *cbcharset, 
1296                       size_t length,
1297                       char *encoding, 
1298                       char *cbid, 
1299                       void *cbuserdata)
1300 {
1301         int i;
1302         char buf[128];
1303         int add_newline = 0;
1304         char *text_content;
1305         struct ma_info *ma;
1306         char *decoded = NULL;
1307         size_t bytes_decoded;
1308         int rc = 0;
1309
1310         ma = (struct ma_info *)cbuserdata;
1311
1312         // This is not the MIME part you're looking for...
1313         if (strcasecmp(partnum, ma->chosen_part)) return;
1314
1315         // If the content-type of this part is in our preferred formats
1316         // list, we can simply output it verbatim.
1317         for (i=0; i<num_tokens(CC->preferred_formats, '|'); ++i) {
1318                 extract_token(buf, CC->preferred_formats, i, '|', sizeof buf);
1319                 if (!strcasecmp(buf, cbtype)) {
1320                         /* Yeah!  Go!  W00t!! */
1321                         if (ma->dont_decode == 0) 
1322                                 rc = mime_decode_now (content, 
1323                                                       length,
1324                                                       encoding,
1325                                                       &decoded,
1326                                                       &bytes_decoded);
1327                         if (rc < 0)
1328                                 break; // Give us the chance, maybe theres another one.
1329
1330                         if (rc == 0) text_content = (char *)content;
1331                         else {
1332                                 text_content = decoded;
1333                                 length = bytes_decoded;
1334                         }
1335
1336                         if (text_content[length-1] != '\n') {
1337                                 ++add_newline;
1338                         }
1339                         cprintf("Content-type: %s", cbtype);
1340                         if (!IsEmptyStr(cbcharset)) {
1341                                 cprintf("; charset=%s", cbcharset);
1342                         }
1343                         cprintf("\nContent-length: %d\n",
1344                                 (int)(length + add_newline) );
1345                         if (!IsEmptyStr(encoding)) {
1346                                 cprintf("Content-transfer-encoding: %s\n", encoding);
1347                         }
1348                         else {
1349                                 cprintf("Content-transfer-encoding: 7bit\n");
1350                         }
1351                         cprintf("X-Citadel-MSG4-Partnum: %s\n", partnum);
1352                         cprintf("\n");
1353                         if (client_write(text_content, length) == -1)
1354                         {
1355                                 syslog(LOG_ERR, "msgbase: output_preferred() aborting due to write failure");
1356                                 return;
1357                         }
1358                         if (add_newline) cprintf("\n");
1359                         if (decoded != NULL) free(decoded);
1360                         return;
1361                 }
1362         }
1363
1364         // No translations required or possible: output as text/plain
1365         cprintf("Content-type: text/plain\n\n");
1366         rc = 0;
1367         if (ma->dont_decode == 0)
1368                 rc = mime_decode_now (content, 
1369                                       length,
1370                                       encoding,
1371                                       &decoded,
1372                                       &bytes_decoded);
1373         if (rc < 0)
1374                 return; // Give us the chance, maybe theres another one.
1375         
1376         if (rc == 0) text_content = (char *)content;
1377         else {
1378                 text_content = decoded;
1379                 length = bytes_decoded;
1380         }
1381
1382         fixed_output(name, filename, partnum, disp, text_content, cbtype, cbcharset, length, encoding, cbid, cbuserdata);
1383         if (decoded != NULL) free(decoded);
1384 }
1385
1386
1387 struct encapmsg {
1388         char desired_section[64];
1389         char *msg;
1390         size_t msglen;
1391 };
1392
1393
1394 // Callback function
1395 void extract_encapsulated_message(char *name, char *filename, char *partnum, char *disp,
1396                    void *content, char *cbtype, char *cbcharset, size_t length,
1397                    char *encoding, char *cbid, void *cbuserdata)
1398 {
1399         struct encapmsg *encap;
1400
1401         encap = (struct encapmsg *)cbuserdata;
1402
1403         // Only proceed if this is the desired section...
1404         if (!strcasecmp(encap->desired_section, partnum)) {
1405                 encap->msglen = length;
1406                 encap->msg = malloc(length + 2);
1407                 memcpy(encap->msg, content, length);
1408                 return;
1409         }
1410 }
1411
1412
1413 // Determine whether the specified message exists in the cached_msglist
1414 // (This is a security check)
1415 int check_cached_msglist(long msgnum) {
1416
1417         // cases in which we skip the check
1418         if (!CC) return om_ok;                                          // not a session
1419         if (CC->client_socket <= 0) return om_ok;                       // not a client session
1420         if (CC->cached_msglist == NULL) return om_access_denied;        // no msglist fetched
1421         if (CC->cached_num_msgs == 0) return om_access_denied;          // nothing to check 
1422
1423         // Do a binary search within the cached_msglist for the requested msgnum
1424         int min = 0;
1425         int max = (CC->cached_num_msgs - 1);
1426
1427         while (max >= min) {
1428                 int middle = min + (max-min) / 2 ;
1429                 if (msgnum == CC->cached_msglist[middle]) {
1430                         return om_ok;
1431                 }
1432                 if (msgnum > CC->cached_msglist[middle]) {
1433                         min = middle + 1;
1434                 }
1435                 else {
1436                         max = middle - 1;
1437                 }
1438         }
1439
1440         return om_access_denied;
1441 }
1442
1443
1444 // Get a message off disk.  (returns om_* values found in msgbase.h)
1445 int CtdlOutputMsg(long msg_num,         // message number (local) to fetch
1446                 int mode,               // how would you like that message?
1447                 int headers_only,       // eschew the message body?
1448                 int do_proto,           // do Citadel protocol responses?
1449                 int crlf,               // Use CRLF newlines instead of LF?
1450                 char *section,          // NULL or a message/rfc822 section
1451                 int flags,              // various flags; see msgbase.h
1452                 char **Author,
1453                 char **Address,
1454                 char **MessageID
1455 ) {
1456         struct CtdlMessage *TheMessage = NULL;
1457         int retcode = CIT_OK;
1458         struct encapmsg encap;
1459         int r;
1460
1461         syslog(LOG_DEBUG, "msgbase: CtdlOutputMsg(msgnum=%ld, mode=%d, section=%s)", 
1462                 msg_num, mode,
1463                 (section ? section : "<>")
1464         );
1465
1466         r = CtdlDoIHavePermissionToReadMessagesInThisRoom();
1467         if (r != om_ok) {
1468                 if (do_proto) {
1469                         if (r == om_not_logged_in) {
1470                                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
1471                         }
1472                         else {
1473                                 cprintf("%d An unknown error has occurred.\n", ERROR);
1474                         }
1475                 }
1476                 return(r);
1477         }
1478
1479         /*
1480          * Check to make sure the message is actually IN this room
1481          */
1482         r = check_cached_msglist(msg_num);
1483         if (r == om_access_denied) {
1484                 /* Not in the cache?  We get ONE shot to check it again. */
1485                 CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, NULL, NULL, NULL);
1486                 r = check_cached_msglist(msg_num);
1487         }
1488         if (r != om_ok) {
1489                 syslog(LOG_DEBUG, "msgbase: security check fail; message %ld is not in %s",
1490                            msg_num, CC->room.QRname
1491                 );
1492                 if (do_proto) {
1493                         if (r == om_access_denied) {
1494                                 cprintf("%d message %ld was not found in this room\n",
1495                                         ERROR + HIGHER_ACCESS_REQUIRED,
1496                                         msg_num
1497                                 );
1498                         }
1499                 }
1500                 return(r);
1501         }
1502
1503         /*
1504          * Fetch the message from disk.  If we're in HEADERS_FAST mode,
1505          * request that we don't even bother loading the body into memory.
1506          */
1507         if (headers_only == HEADERS_FAST) {
1508                 TheMessage = CtdlFetchMessage(msg_num, 0);
1509         }
1510         else {
1511                 TheMessage = CtdlFetchMessage(msg_num, 1);
1512         }
1513
1514         if (TheMessage == NULL) {
1515                 if (do_proto) cprintf("%d Can't locate msg %ld on disk\n",
1516                         ERROR + MESSAGE_NOT_FOUND, msg_num);
1517                 return(om_no_such_msg);
1518         }
1519
1520         /* Here is the weird form of this command, to process only an
1521          * encapsulated message/rfc822 section.
1522          */
1523         if (section) if (!IsEmptyStr(section)) if (strcmp(section, "0")) {
1524                 memset(&encap, 0, sizeof encap);
1525                 safestrncpy(encap.desired_section, section, sizeof encap.desired_section);
1526                 mime_parser(CM_RANGE(TheMessage, eMesageText),
1527                             *extract_encapsulated_message,
1528                             NULL, NULL, (void *)&encap, 0
1529                         );
1530
1531                 if ((Author != NULL) && (*Author == NULL))
1532                 {
1533                         long len;
1534                         CM_GetAsField(TheMessage, eAuthor, Author, &len);
1535                 }
1536                 if ((Address != NULL) && (*Address == NULL))
1537                 {       
1538                         long len;
1539                         CM_GetAsField(TheMessage, erFc822Addr, Address, &len);
1540                 }
1541                 if ((MessageID != NULL) && (*MessageID == NULL))
1542                 {       
1543                         long len;
1544                         CM_GetAsField(TheMessage, emessageId, MessageID, &len);
1545                 }
1546                 CM_Free(TheMessage);
1547                 TheMessage = NULL;
1548
1549                 if (encap.msg) {
1550                         encap.msg[encap.msglen] = 0;
1551                         TheMessage = convert_internet_message(encap.msg);
1552                         encap.msg = NULL;       /* no free() here, TheMessage owns it now */
1553
1554                         /* Now we let it fall through to the bottom of this
1555                          * function, because TheMessage now contains the
1556                          * encapsulated message instead of the top-level
1557                          * message.  Isn't that neat?
1558                          */
1559                 }
1560                 else {
1561                         if (do_proto) {
1562                                 cprintf("%d msg %ld has no part %s\n",
1563                                         ERROR + MESSAGE_NOT_FOUND,
1564                                         msg_num,
1565                                         section);
1566                         }
1567                         retcode = om_no_such_msg;
1568                 }
1569
1570         }
1571
1572         /* Ok, output the message now */
1573         if (retcode == CIT_OK)
1574                 retcode = CtdlOutputPreLoadedMsg(TheMessage, mode, headers_only, do_proto, crlf, flags);
1575         if ((Author != NULL) && (*Author == NULL))
1576         {
1577                 long len;
1578                 CM_GetAsField(TheMessage, eAuthor, Author, &len);
1579         }
1580         if ((Address != NULL) && (*Address == NULL))
1581         {       
1582                 long len;
1583                 CM_GetAsField(TheMessage, erFc822Addr, Address, &len);
1584         }
1585         if ((MessageID != NULL) && (*MessageID == NULL))
1586         {       
1587                 long len;
1588                 CM_GetAsField(TheMessage, emessageId, MessageID, &len);
1589         }
1590
1591         CM_Free(TheMessage);
1592
1593         return(retcode);
1594 }
1595
1596
1597 void OutputCtdlMsgHeaders(struct CtdlMessage *TheMessage, int do_proto) {
1598         int i;
1599         char buf[SIZ];
1600         char display_name[256];
1601
1602         /* begin header processing loop for Citadel message format */
1603         safestrncpy(display_name, "<unknown>", sizeof display_name);
1604         if (!CM_IsEmpty(TheMessage, eAuthor)) {
1605                 strcpy(buf, TheMessage->cm_fields[eAuthor]);
1606                 if (TheMessage->cm_anon_type == MES_ANONONLY) {
1607                         safestrncpy(display_name, "****", sizeof display_name);
1608                 }
1609                 else if (TheMessage->cm_anon_type == MES_ANONOPT) {
1610                         safestrncpy(display_name, "anonymous", sizeof display_name);
1611                 }
1612                 else {
1613                         safestrncpy(display_name, buf, sizeof display_name);
1614                 }
1615                 if ((is_room_aide())
1616                     && ((TheMessage->cm_anon_type == MES_ANONONLY)
1617                         || (TheMessage->cm_anon_type == MES_ANONOPT))) {
1618                         size_t tmp = strlen(display_name);
1619                         snprintf(&display_name[tmp],
1620                                  sizeof display_name - tmp,
1621                                  " [%s]", buf);
1622                 }
1623         }
1624
1625         /* Now spew the header fields in the order we like them. */
1626         for (i=0; i< NDiskFields; ++i) {
1627                 eMsgField Field;
1628                 Field = FieldOrder[i];
1629                 if (Field != eMesageText) {
1630                         if ( (!CM_IsEmpty(TheMessage, Field)) && (msgkeys[Field] != NULL) ) {
1631                                 if ((Field == eenVelopeTo) || (Field == eRecipient) || (Field == eCarbonCopY)) {
1632                                         sanitize_truncated_recipient(TheMessage->cm_fields[Field]);
1633                                 }
1634                                 if (Field == eAuthor) {
1635                                         if (do_proto) {
1636                                                 cprintf("%s=%s\n", msgkeys[Field], display_name);
1637                                         }
1638                                 }
1639                                 /* Masquerade display name if needed */
1640                                 else {
1641                                         if (do_proto) {
1642                                                 cprintf("%s=%s\n", msgkeys[Field], TheMessage->cm_fields[Field]);
1643                                         }
1644                                 }
1645                                 /* Give the client a hint about whether the message originated locally */
1646                                 if (Field == erFc822Addr) {
1647                                         if (IsDirectory(TheMessage->cm_fields[Field] ,0)) {
1648                                                 cprintf("locl=yes\n");                          // message originated locally.
1649                                         }
1650
1651
1652
1653                                 }
1654                         }
1655                 }
1656         }
1657 }
1658
1659
1660 void OutputRFC822MsgHeaders(
1661         struct CtdlMessage *TheMessage,
1662         int flags,              /* should the message be exported clean */
1663         const char *nl, int nlen,
1664         char *mid, long sizeof_mid,
1665         char *suser, long sizeof_suser,
1666         char *luser, long sizeof_luser,
1667         char *fuser, long sizeof_fuser,
1668         char *snode, long sizeof_snode)
1669 {
1670         char datestamp[100];
1671         int subject_found = 0;
1672         char buf[SIZ];
1673         int i, j, k;
1674         char *mptr = NULL;
1675         char *mpptr = NULL;
1676         char *hptr;
1677
1678         for (i = 0; i < NDiskFields; ++i) {
1679                 if (TheMessage->cm_fields[FieldOrder[i]]) {
1680                         mptr = mpptr = TheMessage->cm_fields[FieldOrder[i]];
1681                         switch (FieldOrder[i]) {
1682                         case eAuthor:
1683                                 safestrncpy(luser, mptr, sizeof_luser);
1684                                 safestrncpy(suser, mptr, sizeof_suser);
1685                                 break;
1686                         case eCarbonCopY:
1687                                 if ((flags & QP_EADDR) != 0) {
1688                                         mptr = qp_encode_email_addrs(mptr);
1689                                 }
1690                                 sanitize_truncated_recipient(mptr);
1691                                 cprintf("CC: %s%s", mptr, nl);
1692                                 break;
1693                         case eMessagePath:
1694                                 cprintf("Return-Path: %s%s", mptr, nl);
1695                                 break;
1696                         case eListID:
1697                                 cprintf("List-ID: %s%s", mptr, nl);
1698                                 break;
1699                         case eenVelopeTo:
1700                                 if ((flags & QP_EADDR) != 0) 
1701                                         mptr = qp_encode_email_addrs(mptr);
1702                                 hptr = mptr;
1703                                 while ((*hptr != '\0') && isspace(*hptr))
1704                                         hptr ++;
1705                                 if (!IsEmptyStr(hptr))
1706                                         cprintf("Envelope-To: %s%s", hptr, nl);
1707                                 break;
1708                         case eMsgSubject:
1709                                 cprintf("Subject: %s%s", mptr, nl);
1710                                 subject_found = 1;
1711                                 break;
1712                         case emessageId:
1713                                 safestrncpy(mid, mptr, sizeof_mid);
1714                                 break;
1715                         case erFc822Addr:
1716                                 safestrncpy(fuser, mptr, sizeof_fuser);
1717                                 break;
1718                         case eRecipient:
1719                                 if (haschar(mptr, '@') == 0) {
1720                                         sanitize_truncated_recipient(mptr);
1721                                         cprintf("To: %s@%s", mptr, CtdlGetConfigStr("c_fqdn"));
1722                                         cprintf("%s", nl);
1723                                 }
1724                                 else {
1725                                         if ((flags & QP_EADDR) != 0) {
1726                                                 mptr = qp_encode_email_addrs(mptr);
1727                                         }
1728                                         sanitize_truncated_recipient(mptr);
1729                                         cprintf("To: %s", mptr);
1730                                         cprintf("%s", nl);
1731                                 }
1732                                 break;
1733                         case eTimestamp:
1734                                 datestring(datestamp, sizeof datestamp, atol(mptr), DATESTRING_RFC822);
1735                                 cprintf("Date: %s%s", datestamp, nl);
1736                                 break;
1737                         case eWeferences:
1738                                 cprintf("References: ");
1739                                 k = num_tokens(mptr, '|');
1740                                 for (j=0; j<k; ++j) {
1741                                         extract_token(buf, mptr, j, '|', sizeof buf);
1742                                         cprintf("<%s>", buf);
1743                                         if (j == (k-1)) {
1744                                                 cprintf("%s", nl);
1745                                         }
1746                                         else {
1747                                                 cprintf(" ");
1748                                         }
1749                                 }
1750                                 break;
1751                         case eReplyTo:
1752                                 hptr = mptr;
1753                                 while ((*hptr != '\0') && isspace(*hptr))
1754                                         hptr ++;
1755                                 if (!IsEmptyStr(hptr))
1756                                         cprintf("Reply-To: %s%s", mptr, nl);
1757                                 break;
1758
1759                         case eExclusiveID:
1760                         case eJournal:
1761                         case eMesageText:
1762                         case eBig_message:
1763                         case eOriginalRoom:
1764                         case eErrorMsg:
1765                         case eSuppressIdx:
1766                         case eExtnotify:
1767                         case eVltMsgNum:
1768                                 /* these don't map to mime message headers. */
1769                                 break;
1770                         }
1771                         if (mptr != mpptr) {
1772                                 free (mptr);
1773                         }
1774                 }
1775         }
1776         if (subject_found == 0) {
1777                 cprintf("Subject: (no subject)%s", nl);
1778         }
1779 }
1780
1781
1782 void Dump_RFC822HeadersBody(
1783         struct CtdlMessage *TheMessage,
1784         int headers_only,       /* eschew the message body? */
1785         int flags,              /* should the bessage be exported clean? */
1786         const char *nl, int nlen)
1787 {
1788         cit_uint8_t prev_ch;
1789         int eoh = 0;
1790         const char *StartOfText = StrBufNOTNULL;
1791         char outbuf[1024];
1792         int outlen = 0;
1793         int nllen = strlen(nl);
1794         char *mptr;
1795         int lfSent = 0;
1796
1797         mptr = TheMessage->cm_fields[eMesageText];
1798
1799         prev_ch = '\0';
1800         while (*mptr != '\0') {
1801                 if (*mptr == '\r') {
1802                         /* do nothing */
1803                 }
1804                 else {
1805                         if ((!eoh) &&
1806                             (*mptr == '\n'))
1807                         {
1808                                 eoh = (*(mptr+1) == '\r') && (*(mptr+2) == '\n');
1809                                 if (!eoh)
1810                                         eoh = *(mptr+1) == '\n';
1811                                 if (eoh)
1812                                 {
1813                                         StartOfText = mptr;
1814                                         StartOfText = strchr(StartOfText, '\n');
1815                                         StartOfText = strchr(StartOfText, '\n');
1816                                 }
1817                         }
1818                         if (((headers_only == HEADERS_NONE) && (mptr >= StartOfText)) ||
1819                             ((headers_only == HEADERS_ONLY) && (mptr < StartOfText)) ||
1820                             ((headers_only != HEADERS_NONE) && 
1821                              (headers_only != HEADERS_ONLY))
1822                         ) {
1823                                 if (*mptr == '\n') {
1824                                         memcpy(&outbuf[outlen], nl, nllen);
1825                                         outlen += nllen;
1826                                         outbuf[outlen] = '\0';
1827                                 }
1828                                 else {
1829                                         outbuf[outlen++] = *mptr;
1830                                 }
1831                         }
1832                 }
1833                 if (flags & ESC_DOT) {
1834                         if ((prev_ch == '\n') && (*mptr == '.') && ((*(mptr+1) == '\r') || (*(mptr+1) == '\n'))) {
1835                                 outbuf[outlen++] = '.';
1836                         }
1837                         prev_ch = *mptr;
1838                 }
1839                 ++mptr;
1840                 if (outlen > 1000) {
1841                         if (client_write(outbuf, outlen) == -1) {
1842                                 syslog(LOG_ERR, "msgbase: Dump_RFC822HeadersBody() aborting due to write failure");
1843                                 return;
1844                         }
1845                         lfSent =  (outbuf[outlen - 1] == '\n');
1846                         outlen = 0;
1847                 }
1848         }
1849         if (outlen > 0) {
1850                 client_write(outbuf, outlen);
1851                 lfSent =  (outbuf[outlen - 1] == '\n');
1852         }
1853         if (!lfSent)
1854                 client_write(nl, nlen);
1855 }
1856
1857
1858 /* If the format type on disk is 1 (fixed-format), then we want
1859  * everything to be output completely literally ... regardless of
1860  * what message transfer format is in use.
1861  */
1862 void DumpFormatFixed(
1863         struct CtdlMessage *TheMessage,
1864         int mode,               /* how would you like that message? */
1865         const char *nl, int nllen)
1866 {
1867         cit_uint8_t ch;
1868         char buf[SIZ];
1869         int buflen;
1870         int xlline = 0;
1871         char *mptr;
1872
1873         mptr = TheMessage->cm_fields[eMesageText];
1874         
1875         if (mode == MT_MIME) {
1876                 cprintf("Content-type: text/plain\n\n");
1877         }
1878         *buf = '\0';
1879         buflen = 0;
1880         while (ch = *mptr++, ch > 0) {
1881                 if (ch == '\n')
1882                         ch = '\r';
1883
1884                 if ((buflen > 250) && (!xlline)){
1885                         int tbuflen;
1886                         tbuflen = buflen;
1887
1888                         while ((buflen > 0) && 
1889                                (!isspace(buf[buflen])))
1890                                 buflen --;
1891                         if (buflen == 0) {
1892                                 xlline = 1;
1893                         }
1894                         else {
1895                                 mptr -= tbuflen - buflen;
1896                                 buf[buflen] = '\0';
1897                                 ch = '\r';
1898                         }
1899                 }
1900
1901                 /* if we reach the outer bounds of our buffer, abort without respect for what we purge. */
1902                 if (xlline && ((isspace(ch)) || (buflen > SIZ - nllen - 2))) {
1903                         ch = '\r';
1904                 }
1905
1906                 if (ch == '\r') {
1907                         memcpy (&buf[buflen], nl, nllen);
1908                         buflen += nllen;
1909                         buf[buflen] = '\0';
1910
1911                         if (client_write(buf, buflen) == -1) {
1912                                 syslog(LOG_ERR, "msgbase: DumpFormatFixed() aborting due to write failure");
1913                                 return;
1914                         }
1915                         *buf = '\0';
1916                         buflen = 0;
1917                         xlline = 0;
1918                 } else {
1919                         buf[buflen] = ch;
1920                         buflen++;
1921                 }
1922         }
1923         buf[buflen] = '\0';
1924         if (!IsEmptyStr(buf)) {
1925                 cprintf("%s%s", buf, nl);
1926         }
1927 }
1928
1929
1930 /*
1931  * Get a message off disk.  (returns om_* values found in msgbase.h)
1932  */
1933 int CtdlOutputPreLoadedMsg(
1934                 struct CtdlMessage *TheMessage,
1935                 int mode,               /* how would you like that message? */
1936                 int headers_only,       /* eschew the message body? */
1937                 int do_proto,           /* do Citadel protocol responses? */
1938                 int crlf,               /* Use CRLF newlines instead of LF? */
1939                 int flags               /* should the bessage be exported clean? */
1940 ) {
1941         int i;
1942         const char *nl; /* newline string */
1943         int nlen;
1944         struct ma_info ma;
1945
1946         /* Buffers needed for RFC822 translation.  These are all filled
1947          * using functions that are bounds-checked, and therefore we can
1948          * make them substantially smaller than SIZ.
1949          */
1950         char suser[1024];
1951         char luser[1024];
1952         char fuser[1024];
1953         char snode[1024];
1954         char mid[1024];
1955
1956         syslog(LOG_DEBUG, "msgbase: CtdlOutputPreLoadedMsg(TheMessage=%s, %d, %d, %d, %d",
1957                    ((TheMessage == NULL) ? "NULL" : "not null"),
1958                    mode, headers_only, do_proto, crlf
1959         );
1960
1961         strcpy(mid, "unknown");
1962         nl = (crlf ? "\r\n" : "\n");
1963         nlen = crlf ? 2 : 1;
1964
1965         if (!CM_IsValidMsg(TheMessage)) {
1966                 syslog(LOG_ERR, "msgbase: error; invalid preloaded message for output");
1967                 return(om_no_such_msg);
1968         }
1969
1970         /* Suppress envelope recipients if required to avoid disclosing BCC addresses.
1971          * Pad it with spaces in order to avoid changing the RFC822 length of the message.
1972          */
1973         if ( (flags & SUPPRESS_ENV_TO) && (!CM_IsEmpty(TheMessage, eenVelopeTo)) ) {
1974                 memset(TheMessage->cm_fields[eenVelopeTo], ' ', TheMessage->cm_lengths[eenVelopeTo]);
1975         }
1976                 
1977         /* Are we downloading a MIME component? */
1978         if (mode == MT_DOWNLOAD) {
1979                 if (TheMessage->cm_format_type != FMT_RFC822) {
1980                         if (do_proto)
1981                                 cprintf("%d This is not a MIME message.\n",
1982                                 ERROR + ILLEGAL_VALUE);
1983                 } else if (CC->download_fp != NULL) {
1984                         if (do_proto) cprintf(
1985                                 "%d You already have a download open.\n",
1986                                 ERROR + RESOURCE_BUSY);
1987                 } else {
1988                         /* Parse the message text component */
1989                         mime_parser(CM_RANGE(TheMessage, eMesageText),
1990                                     *mime_download, NULL, NULL, NULL, 0);
1991                         /* If there's no file open by this time, the requested
1992                          * section wasn't found, so print an error
1993                          */
1994                         if (CC->download_fp == NULL) {
1995                                 if (do_proto) cprintf(
1996                                         "%d Section %s not found.\n",
1997                                         ERROR + FILE_NOT_FOUND,
1998                                         CC->download_desired_section);
1999                         }
2000                 }
2001                 return((CC->download_fp != NULL) ? om_ok : om_mime_error);
2002         }
2003
2004         // MT_SPEW_SECTION is like MT_DOWNLOAD except it outputs the whole MIME part
2005         // in a single server operation instead of opening a download file.
2006         if (mode == MT_SPEW_SECTION) {
2007                 if (TheMessage->cm_format_type != FMT_RFC822) {
2008                         if (do_proto)
2009                                 cprintf("%d This is not a MIME message.\n",
2010                                 ERROR + ILLEGAL_VALUE);
2011                 }
2012                 else {
2013                         // Locate and parse the component specified by the caller
2014                         int found_it = 0;
2015                         mime_parser(CM_RANGE(TheMessage, eMesageText), *mime_spew_section, NULL, NULL, (void *)&found_it, 0);
2016
2017                         // If section wasn't found, print an error
2018                         if (!found_it) {
2019                                 if (do_proto) {
2020                                         cprintf( "%d Section %s not found.\n", ERROR + FILE_NOT_FOUND, CC->download_desired_section);
2021                                 }
2022                         }
2023                 }
2024                 return((CC->download_fp != NULL) ? om_ok : om_mime_error);
2025         }
2026
2027         // now for the user-mode message reading loops
2028         if (do_proto) cprintf("%d msg:\n", LISTING_FOLLOWS);
2029
2030         // Does the caller want to skip the headers?
2031         if (headers_only == HEADERS_NONE) goto START_TEXT;
2032
2033         // Tell the client which format type we're using.
2034         if ( (mode == MT_CITADEL) && (do_proto) ) {
2035                 cprintf("type=%d\n", TheMessage->cm_format_type);       // Tell the client which format type we're using.
2036         }
2037
2038         // nhdr=yes means that we're only displaying headers, no body
2039         if ( (TheMessage->cm_anon_type == MES_ANONONLY)
2040            && ((mode == MT_CITADEL) || (mode == MT_MIME))
2041            && (do_proto)
2042            ) {
2043                 cprintf("nhdr=yes\n");
2044         }
2045
2046         if ((mode == MT_CITADEL) || (mode == MT_MIME)) {
2047                 OutputCtdlMsgHeaders(TheMessage, do_proto);
2048         }
2049
2050         // begin header processing loop for RFC822 transfer format
2051         strcpy(suser, "");
2052         strcpy(luser, "");
2053         strcpy(fuser, "");
2054         strcpy(snode, "");
2055         if (mode == MT_RFC822) 
2056                 OutputRFC822MsgHeaders(
2057                         TheMessage,
2058                         flags,
2059                         nl, nlen,
2060                         mid, sizeof(mid),
2061                         suser, sizeof(suser),
2062                         luser, sizeof(luser),
2063                         fuser, sizeof(fuser),
2064                         snode, sizeof(snode)
2065                         );
2066
2067
2068         for (i=0; !IsEmptyStr(&suser[i]); ++i) {
2069                 suser[i] = tolower(suser[i]);
2070                 if (!isalnum(suser[i])) suser[i]='_';
2071         }
2072
2073         if (mode == MT_RFC822) {
2074                 /* Construct a fun message id */
2075                 cprintf("Message-ID: <%s", mid);
2076                 if (strchr(mid, '@')==NULL) {
2077                         cprintf("@%s", snode);
2078                 }
2079                 cprintf(">%s", nl);
2080
2081                 if (!is_room_aide() && (TheMessage->cm_anon_type == MES_ANONONLY)) {
2082                         cprintf("From: \"----\" <x@x.org>%s", nl);
2083                 }
2084                 else if (!is_room_aide() && (TheMessage->cm_anon_type == MES_ANONOPT)) {
2085                         cprintf("From: \"anonymous\" <x@x.org>%s", nl);
2086                 }
2087                 else if (!IsEmptyStr(fuser)) {
2088                         cprintf("From: \"%s\" <%s>%s", luser, fuser, nl);
2089                 }
2090                 else {
2091                         cprintf("From: \"%s\" <%s@%s>%s", luser, suser, snode, nl);
2092                 }
2093
2094                 /* Blank line signifying RFC822 end-of-headers */
2095                 if (TheMessage->cm_format_type != FMT_RFC822) {
2096                         cprintf("%s", nl);
2097                 }
2098         }
2099
2100         // end header processing loop ... at this point, we're in the text
2101 START_TEXT:
2102         if (headers_only == HEADERS_FAST) goto DONE;
2103
2104         // Tell the client about the MIME parts in this message
2105         if (TheMessage->cm_format_type == FMT_RFC822) {
2106                 if ( (mode == MT_CITADEL) || (mode == MT_MIME) ) {
2107                         memset(&ma, 0, sizeof(struct ma_info));
2108                         mime_parser(CM_RANGE(TheMessage, eMesageText),
2109                                 (do_proto ? *list_this_part : NULL),
2110                                 (do_proto ? *list_this_pref : NULL),
2111                                 (do_proto ? *list_this_suff : NULL),
2112                                 (void *)&ma, 1);
2113                 }
2114                 else if (mode == MT_RFC822) {   // unparsed RFC822 dump
2115                         Dump_RFC822HeadersBody(
2116                                 TheMessage,
2117                                 headers_only,
2118                                 flags,
2119                                 nl, nlen);
2120                         goto DONE;
2121                 }
2122         }
2123
2124         if (headers_only == HEADERS_ONLY) {
2125                 goto DONE;
2126         }
2127
2128         // signify start of msg text
2129         if ( (mode == MT_CITADEL) || (mode == MT_MIME) ) {
2130                 if (do_proto) cprintf("text\n");
2131         }
2132
2133         if (TheMessage->cm_format_type == FMT_FIXED) 
2134                 DumpFormatFixed(
2135                         TheMessage,
2136                         mode,           // how would you like that message?
2137                         nl, nlen);
2138
2139         // If the message on disk is format 0 (Citadel vari-format), we
2140         // output using the formatter at 80 columns.  This is the final output
2141         // form if the transfer format is RFC822, but if the transfer format
2142         // is Citadel proprietary, it'll still work, because the indentation
2143         // for new paragraphs is correct and the client will reformat the
2144         // message to the reader's screen width.
2145         //
2146         if (TheMessage->cm_format_type == FMT_CITADEL) {
2147                 if (mode == MT_MIME) {
2148                         cprintf("Content-type: text/x-citadel-variformat\n\n");
2149                 }
2150                 memfmout(TheMessage->cm_fields[eMesageText], nl);
2151         }
2152
2153         // If the message on disk is format 4 (MIME), we've gotta hand it
2154         // off to the MIME parser.  The client has already been told that
2155         // this message is format 1 (fixed format), so the callback function
2156         // we use will display those parts as-is.
2157         //
2158         if (TheMessage->cm_format_type == FMT_RFC822) {
2159                 memset(&ma, 0, sizeof(struct ma_info));
2160
2161                 if (mode == MT_MIME) {
2162                         ma.use_fo_hooks = 0;
2163                         strcpy(ma.chosen_part, "1");
2164                         ma.chosen_pref = 9999;
2165                         ma.dont_decode = CC->msg4_dont_decode;
2166                         mime_parser(CM_RANGE(TheMessage, eMesageText),
2167                                     *choose_preferred, *fixed_output_pre,
2168                                     *fixed_output_post, (void *)&ma, 1);
2169                         mime_parser(CM_RANGE(TheMessage, eMesageText),
2170                                     *output_preferred, NULL, NULL, (void *)&ma, 1);
2171                 }
2172                 else {
2173                         ma.use_fo_hooks = 1;
2174                         mime_parser(CM_RANGE(TheMessage, eMesageText),
2175                                     *fixed_output, *fixed_output_pre,
2176                                     *fixed_output_post, (void *)&ma, 0);
2177                 }
2178
2179         }
2180
2181 DONE:   /* now we're done */
2182         if (do_proto) cprintf("000\n");
2183         return(om_ok);
2184 }
2185
2186 // Save one or more message pointers into a specified room
2187 // (Returns 0 for success, nonzero for failure)
2188 // roomname may be NULL to use the current room
2189 //
2190 // Note that the 'supplied_msg' field may be set to NULL, in which case
2191 // the message will be fetched from disk, by number, if we need to perform
2192 // replication checks.  This adds an additional database read, so if the
2193 // caller already has the message in memory then it should be supplied.  (Obviously
2194 // this mode of operation only works if we're saving a single message.)
2195 //
2196 int CtdlSaveMsgPointersInRoom(char *roomname, long newmsgidlist[], int num_newmsgs,
2197                         int do_repl_check, struct CtdlMessage *supplied_msg, int suppress_refcount_adj
2198 ) {
2199         int i, j, unique;
2200         char hold_rm[ROOMNAMELEN];
2201         struct cdbdata *cdbfr;
2202         int num_msgs;
2203         long *msglist;
2204         long highest_msg = 0L;
2205
2206         long msgid = 0;
2207         struct CtdlMessage *msg = NULL;
2208
2209         long *msgs_to_be_merged = NULL;
2210         int num_msgs_to_be_merged = 0;
2211
2212         syslog(LOG_DEBUG,
2213                 "msgbase: CtdlSaveMsgPointersInRoom(room=%s, num_msgs=%d, repl=%d, suppress_rca=%d)",
2214                 roomname, num_newmsgs, do_repl_check, suppress_refcount_adj
2215         );
2216
2217         strcpy(hold_rm, CC->room.QRname);
2218
2219         /* Sanity checks */
2220         if (newmsgidlist == NULL) return(ERROR + INTERNAL_ERROR);
2221         if (num_newmsgs < 1) return(ERROR + INTERNAL_ERROR);
2222         if (num_newmsgs > 1) supplied_msg = NULL;
2223
2224         /* Now the regular stuff */
2225         if (CtdlGetRoomLock(&CC->room,
2226            ((roomname != NULL) ? roomname : CC->room.QRname) )
2227            != 0) {
2228                 syslog(LOG_ERR, "msgbase: no such room <%s>", roomname);
2229                 return(ERROR + ROOM_NOT_FOUND);
2230         }
2231
2232         msgs_to_be_merged = malloc(sizeof(long) * num_newmsgs);
2233         num_msgs_to_be_merged = 0;
2234         num_msgs = CtdlFetchMsgList(CC->room.QRnumber, &msglist);
2235
2236         /* Create a list of msgid's which were supplied by the caller, but do
2237          * not already exist in the target room.  It is absolutely taboo to
2238          * have more than one reference to the same message in a room.
2239          */
2240         for (i=0; i<num_newmsgs; ++i) {
2241                 unique = 1;
2242                 if (num_msgs > 0) for (j=0; j<num_msgs; ++j) {
2243                         if (msglist[j] == newmsgidlist[i]) {
2244                                 unique = 0;
2245                         }
2246                 }
2247                 if (unique) {
2248                         msgs_to_be_merged[num_msgs_to_be_merged++] = newmsgidlist[i];
2249                 }
2250         }
2251
2252         syslog(LOG_DEBUG, "msgbase: %d unique messages to be merged", num_msgs_to_be_merged);
2253
2254         /*
2255          * Now merge the new messages
2256          */
2257         msglist = realloc(msglist, (sizeof(long) * (num_msgs + num_msgs_to_be_merged)) );
2258         if (msglist == NULL) {
2259                 syslog(LOG_ALERT, "msgbase: ERROR; can't realloc message list!");
2260                 free(msgs_to_be_merged);
2261                 return (ERROR + INTERNAL_ERROR);
2262         }
2263         memcpy(&msglist[num_msgs], msgs_to_be_merged, (sizeof(long) * num_msgs_to_be_merged) );
2264         num_msgs += num_msgs_to_be_merged;
2265
2266         /* Sort the message list, so all the msgid's are in order */
2267         num_msgs = sort_msglist(msglist, num_msgs);
2268
2269         /* Determine the highest message number */
2270         highest_msg = msglist[num_msgs - 1];
2271
2272         /* Write it back to disk. */
2273         cdb_store(CDB_MSGLISTS, &CC->room.QRnumber, (int)sizeof(long), msglist, (int)(num_msgs * sizeof(long)));
2274
2275         /* Free up the memory we used. */
2276         free(msglist);
2277
2278         /* Update the highest-message pointer and unlock the room. */
2279         CC->room.QRhighest = highest_msg;
2280         CtdlPutRoomLock(&CC->room);
2281
2282         /* Perform replication checks if necessary */
2283         if ( (DoesThisRoomNeedEuidIndexing(&CC->room)) && (do_repl_check) ) {
2284                 syslog(LOG_DEBUG, "msgbase: CtdlSaveMsgPointerInRoom() doing repl checks");
2285
2286                 for (i=0; i<num_msgs_to_be_merged; ++i) {
2287                         msgid = msgs_to_be_merged[i];
2288         
2289                         if (supplied_msg != NULL) {
2290                                 msg = supplied_msg;
2291                         }
2292                         else {
2293                                 msg = CtdlFetchMessage(msgid, 0);
2294                         }
2295         
2296                         if (msg != NULL) {
2297                                 ReplicationChecks(msg);
2298                 
2299                                 /* If the message has an Exclusive ID, index that... */
2300                                 if (!CM_IsEmpty(msg, eExclusiveID)) {
2301                                         index_message_by_euid(msg->cm_fields[eExclusiveID], &CC->room, msgid);
2302                                 }
2303
2304                                 /* Free up the memory we may have allocated */
2305                                 if (msg != supplied_msg) {
2306                                         CM_Free(msg);
2307                                 }
2308                         }
2309         
2310                 }
2311         }
2312
2313         else {
2314                 syslog(LOG_DEBUG, "msgbase: CtdlSaveMsgPointerInRoom() skips repl checks");
2315         }
2316
2317         /* Submit this room for processing by hooks */
2318         int total_roomhook_errors = PerformRoomHooks(&CC->room);
2319         if (total_roomhook_errors) {
2320                 syslog(LOG_WARNING, "msgbase: room hooks returned %d errors", total_roomhook_errors);
2321         }
2322
2323         /* Go back to the room we were in before we wandered here... */
2324         CtdlGetRoom(&CC->room, hold_rm);
2325
2326         /* Bump the reference count for all messages which were merged */
2327         if (!suppress_refcount_adj) {
2328                 AdjRefCountList(msgs_to_be_merged, num_msgs_to_be_merged, +1);
2329         }
2330
2331         /* Free up memory... */
2332         if (msgs_to_be_merged != NULL) {
2333                 free(msgs_to_be_merged);
2334         }
2335
2336         /* Return success. */
2337         return (0);
2338 }
2339
2340
2341 /*
2342  * This is the same as CtdlSaveMsgPointersInRoom() but it only accepts
2343  * a single message.
2344  */
2345 int CtdlSaveMsgPointerInRoom(char *roomname, long msgid, int do_repl_check, struct CtdlMessage *supplied_msg) {
2346         return CtdlSaveMsgPointersInRoom(roomname, &msgid, 1, do_repl_check, supplied_msg, 0);
2347 }
2348
2349
2350 /*
2351  * Message base operation to save a new message to the message store
2352  * (returns new message number)
2353  *
2354  * This is the back end for CtdlSubmitMsg() and should not be directly
2355  * called by server-side modules.
2356  *
2357  */
2358 long CtdlSaveThisMessage(struct CtdlMessage *msg, long msgid, int Reply) {
2359         long retval;
2360         struct ser_ret smr;
2361         int is_bigmsg = 0;
2362         char *holdM = NULL;
2363         long holdMLen = 0;
2364
2365         /*
2366          * If the message is big, set its body aside for storage elsewhere
2367          * and we hide the message body from the serializer
2368          */
2369         if (!CM_IsEmpty(msg, eMesageText) && msg->cm_lengths[eMesageText] > BIGMSG) {
2370                 is_bigmsg = 1;
2371                 holdM = msg->cm_fields[eMesageText];
2372                 msg->cm_fields[eMesageText] = NULL;
2373                 holdMLen = msg->cm_lengths[eMesageText];
2374                 msg->cm_lengths[eMesageText] = 0;
2375         }
2376
2377         /* Serialize our data structure for storage in the database */  
2378         CtdlSerializeMessage(&smr, msg);
2379
2380         if (is_bigmsg) {
2381                 /* put the message body back into the message */
2382                 msg->cm_fields[eMesageText] = holdM;
2383                 msg->cm_lengths[eMesageText] = holdMLen;
2384         }
2385
2386         if (smr.len == 0) {
2387                 if (Reply) {
2388                         cprintf("%d Unable to serialize message\n",
2389                                 ERROR + INTERNAL_ERROR);
2390                 }
2391                 else {
2392                         syslog(LOG_ERR, "msgbase: CtdlSaveMessage() unable to serialize message");
2393
2394                 }
2395                 return (-1L);
2396         }
2397
2398         /* Write our little bundle of joy into the message base */
2399         retval = cdb_store(CDB_MSGMAIN, &msgid, (int)sizeof(long), smr.ser, smr.len);
2400         if (retval < 0) {
2401                 syslog(LOG_ERR, "msgbase: can't store message %ld: %ld", msgid, retval);
2402         }
2403         else {
2404                 if (is_bigmsg) {
2405                         retval = cdb_store(CDB_BIGMSGS, &msgid, (int)sizeof(long), holdM, (holdMLen + 1));
2406                         if (retval < 0) {
2407                                 syslog(LOG_ERR, "msgbase: failed to store message body for msgid %ld: %ld", msgid, retval);
2408                         }
2409                 }
2410         }
2411
2412         /* Free the memory we used for the serialized message */
2413         free(smr.ser);
2414         return(retval);
2415 }
2416
2417
2418 long send_message(struct CtdlMessage *msg) {
2419         long newmsgid;
2420         long retval;
2421         char msgidbuf[256];
2422         long msgidbuflen;
2423
2424         /* Get a new message number */
2425         newmsgid = get_new_message_number();
2426
2427         /* Generate an ID if we don't have one already */
2428         if (CM_IsEmpty(msg, emessageId)) {
2429                 msgidbuflen = snprintf(msgidbuf, sizeof msgidbuf, "%08lX-%08lX@%s",
2430                                        (long unsigned int) time(NULL),
2431                                        (long unsigned int) newmsgid,
2432                                        CtdlGetConfigStr("c_fqdn")
2433                         );
2434
2435                 CM_SetField(msg, emessageId, msgidbuf, msgidbuflen);
2436         }
2437
2438         retval = CtdlSaveThisMessage(msg, newmsgid, 1);
2439
2440         if (retval == 0) {
2441                 retval = newmsgid;
2442         }
2443
2444         /* Return the *local* message ID to the caller
2445          * (even if we're storing an incoming network message)
2446          */
2447         return(retval);
2448 }
2449
2450
2451 /*
2452  * Serialize a struct CtdlMessage into the format used on disk.
2453  * 
2454  * This function loads up a "struct ser_ret" (defined in server.h) which
2455  * contains the length of the serialized message and a pointer to the
2456  * serialized message in memory.  THE LATTER MUST BE FREED BY THE CALLER.
2457  */
2458 void CtdlSerializeMessage(struct ser_ret *ret,          /* return values */
2459                           struct CtdlMessage *msg)      /* unserialized msg */
2460 {
2461         size_t wlen;
2462         int i;
2463
2464         /*
2465          * Check for valid message format
2466          */
2467         if (CM_IsValidMsg(msg) == 0) {
2468                 syslog(LOG_ERR, "msgbase: CtdlSerializeMessage() aborting due to invalid message");
2469                 ret->len = 0;
2470                 ret->ser = NULL;
2471                 return;
2472         }
2473
2474         ret->len = 3;
2475         for (i=0; i < NDiskFields; ++i)
2476                 if (msg->cm_fields[FieldOrder[i]] != NULL)
2477                         ret->len += msg->cm_lengths[FieldOrder[i]] + 2;
2478
2479         ret->ser = malloc(ret->len);
2480         if (ret->ser == NULL) {
2481                 syslog(LOG_ERR, "msgbase: CtdlSerializeMessage() malloc(%ld) failed: %m", (long)ret->len);
2482                 ret->len = 0;
2483                 ret->ser = NULL;
2484                 return;
2485         }
2486
2487         ret->ser[0] = 0xFF;
2488         ret->ser[1] = msg->cm_anon_type;
2489         ret->ser[2] = msg->cm_format_type;
2490         wlen = 3;
2491
2492         for (i=0; i < NDiskFields; ++i) {
2493                 if (msg->cm_fields[FieldOrder[i]] != NULL) {
2494                         ret->ser[wlen++] = (char)FieldOrder[i];
2495
2496                         memcpy(&ret->ser[wlen],
2497                                msg->cm_fields[FieldOrder[i]],
2498                                msg->cm_lengths[FieldOrder[i]] + 1);
2499
2500                         wlen = wlen + msg->cm_lengths[FieldOrder[i]] + 1;
2501                 }
2502         }
2503
2504         if (ret->len != wlen) {
2505                 syslog(LOG_ERR, "msgbase: ERROR; len=%ld wlen=%ld", (long)ret->len, (long)wlen);
2506         }
2507
2508         return;
2509 }
2510
2511
2512 /*
2513  * Check to see if any messages already exist in the current room which
2514  * carry the same Exclusive ID as this one.  If any are found, delete them.
2515  */
2516 void ReplicationChecks(struct CtdlMessage *msg) {
2517         long old_msgnum = (-1L);
2518
2519         if (DoesThisRoomNeedEuidIndexing(&CC->room) == 0) return;
2520
2521         syslog(LOG_DEBUG, "msgbase: performing replication checks in <%s>", CC->room.QRname);
2522
2523         /* No exclusive id?  Don't do anything. */
2524         if (msg == NULL) return;
2525         if (CM_IsEmpty(msg, eExclusiveID)) return;
2526
2527         /*syslog(LOG_DEBUG, "msgbase: exclusive ID: <%s> for room <%s>",
2528           msg->cm_fields[eExclusiveID], CC->room.QRname);*/
2529
2530         old_msgnum = CtdlLocateMessageByEuid(msg->cm_fields[eExclusiveID], &CC->room);
2531         if (old_msgnum > 0L) {
2532                 syslog(LOG_DEBUG, "msgbase: ReplicationChecks() replacing message %ld", old_msgnum);
2533                 CtdlDeleteMessages(CC->room.QRname, &old_msgnum, 1, "");
2534         }
2535 }
2536
2537
2538 /*
2539  * Save a message to disk and submit it into the delivery system.
2540  */
2541 long CtdlSubmitMsg(struct CtdlMessage *msg,     /* message to save */
2542                    struct recptypes *recps,     /* recipients (if mail) */
2543                    const char *force            /* force a particular room? */
2544 ) {
2545         char hold_rm[ROOMNAMELEN];
2546         char actual_rm[ROOMNAMELEN];
2547         char force_room[ROOMNAMELEN];
2548         char content_type[SIZ];                 /* We have to learn this */
2549         char recipient[SIZ];
2550         char bounce_to[1024];
2551         const char *room;
2552         long newmsgid;
2553         const char *mptr = NULL;
2554         struct ctdluser userbuf;
2555         int a, i;
2556         struct MetaData smi;
2557         char *collected_addresses = NULL;
2558         struct addresses_to_be_filed *aptr = NULL;
2559         StrBuf *saved_rfc822_version = NULL;
2560         int qualified_for_journaling = 0;
2561
2562         syslog(LOG_DEBUG, "msgbase: CtdlSubmitMsg() called");
2563         if (CM_IsValidMsg(msg) == 0) return(-1);        /* self check */
2564
2565         /* If this message has no timestamp, we take the liberty of
2566          * giving it one, right now.
2567          */
2568         if (CM_IsEmpty(msg, eTimestamp)) {
2569                 CM_SetFieldLONG(msg, eTimestamp, time(NULL));
2570         }
2571
2572         /* If this message has no path, we generate one.
2573          */
2574         if (CM_IsEmpty(msg, eMessagePath)) {
2575                 if (!CM_IsEmpty(msg, eAuthor)) {
2576                         CM_CopyField(msg, eMessagePath, eAuthor);
2577                         for (a=0; !IsEmptyStr(&msg->cm_fields[eMessagePath][a]); ++a) {
2578                                 if (isspace(msg->cm_fields[eMessagePath][a])) {
2579                                         msg->cm_fields[eMessagePath][a] = ' ';
2580                                 }
2581                         }
2582                 }
2583                 else {
2584                         CM_SetField(msg, eMessagePath, HKEY("unknown"));
2585                 }
2586         }
2587
2588         if (force == NULL) {
2589                 force_room[0] = '\0';
2590         }
2591         else {
2592                 strcpy(force_room, force);
2593         }
2594
2595         /* Learn about what's inside, because it's what's inside that counts */
2596         if (CM_IsEmpty(msg, eMesageText)) {
2597                 syslog(LOG_ERR, "msgbase: ERROR; attempt to save message with NULL body");
2598                 return(-2);
2599         }
2600
2601         switch (msg->cm_format_type) {
2602         case 0:
2603                 strcpy(content_type, "text/x-citadel-variformat");
2604                 break;
2605         case 1:
2606                 strcpy(content_type, "text/plain");
2607                 break;
2608         case 4:
2609                 strcpy(content_type, "text/plain");
2610                 mptr = bmstrcasestr(msg->cm_fields[eMesageText], "Content-type:");
2611                 if (mptr != NULL) {
2612                         char *aptr;
2613                         safestrncpy(content_type, &mptr[13], sizeof content_type);
2614                         string_trim(content_type);
2615                         aptr = content_type;
2616                         while (!IsEmptyStr(aptr)) {
2617                                 if ((*aptr == ';')
2618                                     || (*aptr == ' ')
2619                                     || (*aptr == 13)
2620                                     || (*aptr == 10)) {
2621                                         *aptr = 0;
2622                                 }
2623                                 else aptr++;
2624                         }
2625                 }
2626         }
2627
2628         /* Goto the correct room */
2629         room = (recps) ? CC->room.QRname : SENTITEMS;
2630         syslog(LOG_DEBUG, "msgbase: selected room %s", room);
2631         strcpy(hold_rm, CC->room.QRname);
2632         strcpy(actual_rm, CC->room.QRname);
2633         if (recps != NULL) {
2634                 strcpy(actual_rm, SENTITEMS);
2635         }
2636
2637         /* If the user is a twit, move to the twit room for posting */
2638         if (TWITDETECT) {
2639                 if (CC->user.axlevel == AxProbU) {
2640                         strcpy(hold_rm, actual_rm);
2641                         strcpy(actual_rm, CtdlGetConfigStr("c_twitroom"));
2642                         syslog(LOG_DEBUG, "msgbase: diverting to twit room");
2643                 }
2644         }
2645
2646         /* ...or if this message is destined for Aide> then go there. */
2647         if (!IsEmptyStr(force_room)) {
2648                 strcpy(actual_rm, force_room);
2649         }
2650
2651         syslog(LOG_DEBUG, "msgbase: final selection: %s (%s)", actual_rm, room);
2652         if (strcasecmp(actual_rm, CC->room.QRname)) {
2653                 CtdlUserGoto(actual_rm, 0, 1, NULL, NULL, NULL, NULL);
2654         }
2655
2656         /*
2657          * If this message has no O (room) field, generate one.
2658          */
2659         if (CM_IsEmpty(msg, eOriginalRoom) && !IsEmptyStr(CC->room.QRname)) {
2660                 CM_SetField(msg, eOriginalRoom, CC->room.QRname, -1);
2661         }
2662
2663         /* Perform "before save" hooks (aborting if any return nonzero) */
2664         syslog(LOG_DEBUG, "msgbase: performing before-save hooks");
2665         if (PerformMessageHooks(msg, recps, EVT_BEFORESAVE) > 0) return(-3);
2666
2667         /*
2668          * If this message has an Exclusive ID, and the room is replication
2669          * checking enabled, then do replication checks.
2670          */
2671         if (DoesThisRoomNeedEuidIndexing(&CC->room)) {
2672                 ReplicationChecks(msg);
2673         }
2674
2675         /* Save it to disk */
2676         syslog(LOG_DEBUG, "msgbase: saving to disk");
2677         newmsgid = send_message(msg);
2678         if (newmsgid <= 0L) return(-5);
2679
2680         /* Write a supplemental message info record.  This doesn't have to
2681          * be a critical section because nobody else knows about this message
2682          * yet.
2683          */
2684         syslog(LOG_DEBUG, "msgbase: creating metadata record");
2685         memset(&smi, 0, sizeof(struct MetaData));
2686         smi.meta_msgnum = newmsgid;
2687         smi.meta_refcount = 0;
2688         safestrncpy(smi.meta_content_type, content_type, sizeof smi.meta_content_type);
2689
2690         /*
2691          * Measure how big this message will be when rendered as RFC822.
2692          * We do this for two reasons:
2693          * 1. We need the RFC822 length for the new metadata record, so the
2694          *    POP and IMAP services don't have to calculate message lengths
2695          *    while the user is waiting (multiplied by potentially hundreds
2696          *    or thousands of messages).
2697          * 2. If journaling is enabled, we will need an RFC822 version of the
2698          *    message to attach to the journalized copy.
2699          */
2700         if (CC->redirect_buffer != NULL) {
2701                 syslog(LOG_ALERT, "msgbase: CC->redirect_buffer is not NULL during message submission!");
2702                 exit(CTDLEXIT_REDIRECT);
2703         }
2704         CC->redirect_buffer = NewStrBufPlain(NULL, SIZ);
2705         CtdlOutputPreLoadedMsg(msg, MT_RFC822, HEADERS_ALL, 0, 1, QP_EADDR);
2706         smi.meta_rfc822_length = StrLength(CC->redirect_buffer);
2707         saved_rfc822_version = CC->redirect_buffer;
2708         CC->redirect_buffer = NULL;
2709
2710         PutMetaData(&smi);
2711
2712         /* Now figure out where to store the pointers */
2713         syslog(LOG_DEBUG, "msgbase: storing pointers");
2714
2715         /* If this is being done by the networker delivering a private
2716          * message, we want to BYPASS saving the sender's copy (because there
2717          * is no local sender; it would otherwise go to the Trashcan).
2718          */
2719         if ((!CC->internal_pgm) || (recps == NULL)) {
2720                 if (CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 1, msg) != 0) {
2721                         syslog(LOG_ERR, "msgbase: ERROR saving message pointer %ld in %s", newmsgid, actual_rm);
2722                         CtdlSaveMsgPointerInRoom(CtdlGetConfigStr("c_aideroom"), newmsgid, 0, msg);
2723                 }
2724         }
2725
2726         /* For internet mail, drop a copy in the outbound queue room */
2727         if ((recps != NULL) && (recps->num_internet > 0)) {
2728                 CtdlSaveMsgPointerInRoom(SMTP_SPOOLOUT_ROOM, newmsgid, 0, msg);
2729         }
2730
2731         /* If other rooms are specified, drop them there too. */
2732         if ((recps != NULL) && (recps->num_room > 0)) {
2733                 for (i=0; i<num_tokens(recps->recp_room, '|'); ++i) {
2734                         extract_token(recipient, recps->recp_room, i, '|', sizeof recipient);
2735                         syslog(LOG_DEBUG, "msgbase: delivering to room <%s>", recipient);
2736                         CtdlSaveMsgPointerInRoom(recipient, newmsgid, 0, msg);
2737                 }
2738         }
2739
2740         /* Decide where bounces need to be delivered */
2741         if ((recps != NULL) && (recps->bounce_to == NULL)) {
2742                 if (CC->logged_in) {
2743                         strcpy(bounce_to, CC->user.fullname);
2744                 }
2745                 else if (!IsEmptyStr(msg->cm_fields[eAuthor])){
2746                         strcpy(bounce_to, msg->cm_fields[eAuthor]);
2747                 }
2748                 recps->bounce_to = bounce_to;
2749         }
2750                 
2751         CM_SetFieldLONG(msg, eVltMsgNum, newmsgid);
2752
2753         // If this is private, local mail, make a copy in the recipient's mailbox and bump the reference count.
2754         if ((recps != NULL) && (recps->num_local > 0)) {
2755                 char *pch;
2756                 int ntokens;
2757
2758                 pch = recps->recp_local;
2759                 recps->recp_local = recipient;
2760                 ntokens = num_tokens(pch, '|');
2761                 for (i=0; i<ntokens; ++i) {
2762                         extract_token(recipient, pch, i, '|', sizeof recipient);
2763                         syslog(LOG_DEBUG, "msgbase: delivering private local mail to <%s>", recipient);
2764                         if (CtdlGetUser(&userbuf, recipient) == 0) {
2765                                 CtdlMailboxName(actual_rm, sizeof actual_rm, &userbuf, MAILROOM);
2766                                 CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0, msg);
2767                                 CtdlBumpNewMailCounter(userbuf.usernum);        // if this user is logged in, tell them they have new mail.
2768                                 PerformMessageHooks(msg, recps, EVT_AFTERUSRMBOXSAVE);
2769                         }
2770                         else {
2771                                 syslog(LOG_DEBUG, "msgbase: no user <%s>", recipient);
2772                                 CtdlSaveMsgPointerInRoom(CtdlGetConfigStr("c_aideroom"), newmsgid, 0, msg);
2773                         }
2774                 }
2775                 recps->recp_local = pch;
2776         }
2777
2778         /* Perform "after save" hooks */
2779         syslog(LOG_DEBUG, "msgbase: performing after-save hooks");
2780
2781         PerformMessageHooks(msg, recps, EVT_AFTERSAVE);
2782         CM_FlushField(msg, eVltMsgNum);
2783
2784         /* Go back to the room we started from */
2785         syslog(LOG_DEBUG, "msgbase: returning to original room %s", hold_rm);
2786         if (strcasecmp(hold_rm, CC->room.QRname)) {
2787                 CtdlUserGoto(hold_rm, 0, 1, NULL, NULL, NULL, NULL);
2788         }
2789
2790         /*
2791          * Any addresses to harvest for someone's address book?
2792          */
2793         if ( (CC->logged_in) && (recps != NULL) ) {
2794                 collected_addresses = harvest_collected_addresses(msg);
2795         }
2796
2797         if (collected_addresses != NULL) {
2798                 aptr = (struct addresses_to_be_filed *) malloc(sizeof(struct addresses_to_be_filed));
2799                 CtdlMailboxName(actual_rm, sizeof actual_rm, &CC->user, USERCONTACTSROOM);
2800                 aptr->roomname = strdup(actual_rm);
2801                 aptr->collected_addresses = collected_addresses;
2802                 begin_critical_section(S_ATBF);
2803                 aptr->next = atbf;
2804                 atbf = aptr;
2805                 end_critical_section(S_ATBF);
2806         }
2807
2808         /*
2809          * Determine whether this message qualifies for journaling.
2810          */
2811         if (!CM_IsEmpty(msg, eJournal)) {
2812                 qualified_for_journaling = 0;
2813         }
2814         else {
2815                 if (recps == NULL) {
2816                         qualified_for_journaling = CtdlGetConfigInt("c_journal_pubmsgs");
2817                 }
2818                 else if (recps->num_local + recps->num_internet > 0) {
2819                         qualified_for_journaling = CtdlGetConfigInt("c_journal_email");
2820                 }
2821                 else {
2822                         qualified_for_journaling = CtdlGetConfigInt("c_journal_pubmsgs");
2823                 }
2824         }
2825
2826         /*
2827          * Do we have to perform journaling?  If so, hand off the saved
2828          * RFC822 version will be handed off to the journaler for background
2829          * submit.  Otherwise, we have to free the memory ourselves.
2830          */
2831         if (saved_rfc822_version != NULL) {
2832                 if (qualified_for_journaling) {
2833                         JournalBackgroundSubmit(msg, saved_rfc822_version, recps);
2834                 }
2835                 else {
2836                         FreeStrBuf(&saved_rfc822_version);
2837                 }
2838         }
2839
2840         if ((recps != NULL) && (recps->bounce_to == bounce_to))
2841                 recps->bounce_to = NULL;
2842
2843         /* Done. */
2844         return(newmsgid);
2845 }
2846
2847
2848 /*
2849  * Convenience function for generating small administrative messages.
2850  */
2851 long quickie_message(char *from,
2852                      char *fromaddr,
2853                      char *to,
2854                      char *room,
2855                      char *text, 
2856                      int format_type,
2857                      char *subject)
2858 {
2859         struct CtdlMessage *msg;
2860         struct recptypes *recp = NULL;
2861
2862         msg = malloc(sizeof(struct CtdlMessage));
2863         memset(msg, 0, sizeof(struct CtdlMessage));
2864         msg->cm_magic = CTDLMESSAGE_MAGIC;
2865         msg->cm_anon_type = MES_NORMAL;
2866         msg->cm_format_type = format_type;
2867
2868         if (!IsEmptyStr(from)) {
2869                 CM_SetField(msg, eAuthor, from, -1);
2870         }
2871         else if (!IsEmptyStr(fromaddr)) {
2872                 char *pAt;
2873                 CM_SetField(msg, eAuthor, fromaddr, -1);
2874                 pAt = strchr(msg->cm_fields[eAuthor], '@');
2875                 if (pAt != NULL) {
2876                         CM_CutFieldAt(msg, eAuthor, pAt - msg->cm_fields[eAuthor]);
2877                 }
2878         }
2879         else {
2880                 msg->cm_fields[eAuthor] = strdup("Citadel");
2881         }
2882
2883         if (!IsEmptyStr(fromaddr)) CM_SetField(msg, erFc822Addr, fromaddr, -1);
2884         if (!IsEmptyStr(room)) CM_SetField(msg, eOriginalRoom, room, -1);
2885         if (!IsEmptyStr(to)) {
2886                 CM_SetField(msg, eRecipient, to, -1);
2887                 recp = validate_recipients(to, NULL, 0);
2888         }
2889         if (!IsEmptyStr(subject)) {
2890                 CM_SetField(msg, eMsgSubject, subject, -1);
2891         }
2892         if (!IsEmptyStr(text)) {
2893                 CM_SetField(msg, eMesageText, text, -1);
2894         }
2895
2896         long msgnum = CtdlSubmitMsg(msg, recp, room);
2897         CM_Free(msg);
2898         if (recp != NULL) free_recipients(recp);
2899         return msgnum;
2900 }
2901
2902
2903 /*
2904  * Back end function used by CtdlMakeMessage() and similar functions
2905  */
2906 StrBuf *CtdlReadMessageBodyBuf(char *terminator,        // token signalling EOT
2907                                long tlen,
2908                                size_t maxlen,           // maximum message length
2909                                StrBuf *exist,           // if non-null, append to it; exist is ALWAYS freed
2910                                int crlf                 // CRLF newlines instead of LF
2911 ) {
2912         StrBuf *Message;
2913         StrBuf *LineBuf;
2914         int flushing = 0;
2915         int finished = 0;
2916         int dotdot = 0;
2917
2918         LineBuf = NewStrBufPlain(NULL, SIZ);
2919         if (exist == NULL) {
2920                 Message = NewStrBufPlain(NULL, 4 * SIZ);
2921         }
2922         else {
2923                 Message = NewStrBufDup(exist);
2924         }
2925
2926         /* Do we need to change leading ".." to "." for SMTP escaping? */
2927         if ((tlen == 1) && (*terminator == '.')) {
2928                 dotdot = 1;
2929         }
2930
2931         /* read in the lines of message text one by one */
2932         do {
2933                 if (CtdlClientGetLine(LineBuf) < 0) {
2934                         finished = 1;
2935                 }
2936                 if ((StrLength(LineBuf) == tlen) && (!strcmp(ChrPtr(LineBuf), terminator))) {
2937                         finished = 1;
2938                 }
2939                 if ( (!flushing) && (!finished) ) {
2940                         if (crlf) {
2941                                 StrBufAppendBufPlain(LineBuf, HKEY("\r\n"), 0);
2942                         }
2943                         else {
2944                                 StrBufAppendBufPlain(LineBuf, HKEY("\n"), 0);
2945                         }
2946                         
2947                         /* Unescape SMTP-style input of two dots at the beginning of the line */
2948                         if ((dotdot) && (StrLength(LineBuf) > 1) && (ChrPtr(LineBuf)[0] == '.')) {
2949                                 StrBufCutLeft(LineBuf, 1);
2950                         }
2951                         StrBufAppendBuf(Message, LineBuf, 0);
2952                 }
2953
2954                 /* if we've hit the max msg length, flush the rest */
2955                 if (StrLength(Message) >= maxlen) {
2956                         flushing = 1;
2957                 }
2958
2959         } while (!finished);
2960         FreeStrBuf(&LineBuf);
2961
2962         if (flushing) {
2963                 syslog(LOG_ERR, "msgbase: exceeded maximum message length of %ld - message was truncated", maxlen);
2964         }
2965
2966         return Message;
2967 }
2968
2969
2970 // Back end function used by CtdlMakeMessage() and similar functions
2971 char *CtdlReadMessageBody(char *terminator,     // token signalling EOT
2972                           long tlen,
2973                           size_t maxlen,        // maximum message length
2974                           StrBuf *exist,        // if non-null, append to it; exist is ALWAYS freed
2975                           int crlf              // CRLF newlines instead of LF
2976 ) {
2977         StrBuf *Message;
2978
2979         Message = CtdlReadMessageBodyBuf(terminator,
2980                                          tlen,
2981                                          maxlen,
2982                                          exist,
2983                                          crlf
2984         );
2985         if (Message == NULL) {
2986                 return NULL;
2987         }
2988         else {
2989                 return SmashStrBuf(&Message);
2990         }
2991 }
2992
2993
2994 struct CtdlMessage *CtdlMakeMessage(
2995         struct ctdluser *author,        /* author's user structure */
2996         char *recipient,                /* NULL if it's not mail */
2997         char *recp_cc,                  /* NULL if it's not mail */
2998         char *room,                     /* room where it's going */
2999         int type,                       /* see MES_ types in header file */
3000         int format_type,                /* variformat, plain text, MIME... */
3001         char *fake_name,                /* who we're masquerading as */
3002         char *my_email,                 /* which of my email addresses to use (empty is ok) */
3003         char *subject,                  /* Subject (optional) */
3004         char *supplied_euid,            /* ...or NULL if this is irrelevant */
3005         char *preformatted_text,        /* ...or NULL to read text from client */
3006         char *references                /* Thread references */
3007 ) {
3008         return CtdlMakeMessageLen(
3009                 author, /* author's user structure */
3010                 recipient,              /* NULL if it's not mail */
3011                 (recipient)?strlen(recipient) : 0,
3012                 recp_cc,                        /* NULL if it's not mail */
3013                 (recp_cc)?strlen(recp_cc): 0,
3014                 room,                   /* room where it's going */
3015                 (room)?strlen(room): 0,
3016                 type,                   /* see MES_ types in header file */
3017                 format_type,            /* variformat, plain text, MIME... */
3018                 fake_name,              /* who we're masquerading as */
3019                 (fake_name)?strlen(fake_name): 0,
3020                 my_email,                       /* which of my email addresses to use (empty is ok) */
3021                 (my_email)?strlen(my_email): 0,
3022                 subject,                        /* Subject (optional) */
3023                 (subject)?strlen(subject): 0,
3024                 supplied_euid,          /* ...or NULL if this is irrelevant */
3025                 (supplied_euid)?strlen(supplied_euid):0,
3026                 preformatted_text,      /* ...or NULL to read text from client */
3027                 (preformatted_text)?strlen(preformatted_text) : 0,
3028                 references,             /* Thread references */
3029                 (references)?strlen(references):0);
3030
3031 }
3032
3033
3034 /*
3035  * Build a binary message to be saved on disk.
3036  * (NOTE: if you supply 'preformatted_text', the buffer you give it
3037  * will become part of the message.  This means you are no longer
3038  * responsible for managing that memory -- it will be freed along with
3039  * the rest of the fields when CM_Free() is called.)
3040  */
3041 struct CtdlMessage *CtdlMakeMessageLen(
3042         struct ctdluser *author,        /* author's user structure */
3043         char *recipient,                /* NULL if it's not mail */
3044         long rcplen,
3045         char *recp_cc,                  /* NULL if it's not mail */
3046         long cclen,
3047         char *room,                     /* room where it's going */
3048         long roomlen,
3049         int type,                       /* see MES_ types in header file */
3050         int format_type,                /* variformat, plain text, MIME... */
3051         char *fake_name,                /* who we're masquerading as */
3052         long fnlen,
3053         char *my_email,                 /* which of my email addresses to use (empty is ok) */
3054         long myelen,
3055         char *subject,                  /* Subject (optional) */
3056         long subjlen,
3057         char *supplied_euid,            /* ...or NULL if this is irrelevant */
3058         long euidlen,
3059         char *preformatted_text,        /* ...or NULL to read text from client */
3060         long textlen,
3061         char *references,               /* Thread references */
3062         long reflen
3063 ) {
3064         long blen;
3065         char buf[1024];
3066         struct CtdlMessage *msg;
3067         StrBuf *FakeAuthor;
3068         StrBuf *FakeEncAuthor = NULL;
3069
3070         msg = malloc(sizeof(struct CtdlMessage));
3071         memset(msg, 0, sizeof(struct CtdlMessage));
3072         msg->cm_magic = CTDLMESSAGE_MAGIC;
3073         msg->cm_anon_type = type;
3074         msg->cm_format_type = format_type;
3075
3076         if (recipient != NULL) rcplen = string_trim(recipient);
3077         if (recp_cc != NULL) cclen = string_trim(recp_cc);
3078
3079         /* Path or Return-Path */
3080         if (myelen > 0) {
3081                 CM_SetField(msg, eMessagePath, my_email, myelen);
3082         }
3083         else if (!IsEmptyStr(author->fullname)) {
3084                 CM_SetField(msg, eMessagePath, author->fullname, -1);
3085         }
3086         convert_spaces_to_underscores(msg->cm_fields[eMessagePath]);
3087
3088         blen = snprintf(buf, sizeof buf, "%ld", (long)time(NULL));
3089         CM_SetField(msg, eTimestamp, buf, blen);
3090
3091         if (fnlen > 0) {
3092                 FakeAuthor = NewStrBufPlain (fake_name, fnlen);
3093         }
3094         else {
3095                 FakeAuthor = NewStrBufPlain (author->fullname, -1);
3096         }
3097         StrBufRFC2047encode(&FakeEncAuthor, FakeAuthor);
3098         CM_SetAsFieldSB(msg, eAuthor, &FakeEncAuthor);
3099         FreeStrBuf(&FakeAuthor);
3100
3101         if (!!IsEmptyStr(CC->room.QRname)) {
3102                 if (CC->room.QRflags & QR_MAILBOX) {            /* room */
3103                         CM_SetField(msg, eOriginalRoom, &CC->room.QRname[11], -1);
3104                 }
3105                 else {
3106                         CM_SetField(msg, eOriginalRoom, CC->room.QRname, -1);
3107                 }
3108         }
3109
3110         if (rcplen > 0) {
3111                 CM_SetField(msg, eRecipient, recipient, rcplen);
3112         }
3113         if (cclen > 0) {
3114                 CM_SetField(msg, eCarbonCopY, recp_cc, cclen);
3115         }
3116
3117         if (myelen > 0) {
3118                 CM_SetField(msg, erFc822Addr, my_email, myelen);
3119         }
3120         else if ( (author == &CC->user) && (!IsEmptyStr(CC->cs_inet_email)) ) {
3121                 CM_SetField(msg, erFc822Addr, CC->cs_inet_email, -1);
3122         }
3123
3124         if (subject != NULL) {
3125                 long length;
3126                 length = string_trim(subject);
3127                 if (length > 0) {
3128                         long i;
3129                         long IsAscii;
3130                         IsAscii = -1;
3131                         i = 0;
3132                         while ((subject[i] != '\0') &&
3133                                (IsAscii = isascii(subject[i]) != 0 ))
3134                                 i++;
3135                         if (IsAscii != 0)
3136                                 CM_SetField(msg, eMsgSubject, subject, subjlen);
3137                         else /* ok, we've got utf8 in the string. */
3138                         {
3139                                 char *rfc2047Subj;
3140                                 rfc2047Subj = rfc2047encode(subject, length);
3141                                 CM_SetAsField(msg, eMsgSubject, &rfc2047Subj, strlen(rfc2047Subj));
3142                         }
3143
3144                 }
3145         }
3146
3147         if (euidlen > 0) {
3148                 CM_SetField(msg, eExclusiveID, supplied_euid, euidlen);
3149         }
3150
3151         if (reflen > 0) {
3152                 CM_SetField(msg, eWeferences, references, reflen);
3153         }
3154
3155         if (preformatted_text != NULL) {
3156                 CM_SetField(msg, eMesageText, preformatted_text, textlen);
3157         }
3158         else {
3159                 StrBuf *MsgBody;
3160                 MsgBody = CtdlReadMessageBodyBuf(HKEY("000"), CtdlGetConfigLong("c_maxmsglen"), NULL, 0);
3161                 if (MsgBody != NULL) {
3162                         CM_SetAsFieldSB(msg, eMesageText, &MsgBody);
3163                 }
3164         }
3165
3166         return(msg);
3167 }
3168
3169
3170 /*
3171  * API function to delete messages which match a set of criteria
3172  * (returns the actual number of messages deleted)
3173  */
3174 int CtdlDeleteMessages(const char *room_name,   // which room
3175                        long *dmsgnums,          // array of msg numbers to be deleted
3176                        int num_dmsgnums,        // number of msgs to be deleted, or 0 for "any"
3177                        char *content_type       // or "" for any.  regular expressions expected.
3178 ) {
3179         struct ctdlroom qrbuf;
3180         struct cdbdata *cdbfr;
3181         long *msglist = NULL;
3182         long *dellist = NULL;
3183         int num_msgs = 0;
3184         int i, j;
3185         int num_deleted = 0;
3186         int delete_this;
3187         struct MetaData smi;
3188         regex_t re;
3189         regmatch_t pm;
3190         int need_to_free_re = 0;
3191
3192         if (content_type) if (!IsEmptyStr(content_type)) {
3193                         regcomp(&re, content_type, 0);
3194                         need_to_free_re = 1;
3195                 }
3196         syslog(LOG_DEBUG, "msgbase: CtdlDeleteMessages(%s, %d msgs, %s)", room_name, num_dmsgnums, content_type);
3197
3198         /* get room record, obtaining a lock... */
3199         if (CtdlGetRoomLock(&qrbuf, room_name) != 0) {
3200                 syslog(LOG_ERR, "msgbase: CtdlDeleteMessages(): Room <%s> not found", room_name);
3201                 if (need_to_free_re) regfree(&re);
3202                 return(0);      /* room not found */
3203         }
3204
3205         num_msgs = CtdlFetchMsgList(qrbuf.QRnumber, &msglist);
3206         if (num_msgs > 0) {
3207                 dellist = malloc(num_msgs * sizeof(long));
3208                 int have_contenttype = (content_type != NULL) && !IsEmptyStr(content_type);
3209                 int have_delmsgs = (num_dmsgnums == 0) || (dmsgnums == NULL);
3210                 int have_more_del = 1;
3211
3212                 num_msgs = sort_msglist(msglist, num_msgs);
3213                 if (num_dmsgnums > 1) {
3214                         num_dmsgnums = sort_msglist(dmsgnums, num_dmsgnums);
3215                 }
3216                 i = 0;
3217                 j = 0;
3218                 while ((i < num_msgs) && (have_more_del)) {
3219                         delete_this = 0x00;
3220
3221                         /* Set/clear a bit for each criterion */
3222
3223                         /* 0 messages in the list or a null list means that we are
3224                          * interested in deleting any messages which meet the other criteria.
3225                          */
3226                         if (have_delmsgs) {
3227                                 delete_this |= 0x01;
3228                         }
3229                         else {
3230                                 while ((i < num_msgs) && (msglist[i] < dmsgnums[j])) i++;
3231
3232                                 if (i >= num_msgs)
3233                                         continue;
3234
3235                                 if (msglist[i] == dmsgnums[j]) {
3236                                         delete_this |= 0x01;
3237                                 }
3238                                 j++;
3239                                 have_more_del = (j < num_dmsgnums);
3240                         }
3241
3242                         if (have_contenttype) {
3243                                 GetMetaData(&smi, msglist[i]);
3244                                 if (regexec(&re, smi.meta_content_type, 1, &pm, 0) == 0) {
3245                                         delete_this |= 0x02;
3246                                 }
3247                         } else {
3248                                 delete_this |= 0x02;
3249                         }
3250
3251                         /* Delete message only if all bits are set */
3252                         if (delete_this == 0x03) {
3253                                 dellist[num_deleted++] = msglist[i];
3254                                 msglist[i] = 0L;
3255                         }
3256                         i++;
3257                 }
3258
3259                 num_msgs = sort_msglist(msglist, num_msgs);
3260                 cdb_store(CDB_MSGLISTS, &qrbuf.QRnumber, (int)sizeof(long), msglist, (int)(num_msgs * sizeof(long)));
3261
3262                 if (num_msgs > 0) {
3263                         qrbuf.QRhighest = msglist[num_msgs - 1];
3264                 }
3265                 else {
3266                         qrbuf.QRhighest = 0;
3267                 }
3268         }
3269         CtdlPutRoomLock(&qrbuf);
3270
3271         /* Go through the messages we pulled out of the index, and decrement
3272          * their reference counts by 1.  If this is the only room the message
3273          * was in, the reference count will reach zero and the message will
3274          * automatically be deleted from the database.  We do this in a
3275          * separate pass because there might be plug-in hooks getting called,
3276          * and we don't want that happening during an S_ROOMS critical
3277          * section.
3278          */
3279         if (num_deleted) {
3280                 for (i=0; i<num_deleted; ++i) {
3281                         PerformDeleteHooks(qrbuf.QRname, dellist[i]);
3282                 }
3283                 AdjRefCountList(dellist, num_deleted, -1);
3284         }
3285         /* Now free the memory we used, and go away. */
3286         if (msglist != NULL) free(msglist);
3287         if (dellist != NULL) free(dellist);
3288         syslog(LOG_DEBUG, "msgbase: %d message(s) deleted", num_deleted);
3289         if (need_to_free_re) regfree(&re);
3290         return (num_deleted);
3291 }
3292
3293
3294 /*
3295  * GetMetaData()  -  Get the supplementary record for a message
3296  */
3297 void GetMetaData(struct MetaData *smibuf, long msgnum) {
3298         struct cdbdata cdbsmi;
3299         long TheIndex;
3300
3301         memset(smibuf, 0, sizeof(struct MetaData));
3302         smibuf->meta_msgnum = msgnum;
3303         smibuf->meta_refcount = 1;      /* Default reference count is 1 */
3304
3305         /* Use the negative of the message number for its supp record index */
3306         TheIndex = (0L - msgnum);
3307
3308         cdbsmi = cdb_fetch(CDB_MSGMAIN, &TheIndex, sizeof(long));
3309         if (cdbsmi.ptr == NULL) {
3310                 return;                 /* record not found; leave it alone */
3311         }
3312         memcpy(smibuf, cdbsmi.ptr, ((cdbsmi.len > sizeof(struct MetaData)) ? sizeof(struct MetaData) : cdbsmi.len));
3313         return;
3314 }
3315
3316
3317 /*
3318  * PutMetaData()  -  (re)write supplementary record for a message
3319  */
3320 void PutMetaData(struct MetaData *smibuf)
3321 {
3322         long TheIndex;
3323
3324         /* Use the negative of the message number for the metadata db index */
3325         TheIndex = (0L - smibuf->meta_msgnum);
3326
3327         cdb_store(CDB_MSGMAIN,
3328                   &TheIndex, (int)sizeof(long),
3329                   smibuf, (int)sizeof(struct MetaData)
3330         );
3331 }
3332
3333
3334 /*
3335  * Convenience function to process a big block of AdjRefCount() operations
3336  */
3337 void AdjRefCountList(long *msgnum, long nmsg, int incr)
3338 {
3339         long i;
3340
3341         for (i = 0; i < nmsg; i++) {
3342                 AdjRefCount(msgnum[i], incr);
3343         }
3344 }
3345
3346
3347 /*
3348  * AdjRefCount - adjust the reference count for a message.  We need to delete from disk any message whose reference count reaches zero.
3349  */
3350 void AdjRefCount(long msgnum, int incr)
3351 {
3352         struct MetaData smi;
3353         long delnum;
3354
3355         /* This is a *tight* critical section; please keep it that way, as
3356          * it may get called while nested in other critical sections.  
3357          * Complicating this any further will surely cause deadlock!
3358          */
3359         begin_critical_section(S_SUPPMSGMAIN);
3360         GetMetaData(&smi, msgnum);
3361         smi.meta_refcount += incr;
3362         PutMetaData(&smi);
3363         end_critical_section(S_SUPPMSGMAIN);
3364         syslog(LOG_DEBUG, "msgbase: AdjRefCount() msg %ld ref count delta %+d, is now %d", msgnum, incr, smi.meta_refcount);
3365
3366         /* If the reference count is now zero, delete both the message and its metadata record.
3367          */
3368         if (smi.meta_refcount == 0) {
3369                 syslog(LOG_DEBUG, "msgbase: deleting message <%ld>", msgnum);
3370                 
3371                 /* Call delete hooks with NULL room to show it has gone altogether */
3372                 PerformDeleteHooks(NULL, msgnum);
3373
3374                 /* Remove from message base */
3375                 delnum = msgnum;
3376                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
3377                 cdb_delete(CDB_BIGMSGS, &delnum, (int)sizeof(long));
3378
3379                 /* Remove metadata record */
3380                 delnum = (0L - msgnum);
3381                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
3382         }
3383 }
3384
3385
3386 /*
3387  * Write a generic object to this room
3388  *
3389  * Returns the message number of the written object, in case you need it.
3390  */
3391 long CtdlWriteObject(char *req_room,                    /* Room to stuff it in */
3392                      char *content_type,                /* MIME type of this object */
3393                      char *raw_message,                 /* Data to be written */
3394                      off_t raw_length,                  /* Size of raw_message */
3395                      struct ctdluser *is_mailbox,       /* Mailbox room? */
3396                      int is_binary,                     /* Is encoding necessary? */
3397                      unsigned int flags                 /* Internal save flags */
3398 ) {
3399         struct ctdlroom qrbuf;
3400         char roomname[ROOMNAMELEN];
3401         struct CtdlMessage *msg;
3402         StrBuf *encoded_message = NULL;
3403
3404         if (is_mailbox != NULL) {
3405                 CtdlMailboxName(roomname, sizeof roomname, is_mailbox, req_room);
3406         }
3407         else {
3408                 safestrncpy(roomname, req_room, sizeof(roomname));
3409         }
3410
3411         syslog(LOG_DEBUG, "msfbase: raw length is %ld", (long)raw_length);
3412
3413         if (is_binary) {
3414                 encoded_message = NewStrBufPlain(NULL, (size_t) (((raw_length * 134) / 100) + 4096 ) );
3415         }
3416         else {
3417                 encoded_message = NewStrBufPlain(NULL, (size_t)(raw_length + 4096));
3418         }
3419
3420         StrBufAppendBufPlain(encoded_message, HKEY("Content-type: "), 0);
3421         StrBufAppendBufPlain(encoded_message, content_type, -1, 0);
3422         StrBufAppendBufPlain(encoded_message, HKEY("\n"), 0);
3423
3424         if (is_binary) {
3425                 StrBufAppendBufPlain(encoded_message, HKEY("Content-transfer-encoding: base64\n\n"), 0);
3426         }
3427         else {
3428                 StrBufAppendBufPlain(encoded_message, HKEY("Content-transfer-encoding: 7bit\n\n"), 0);
3429         }
3430
3431         if (is_binary) {
3432                 StrBufBase64Append(encoded_message, NULL, raw_message, raw_length, 0);
3433         }
3434         else {
3435                 StrBufAppendBufPlain(encoded_message, raw_message, raw_length, 0);
3436         }
3437
3438         syslog(LOG_DEBUG, "msgbase: allocating");
3439         msg = malloc(sizeof(struct CtdlMessage));
3440         memset(msg, 0, sizeof(struct CtdlMessage));
3441         msg->cm_magic = CTDLMESSAGE_MAGIC;
3442         msg->cm_anon_type = MES_NORMAL;
3443         msg->cm_format_type = 4;
3444         CM_SetField(msg, eAuthor, CC->user.fullname, -1);
3445         CM_SetField(msg, eOriginalRoom, req_room, -1);
3446         msg->cm_flags = flags;
3447         
3448         CM_SetAsFieldSB(msg, eMesageText, &encoded_message);
3449
3450         /* Create the requested room if we have to. */
3451         if (CtdlGetRoom(&qrbuf, roomname) != 0) {
3452                 CtdlCreateRoom(roomname, ( (is_mailbox != NULL) ? 5 : 3 ), "", 0, 1, 0, VIEW_BBS);
3453         }
3454
3455         /* Now write the data */
3456         long new_msgnum = CtdlSubmitMsg(msg, NULL, roomname);
3457         CM_Free(msg);
3458         return new_msgnum;
3459 }
3460
3461
3462 /************************************************************************/
3463 /*                      MODULE INITIALIZATION                           */
3464 /************************************************************************/
3465
3466 char *ctdl_module_init_msgbase(void) {
3467         if (!threading) {
3468                 FillMsgKeyLookupTable();
3469         }
3470
3471         /* return our module id for the log */
3472         return "msgbase";
3473 }