* compatibility with Berkeley DB < 3.3
[citadel.git] / citadel / msgbase.c
1 /*
2  * $Id$
3  *
4  * Implements the message store.
5  *
6  */
7
8 #ifdef DLL_EXPORT
9 #define IN_LIBCIT
10 #endif
11
12 #include "sysdep.h"
13 #include <stdlib.h>
14 #include <unistd.h>
15 #include <stdio.h>
16 #include <fcntl.h>
17
18 #if TIME_WITH_SYS_TIME
19 # include <sys/time.h>
20 # include <time.h>
21 #else
22 # if HAVE_SYS_TIME_H
23 #  include <sys/time.h>
24 # else
25 #  include <time.h>
26 # endif
27 #endif
28
29
30 #include <ctype.h>
31 #include <string.h>
32 #include <syslog.h>
33 #include <limits.h>
34 #include <errno.h>
35 #include <stdarg.h>
36 #include <sys/stat.h>
37 #include "citadel.h"
38 #include "server.h"
39 #include "dynloader.h"
40 #include "database.h"
41 #include "msgbase.h"
42 #include "support.h"
43 #include "sysdep_decls.h"
44 #include "citserver.h"
45 #include "room_ops.h"
46 #include "user_ops.h"
47 #include "file_ops.h"
48 #include "control.h"
49 #include "tools.h"
50 #include "mime_parser.h"
51 #include "html.h"
52 #include "genstamp.h"
53 #include "internet_addressing.h"
54
55 #define desired_section ((char *)CtdlGetUserData(SYM_DESIRED_SECTION))
56 #define ma ((struct ma_info *)CtdlGetUserData(SYM_MA_INFO))
57 #define msg_repl ((struct repl *)CtdlGetUserData(SYM_REPL))
58
59 extern struct config config;
60 long config_msgnum;
61
62
63 /* 
64  * This really belongs in serv_network.c, but I don't know how to export
65  * symbols between modules.
66  */
67 struct FilterList *filterlist = NULL;
68
69
70 /*
71  * These are the four-character field headers we use when outputting
72  * messages in Citadel format (as opposed to RFC822 format).
73  */
74 char *msgkeys[] = {
75         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
76         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
77         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
78         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
79         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
80         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
81         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
82         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
83         NULL, 
84         "from",
85         NULL, NULL, NULL,
86         "exti",
87         "rfca",
88         NULL, 
89         "hnod",
90         "msgn",
91         NULL, NULL, NULL,
92         "text",
93         "node",
94         "room",
95         "path",
96         NULL,
97         "rcpt",
98         "spec",
99         "time",
100         "subj",
101         NULL,
102         NULL,
103         NULL,
104         NULL,
105         NULL
106 };
107
108 /*
109  * This function is self explanatory.
110  * (What can I say, I'm in a weird mood today...)
111  */
112 void remove_any_whitespace_to_the_left_or_right_of_at_symbol(char *name)
113 {
114         int i;
115
116         for (i = 0; i < strlen(name); ++i) {
117                 if (name[i] == '@') {
118                         while (isspace(name[i - 1]) && i > 0) {
119                                 strcpy(&name[i - 1], &name[i]);
120                                 --i;
121                         }
122                         while (isspace(name[i + 1])) {
123                                 strcpy(&name[i + 1], &name[i + 2]);
124                         }
125                 }
126         }
127 }
128
129
130 /*
131  * Aliasing for network mail.
132  * (Error messages have been commented out, because this is a server.)
133  */
134 int alias(char *name)
135 {                               /* process alias and routing info for mail */
136         FILE *fp;
137         int a, i;
138         char aaa[SIZ], bbb[SIZ];
139         char *ignetcfg = NULL;
140         char *ignetmap = NULL;
141         int at = 0;
142         char node[SIZ];
143         char testnode[SIZ];
144         char buf[SIZ];
145
146         striplt(name);
147         remove_any_whitespace_to_the_left_or_right_of_at_symbol(name);
148
149         fp = fopen("network/mail.aliases", "r");
150         if (fp == NULL) {
151                 fp = fopen("/dev/null", "r");
152         }
153         if (fp == NULL) {
154                 return (MES_ERROR);
155         }
156         strcpy(aaa, "");
157         strcpy(bbb, "");
158         while (fgets(aaa, sizeof aaa, fp) != NULL) {
159                 while (isspace(name[0]))
160                         strcpy(name, &name[1]);
161                 aaa[strlen(aaa) - 1] = 0;
162                 strcpy(bbb, "");
163                 for (a = 0; a < strlen(aaa); ++a) {
164                         if (aaa[a] == ',') {
165                                 strcpy(bbb, &aaa[a + 1]);
166                                 aaa[a] = 0;
167                         }
168                 }
169                 if (!strcasecmp(name, aaa))
170                         strcpy(name, bbb);
171         }
172         fclose(fp);
173
174         /* Hit the Global Address Book */
175         if (CtdlDirectoryLookup(aaa, name) == 0) {
176                 strcpy(name, aaa);
177         }
178
179         lprintf(7, "Mail is being forwarded to %s\n", name);
180
181         /* Change "user @ xxx" to "user" if xxx is an alias for this host */
182         for (a=0; a<strlen(name); ++a) {
183                 if (name[a] == '@') {
184                         if (CtdlHostAlias(&name[a+1]) == hostalias_localhost) {
185                                 name[a] = 0;
186                                 lprintf(7, "Changed to <%s>\n", name);
187                         }
188                 }
189         }
190
191         /* determine local or remote type, see citadel.h */
192         at = haschar(name, '@');
193         if (at == 0) return(MES_LOCAL);         /* no @'s - local address */
194         if (at > 1) return(MES_ERROR);          /* >1 @'s - invalid address */
195         remove_any_whitespace_to_the_left_or_right_of_at_symbol(name);
196
197         /* figure out the delivery mode */
198         extract_token(node, name, 1, '@');
199
200         /* If there are one or more dots in the nodename, we assume that it
201          * is an FQDN and will attempt SMTP delivery to the Internet.
202          */
203         if (haschar(node, '.') > 0) {
204                 return(MES_INTERNET);
205         }
206
207         /* Otherwise we look in the IGnet maps for a valid Citadel node.
208          * Try directly-connected nodes first...
209          */
210         ignetcfg = CtdlGetSysConfig(IGNETCFG);
211         for (i=0; i<num_tokens(ignetcfg, '\n'); ++i) {
212                 extract_token(buf, ignetcfg, i, '\n');
213                 extract_token(testnode, buf, 0, '|');
214                 if (!strcasecmp(node, testnode)) {
215                         phree(ignetcfg);
216                         return(MES_IGNET);
217                 }
218         }
219         phree(ignetcfg);
220
221         /*
222          * Then try nodes that are two or more hops away.
223          */
224         ignetmap = CtdlGetSysConfig(IGNETMAP);
225         for (i=0; i<num_tokens(ignetmap, '\n'); ++i) {
226                 extract_token(buf, ignetmap, i, '\n');
227                 extract_token(testnode, buf, 0, '|');
228                 if (!strcasecmp(node, testnode)) {
229                         phree(ignetmap);
230                         return(MES_IGNET);
231                 }
232         }
233         phree(ignetmap);
234
235         /* If we get to this point it's an invalid node name */
236         return (MES_ERROR);
237 }
238
239
240 void get_mm(void)
241 {
242         FILE *fp;
243
244         fp = fopen("citadel.control", "r");
245         fread((char *) &CitControl, sizeof(struct CitControl), 1, fp);
246         fclose(fp);
247 }
248
249
250
251 void simple_listing(long msgnum, void *userdata)
252 {
253         cprintf("%ld\n", msgnum);
254 }
255
256
257
258 /* Determine if a given message matches the fields in a message template.
259  * Return 0 for a successful match.
260  */
261 int CtdlMsgCmp(struct CtdlMessage *msg, struct CtdlMessage *template) {
262         int i;
263
264         /* If there aren't any fields in the template, all messages will
265          * match.
266          */
267         if (template == NULL) return(0);
268
269         /* Null messages are bogus. */
270         if (msg == NULL) return(1);
271
272         for (i='A'; i<='Z'; ++i) {
273                 if (template->cm_fields[i] != NULL) {
274                         if (msg->cm_fields[i] == NULL) {
275                                 return 1;
276                         }
277                         if (strcasecmp(msg->cm_fields[i],
278                                 template->cm_fields[i])) return 1;
279                 }
280         }
281
282         /* All compares succeeded: we have a match! */
283         return 0;
284 }
285
286
287 /*
288  * Manipulate the "seen msgs" string.
289  */
290 void CtdlSetSeen(long target_msgnum, int target_setting) {
291         char newseen[SIZ];
292         struct cdbdata *cdbfr;
293         int i;
294         int is_seen = 0;
295         int was_seen = 1;
296         long lo = (-1L);
297         long hi = (-1L);
298         struct visit vbuf;
299         long *msglist;
300         int num_msgs = 0;
301
302         /* Learn about the user and room in question */
303         get_mm();
304         getuser(&CC->usersupp, CC->curr_user);
305         CtdlGetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
306
307         /* Load the message list */
308         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->quickroom.QRnumber, sizeof(long));
309         if (cdbfr != NULL) {
310                 msglist = mallok(cdbfr->len);
311                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
312                 num_msgs = cdbfr->len / sizeof(long);
313                 cdb_free(cdbfr);
314         } else {
315                 return; /* No messages at all?  No further action. */
316         }
317
318         lprintf(9, "before optimize: %s\n", vbuf.v_seen);
319         strcpy(newseen, "");
320
321         for (i=0; i<num_msgs; ++i) {
322                 is_seen = 0;
323
324                 if (msglist[i] == target_msgnum) {
325                         is_seen = target_setting;
326                 }
327                 else {
328                         if (is_msg_in_mset(vbuf.v_seen, msglist[i])) {
329                                 is_seen = 1;
330                         }
331                 }
332
333                 if (is_seen == 1) {
334                         if (lo < 0L) lo = msglist[i];
335                         hi = msglist[i];
336                 }
337                 if (  ((is_seen == 0) && (was_seen == 1))
338                    || ((is_seen == 1) && (i == num_msgs-1)) ) {
339                         size_t tmp;
340
341                         if ( (strlen(newseen) + 20) > SIZ) {
342                                 strcpy(newseen, &newseen[20]);
343                                 newseen[0] = '*';
344                         }
345                         tmp = strlen(newseen);
346                         if (tmp > 0) {
347                                 strcat(newseen, ",");
348                                 tmp++;
349                         }
350                         if (lo == hi) {
351                                 snprintf(&newseen[tmp], sizeof newseen - tmp,
352                                          "%ld", lo);
353                         }
354                         else {
355                                 snprintf(&newseen[tmp], sizeof newseen - tmp,
356                                          "%ld:%ld", lo, hi);
357                         }
358                         lo = (-1L);
359                         hi = (-1L);
360                 }
361                 was_seen = is_seen;
362         }
363
364         safestrncpy(vbuf.v_seen, newseen, SIZ);
365         lprintf(9, " after optimize: %s\n", vbuf.v_seen);
366         phree(msglist);
367         CtdlSetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
368 }
369
370
371 /*
372  * API function to perform an operation for each qualifying message in the
373  * current room.  (Returns the number of messages processed.)
374  */
375 int CtdlForEachMessage(int mode, long ref,
376                         int moderation_level,
377                         char *content_type,
378                         struct CtdlMessage *compare,
379                         void (*CallBack) (long, void *),
380                         void *userdata)
381 {
382
383         int a;
384         struct visit vbuf;
385         struct cdbdata *cdbfr;
386         long *msglist = NULL;
387         int num_msgs = 0;
388         int num_processed = 0;
389         long thismsg;
390         struct MetaData smi;
391         struct CtdlMessage *msg;
392         int is_seen;
393         long lastold = 0L;
394         int printed_lastold = 0;
395
396         /* Learn about the user and room in question */
397         get_mm();
398         getuser(&CC->usersupp, CC->curr_user);
399         CtdlGetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
400
401         /* Load the message list */
402         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->quickroom.QRnumber, sizeof(long));
403         if (cdbfr != NULL) {
404                 msglist = mallok(cdbfr->len);
405                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
406                 num_msgs = cdbfr->len / sizeof(long);
407                 cdb_free(cdbfr);
408         } else {
409                 return 0;       /* No messages at all?  No further action. */
410         }
411
412
413         /*
414          * Now begin the traversal.
415          */
416         if (num_msgs > 0) for (a = 0; a < num_msgs; ++a) {
417                 GetMetaData(&smi, msglist[a]);
418
419                 /* Filter out messages that are moderated below the level
420                  * currently being viewed at.
421                  */
422                 if (smi.meta_mod < moderation_level) {
423                         msglist[a] = 0L;
424                 }
425
426                 /* If the caller is looking for a specific MIME type, filter
427                  * out all messages which are not of the type requested.
428                  */
429                 if (content_type != NULL) if (strlen(content_type) > 0) {
430                         if (strcasecmp(smi.meta_content_type, content_type)) {
431                                 msglist[a] = 0L;
432                         }
433                 }
434         }
435
436         num_msgs = sort_msglist(msglist, num_msgs);
437
438         /* If a template was supplied, filter out the messages which
439          * don't match.  (This could induce some delays!)
440          */
441         if (num_msgs > 0) {
442                 if (compare != NULL) {
443                         for (a = 0; a < num_msgs; ++a) {
444                                 msg = CtdlFetchMessage(msglist[a]);
445                                 if (msg != NULL) {
446                                         if (CtdlMsgCmp(msg, compare)) {
447                                                 msglist[a] = 0L;
448                                         }
449                                         CtdlFreeMessage(msg);
450                                 }
451                         }
452                 }
453         }
454
455         
456         /*
457          * Now iterate through the message list, according to the
458          * criteria supplied by the caller.
459          */
460         if (num_msgs > 0)
461                 for (a = 0; a < num_msgs; ++a) {
462                         thismsg = msglist[a];
463                         is_seen = is_msg_in_mset(vbuf.v_seen, thismsg);
464                         if (is_seen) lastold = thismsg;
465                         if ((thismsg > 0L)
466                             && (
467
468                                        (mode == MSGS_ALL)
469                                        || ((mode == MSGS_OLD) && (is_seen))
470                                        || ((mode == MSGS_NEW) && (!is_seen))
471                                        || ((mode == MSGS_LAST) && (a >= (num_msgs - ref)))
472                                    || ((mode == MSGS_FIRST) && (a < ref))
473                                 || ((mode == MSGS_GT) && (thismsg > ref))
474                                 || ((mode == MSGS_EQ) && (thismsg == ref))
475                             )
476                             ) {
477                                 if ((mode == MSGS_NEW) && (CC->usersupp.flags & US_LASTOLD) && (lastold > 0L) && (printed_lastold == 0) && (!is_seen)) {
478                                         if (CallBack)
479                                                 CallBack(lastold, userdata);
480                                         printed_lastold = 1;
481                                         ++num_processed;
482                                 }
483                                 if (CallBack) CallBack(thismsg, userdata);
484                                 ++num_processed;
485                         }
486                 }
487         phree(msglist);         /* Clean up */
488         return num_processed;
489 }
490
491
492
493 /*
494  * cmd_msgs()  -  get list of message #'s in this room
495  *                implements the MSGS server command using CtdlForEachMessage()
496  */
497 void cmd_msgs(char *cmdbuf)
498 {
499         int mode = 0;
500         char which[SIZ];
501         char buf[SIZ];
502         char tfield[SIZ];
503         char tvalue[SIZ];
504         int cm_ref = 0;
505         int i;
506         int with_template = 0;
507         struct CtdlMessage *template = NULL;
508
509         extract(which, cmdbuf, 0);
510         cm_ref = extract_int(cmdbuf, 1);
511         with_template = extract_int(cmdbuf, 2);
512
513         mode = MSGS_ALL;
514         strcat(which, "   ");
515         if (!strncasecmp(which, "OLD", 3))
516                 mode = MSGS_OLD;
517         else if (!strncasecmp(which, "NEW", 3))
518                 mode = MSGS_NEW;
519         else if (!strncasecmp(which, "FIRST", 5))
520                 mode = MSGS_FIRST;
521         else if (!strncasecmp(which, "LAST", 4))
522                 mode = MSGS_LAST;
523         else if (!strncasecmp(which, "GT", 2))
524                 mode = MSGS_GT;
525
526         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
527                 cprintf("%d not logged in\n", ERROR + NOT_LOGGED_IN);
528                 return;
529         }
530
531         if (with_template) {
532                 cprintf("%d Send template then receive message list\n",
533                         START_CHAT_MODE);
534                 template = (struct CtdlMessage *)
535                         mallok(sizeof(struct CtdlMessage));
536                 memset(template, 0, sizeof(struct CtdlMessage));
537                 while(client_gets(buf), strcmp(buf,"000")) {
538                         extract(tfield, buf, 0);
539                         extract(tvalue, buf, 1);
540                         for (i='A'; i<='Z'; ++i) if (msgkeys[i]!=NULL) {
541                                 if (!strcasecmp(tfield, msgkeys[i])) {
542                                         template->cm_fields[i] =
543                                                 strdoop(tvalue);
544                                 }
545                         }
546                 }
547         }
548         else {
549                 cprintf("%d Message list...\n", LISTING_FOLLOWS);
550         }
551
552         CtdlForEachMessage(mode, cm_ref,
553                 CC->usersupp.moderation_filter,
554                 NULL, template, simple_listing, NULL);
555         if (template != NULL) CtdlFreeMessage(template);
556         cprintf("000\n");
557 }
558
559
560
561
562 /* 
563  * help_subst()  -  support routine for help file viewer
564  */
565 void help_subst(char *strbuf, char *source, char *dest)
566 {
567         char workbuf[SIZ];
568         int p;
569
570         while (p = pattern2(strbuf, source), (p >= 0)) {
571                 strcpy(workbuf, &strbuf[p + strlen(source)]);
572                 strcpy(&strbuf[p], dest);
573                 strcat(strbuf, workbuf);
574         }
575 }
576
577
578 void do_help_subst(char *buffer)
579 {
580         char buf2[16];
581
582         help_subst(buffer, "^nodename", config.c_nodename);
583         help_subst(buffer, "^humannode", config.c_humannode);
584         help_subst(buffer, "^fqdn", config.c_fqdn);
585         help_subst(buffer, "^username", CC->usersupp.fullname);
586         snprintf(buf2, sizeof buf2, "%ld", CC->usersupp.usernum);
587         help_subst(buffer, "^usernum", buf2);
588         help_subst(buffer, "^sysadm", config.c_sysadm);
589         help_subst(buffer, "^variantname", CITADEL);
590         snprintf(buf2, sizeof buf2, "%d", config.c_maxsessions);
591         help_subst(buffer, "^maxsessions", buf2);
592 }
593
594
595
596 /*
597  * memfmout()  -  Citadel text formatter and paginator.
598  *             Although the original purpose of this routine was to format
599  *             text to the reader's screen width, all we're really using it
600  *             for here is to format text out to 80 columns before sending it
601  *             to the client.  The client software may reformat it again.
602  */
603 void memfmout(
604         int width,              /* screen width to use */
605         char *mptr,             /* where are we going to get our text from? */
606         char subst,             /* nonzero if we should do substitutions */
607         char *nl)               /* string to terminate lines with */
608 {
609         int a, b, c;
610         int real = 0;
611         int old = 0;
612         CIT_UBYTE ch;
613         char aaa[140];
614         char buffer[SIZ];
615
616         strcpy(aaa, "");
617         old = 255;
618         strcpy(buffer, "");
619         c = 1;                  /* c is the current pos */
620
621         do {
622                 if (subst) {
623                         while (ch = *mptr, ((ch != 0) && (strlen(buffer) < 126))) {
624                                 ch = *mptr++;
625                                 buffer[strlen(buffer) + 1] = 0;
626                                 buffer[strlen(buffer)] = ch;
627                         }
628
629                         if (buffer[0] == '^')
630                                 do_help_subst(buffer);
631
632                         buffer[strlen(buffer) + 1] = 0;
633                         a = buffer[0];
634                         strcpy(buffer, &buffer[1]);
635                 } else {
636                         ch = *mptr++;
637                 }
638
639                 old = real;
640                 real = ch;
641
642                 if (((ch == 13) || (ch == 10)) && (old != 13) && (old != 10))
643                         ch = 32;
644                 if (((old == 13) || (old == 10)) && (isspace(real))) {
645                         cprintf("%s", nl);
646                         c = 1;
647                 }
648                 if (ch > 126)
649                         continue;
650
651                 if (ch > 32) {
652                         if (((strlen(aaa) + c) > (width - 5)) && (strlen(aaa) > (width - 5))) {
653                                 cprintf("%s%s", nl, aaa);
654                                 c = strlen(aaa);
655                                 aaa[0] = 0;
656                         }
657                         b = strlen(aaa);
658                         aaa[b] = ch;
659                         aaa[b + 1] = 0;
660                 }
661                 if (ch == 32) {
662                         if ((strlen(aaa) + c) > (width - 5)) {
663                                 cprintf("%s", nl);
664                                 c = 1;
665                         }
666                         cprintf("%s ", aaa);
667                         ++c;
668                         c = c + strlen(aaa);
669                         strcpy(aaa, "");
670                 }
671                 if ((ch == 13) || (ch == 10)) {
672                         cprintf("%s%s", aaa, nl);
673                         c = 1;
674                         strcpy(aaa, "");
675                 }
676
677         } while (ch > 0);
678
679         cprintf("%s%s", aaa, nl);
680 }
681
682
683
684 /*
685  * Callback function for mime parser that simply lists the part
686  */
687 void list_this_part(char *name, char *filename, char *partnum, char *disp,
688                     void *content, char *cbtype, size_t length, char *encoding,
689                     void *cbuserdata)
690 {
691
692         cprintf("part=%s|%s|%s|%s|%s|%ld\n",
693                 name, filename, partnum, disp, cbtype, (long)length);
694 }
695
696
697 /*
698  * Callback function for mime parser that opens a section for downloading
699  */
700 void mime_download(char *name, char *filename, char *partnum, char *disp,
701                    void *content, char *cbtype, size_t length, char *encoding,
702                    void *cbuserdata)
703 {
704
705         /* Silently go away if there's already a download open... */
706         if (CC->download_fp != NULL)
707                 return;
708
709         /* ...or if this is not the desired section */
710         if (strcasecmp(desired_section, partnum))
711                 return;
712
713         CC->download_fp = tmpfile();
714         if (CC->download_fp == NULL)
715                 return;
716
717         fwrite(content, length, 1, CC->download_fp);
718         fflush(CC->download_fp);
719         rewind(CC->download_fp);
720
721         OpenCmdResult(filename, cbtype);
722 }
723
724
725
726 /*
727  * Load a message from disk into memory.
728  * This is used by CtdlOutputMsg() and other fetch functions.
729  *
730  * NOTE: Caller is responsible for freeing the returned CtdlMessage struct
731  *       using the CtdlMessageFree() function.
732  */
733 struct CtdlMessage *CtdlFetchMessage(long msgnum)
734 {
735         struct cdbdata *dmsgtext;
736         struct CtdlMessage *ret = NULL;
737         char *mptr;
738         CIT_UBYTE ch;
739         CIT_UBYTE field_header;
740         size_t field_length;
741
742         dmsgtext = cdb_fetch(CDB_MSGMAIN, &msgnum, sizeof(long));
743         if (dmsgtext == NULL) {
744                 return NULL;
745         }
746         mptr = dmsgtext->ptr;
747
748         /* Parse the three bytes that begin EVERY message on disk.
749          * The first is always 0xFF, the on-disk magic number.
750          * The second is the anonymous/public type byte.
751          * The third is the format type byte (vari, fixed, or MIME).
752          */
753         ch = *mptr++;
754         if (ch != 255) {
755                 lprintf(5, "Message %ld appears to be corrupted.\n", msgnum);
756                 cdb_free(dmsgtext);
757                 return NULL;
758         }
759         ret = (struct CtdlMessage *) mallok(sizeof(struct CtdlMessage));
760         memset(ret, 0, sizeof(struct CtdlMessage));
761
762         ret->cm_magic = CTDLMESSAGE_MAGIC;
763         ret->cm_anon_type = *mptr++;    /* Anon type byte */
764         ret->cm_format_type = *mptr++;  /* Format type byte */
765
766         /*
767          * The rest is zero or more arbitrary fields.  Load them in.
768          * We're done when we encounter either a zero-length field or
769          * have just processed the 'M' (message text) field.
770          */
771         do {
772                 field_length = strlen(mptr);
773                 if (field_length == 0)
774                         break;
775                 field_header = *mptr++;
776                 ret->cm_fields[field_header] = mallok(field_length);
777                 strcpy(ret->cm_fields[field_header], mptr);
778
779                 while (*mptr++ != 0);   /* advance to next field */
780
781         } while ((field_length > 0) && (field_header != 'M'));
782
783         cdb_free(dmsgtext);
784
785         /* Always make sure there's something in the msg text field */
786         if (ret->cm_fields['M'] == NULL)
787                 ret->cm_fields['M'] = strdoop("<no text>\n");
788
789         /* Perform "before read" hooks (aborting if any return nonzero) */
790         if (PerformMessageHooks(ret, EVT_BEFOREREAD) > 0) {
791                 CtdlFreeMessage(ret);
792                 return NULL;
793         }
794
795         return (ret);
796 }
797
798
799 /*
800  * Returns 1 if the supplied pointer points to a valid Citadel message.
801  * If the pointer is NULL or the magic number check fails, returns 0.
802  */
803 int is_valid_message(struct CtdlMessage *msg) {
804         if (msg == NULL)
805                 return 0;
806         if ((msg->cm_magic) != CTDLMESSAGE_MAGIC) {
807                 lprintf(3, "is_valid_message() -- self-check failed\n");
808                 return 0;
809         }
810         return 1;
811 }
812
813
814 /*
815  * 'Destructor' for struct CtdlMessage
816  */
817 void CtdlFreeMessage(struct CtdlMessage *msg)
818 {
819         int i;
820
821         if (is_valid_message(msg) == 0) return;
822
823         for (i = 0; i < 256; ++i)
824                 if (msg->cm_fields[i] != NULL) {
825                         phree(msg->cm_fields[i]);
826                 }
827
828         msg->cm_magic = 0;      /* just in case */
829         phree(msg);
830 }
831
832
833 /*
834  * Pre callback function for multipart/alternative
835  *
836  * NOTE: this differs from the standard behavior for a reason.  Normally when
837  *       displaying multipart/alternative you want to show the _last_ usable
838  *       format in the message.  Here we show the _first_ one, because it's
839  *       usually text/plain.  Since this set of functions is designed for text
840  *       output to non-MIME-aware clients, this is the desired behavior.
841  *
842  */
843 void fixed_output_pre(char *name, char *filename, char *partnum, char *disp,
844                 void *content, char *cbtype, size_t length, char *encoding,
845                 void *cbuserdata)
846 {
847                 lprintf(9, "fixed_output_pre() type=<%s>\n", cbtype);   
848                 if (!strcasecmp(cbtype, "multipart/alternative")) {
849                         ma->is_ma = 1;
850                         ma->did_print = 0;
851                         return;
852                 }
853 }
854
855 /*
856  * Post callback function for multipart/alternative
857  */
858 void fixed_output_post(char *name, char *filename, char *partnum, char *disp,
859                 void *content, char *cbtype, size_t length, char *encoding,
860                 void *cbuserdata)
861 {
862                 lprintf(9, "fixed_output_post() type=<%s>\n", cbtype);  
863                 if (!strcasecmp(cbtype, "multipart/alternative")) {
864                         ma->is_ma = 0;
865                         ma->did_print = 0;
866                         return;
867                 }
868 }
869
870 /*
871  * Inline callback function for mime parser that wants to display text
872  */
873 void fixed_output(char *name, char *filename, char *partnum, char *disp,
874                 void *content, char *cbtype, size_t length, char *encoding,
875                 void *cbuserdata)
876         {
877                 char *ptr;
878                 char *wptr;
879                 size_t wlen;
880                 CIT_UBYTE ch = 0;
881
882                 lprintf(9, "fixed_output() type=<%s>\n", cbtype);       
883
884                 /*
885                  * If we're in the middle of a multipart/alternative scope and
886                  * we've already printed another section, skip this one.
887                  */     
888                 if ( (ma->is_ma == 1) && (ma->did_print == 1) ) {
889                         lprintf(9, "Skipping part %s (%s)\n", partnum, cbtype);
890                         return;
891                 }
892                 ma->did_print = 1;
893         
894                 if ( (!strcasecmp(cbtype, "text/plain")) 
895                    || (strlen(cbtype)==0) ) {
896                         wlen = length;
897                         wptr = content;
898                         while (wlen--) {
899                                 ch = *wptr++;
900                                 /**********
901                                 if (ch==10) cprintf("\r\n");
902                                 else cprintf("%c", ch);
903                                  **********/
904                                 cprintf("%c", ch);
905                         }
906                         if (ch != '\n') cprintf("\n");
907                 }
908                 else if (!strcasecmp(cbtype, "text/html")) {
909                         ptr = html_to_ascii(content, 80, 0);
910                         wlen = strlen(ptr);
911                         wptr = ptr;
912                         while (wlen--) {
913                                 ch = *wptr++;
914                                 if (ch==10) cprintf("\r\n");
915                                 else cprintf("%c", ch);
916                         }
917                         phree(ptr);
918                 }
919                 else if (strncasecmp(cbtype, "multipart/", 10)) {
920                         cprintf("Part %s: %s (%s) (%ld bytes)\r\n",
921                                 partnum, filename, cbtype, (long)length);
922                 }
923         }
924
925
926 /*
927  * Get a message off disk.  (returns om_* values found in msgbase.h)
928  * 
929  */
930 int CtdlOutputMsg(long msg_num,         /* message number (local) to fetch */
931                 int mode,               /* how would you like that message? */
932                 int headers_only,       /* eschew the message body? */
933                 int do_proto,           /* do Citadel protocol responses? */
934                 int crlf                /* Use CRLF newlines instead of LF? */
935 ) {
936         struct CtdlMessage *TheMessage;
937         int retcode;
938
939         lprintf(7, "CtdlOutputMsg() msgnum=%ld, mode=%d\n", 
940                 msg_num, mode);
941
942         TheMessage = NULL;
943
944         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
945                 if (do_proto) cprintf("%d Not logged in.\n",
946                         ERROR + NOT_LOGGED_IN);
947                 return(om_not_logged_in);
948         }
949
950         /* FIXME ... small security issue
951          * We need to check to make sure the requested message is actually
952          * in the current room, and set msg_ok to 1 only if it is.  This
953          * functionality is currently missing because I'm in a hurry to replace
954          * broken production code with nonbroken pre-beta code.  :(   -- ajc
955          *
956          if (!msg_ok) {
957          if (do_proto) cprintf("%d Message %ld is not in this room.\n",
958          ERROR, msg_num);
959          return(om_no_such_msg);
960          }
961          */
962
963         /*
964          * Fetch the message from disk
965          */
966         TheMessage = CtdlFetchMessage(msg_num);
967         if (TheMessage == NULL) {
968                 if (do_proto) cprintf("%d Can't locate msg %ld on disk\n",
969                         ERROR, msg_num);
970                 return(om_no_such_msg);
971         }
972         
973         retcode = CtdlOutputPreLoadedMsg(
974                         TheMessage, msg_num, mode,
975                         headers_only, do_proto, crlf);
976
977         CtdlFreeMessage(TheMessage);
978         return(retcode);
979 }
980
981
982 /*
983  * Get a message off disk.  (returns om_* values found in msgbase.h)
984  * 
985  */
986 int CtdlOutputPreLoadedMsg(struct CtdlMessage *TheMessage,
987                 long msg_num,
988                 int mode,               /* how would you like that message? */
989                 int headers_only,       /* eschew the message body? */
990                 int do_proto,           /* do Citadel protocol responses? */
991                 int crlf                /* Use CRLF newlines instead of LF? */
992 ) {
993         int i, k;
994         char buf[1024];
995         CIT_UBYTE ch;
996         char allkeys[SIZ];
997         char display_name[SIZ];
998         char *mptr;
999         char *nl;       /* newline string */
1000         int suppress_f = 0;
1001
1002         /* buffers needed for RFC822 translation */
1003         char suser[SIZ];
1004         char luser[SIZ];
1005         char fuser[SIZ];
1006         char snode[SIZ];
1007         char lnode[SIZ];
1008         char mid[SIZ];
1009         char datestamp[SIZ];
1010         /*                                       */
1011
1012         snprintf(mid, sizeof mid, "%ld", msg_num);
1013         nl = (crlf ? "\r\n" : "\n");
1014
1015         if (!is_valid_message(TheMessage)) {
1016                 lprintf(1, "ERROR: invalid preloaded message for output\n");
1017                 return(om_no_such_msg);
1018         }
1019
1020         /* Are we downloading a MIME component? */
1021         if (mode == MT_DOWNLOAD) {
1022                 if (TheMessage->cm_format_type != FMT_RFC822) {
1023                         if (do_proto)
1024                                 cprintf("%d This is not a MIME message.\n",
1025                                 ERROR);
1026                 } else if (CC->download_fp != NULL) {
1027                         if (do_proto) cprintf(
1028                                 "%d You already have a download open.\n",
1029                                 ERROR);
1030                 } else {
1031                         /* Parse the message text component */
1032                         mptr = TheMessage->cm_fields['M'];
1033                         mime_parser(mptr, NULL,
1034                                 *mime_download, NULL, NULL,
1035                                 NULL, 0);
1036                         /* If there's no file open by this time, the requested
1037                          * section wasn't found, so print an error
1038                          */
1039                         if (CC->download_fp == NULL) {
1040                                 if (do_proto) cprintf(
1041                                         "%d Section %s not found.\n",
1042                                         ERROR + FILE_NOT_FOUND,
1043                                         desired_section);
1044                         }
1045                 }
1046                 return((CC->download_fp != NULL) ? om_ok : om_mime_error);
1047         }
1048
1049         /* now for the user-mode message reading loops */
1050         if (do_proto) cprintf("%d Message %ld:\n", LISTING_FOLLOWS, msg_num);
1051
1052         /* Tell the client which format type we're using.  If this is a
1053          * MIME message, *lie* about it and tell the user it's fixed-format.
1054          */
1055         if (mode == MT_CITADEL) {
1056                 if (TheMessage->cm_format_type == FMT_RFC822) {
1057                         if (do_proto) cprintf("type=1\n");
1058                 }
1059                 else {
1060                         if (do_proto) cprintf("type=%d\n",
1061                                 TheMessage->cm_format_type);
1062                 }
1063         }
1064
1065         /* nhdr=yes means that we're only displaying headers, no body */
1066         if ((TheMessage->cm_anon_type == MES_ANONONLY) && (mode == MT_CITADEL)) {
1067                 if (do_proto) cprintf("nhdr=yes\n");
1068         }
1069
1070         /* begin header processing loop for Citadel message format */
1071
1072         if ((mode == MT_CITADEL) || (mode == MT_MIME)) {
1073
1074                 strcpy(display_name, "<unknown>");
1075                 if (TheMessage->cm_fields['A']) {
1076                         strcpy(buf, TheMessage->cm_fields['A']);
1077                         PerformUserHooks(buf, (-1L), EVT_OUTPUTMSG);
1078                         if (TheMessage->cm_anon_type == MES_ANONONLY) {
1079                                 strcpy(display_name, "****");
1080                         }
1081                         else if (TheMessage->cm_anon_type == MES_ANONOPT) {
1082                                 strcpy(display_name, "anonymous");
1083                         }
1084                         else {
1085                                 strcpy(display_name, buf);
1086                         }
1087                         if ((is_room_aide())
1088                             && ((TheMessage->cm_anon_type == MES_ANONONLY)
1089                              || (TheMessage->cm_anon_type == MES_ANONOPT))) {
1090                                 size_t tmp = strlen(display_name);
1091                                 snprintf(&display_name[tmp],
1092                                          sizeof display_name - tmp,
1093                                          " [%s]", buf);
1094                         }
1095                 }
1096
1097                 /* Don't show Internet address for users on the
1098                  * local Citadel network.
1099                  */
1100                 suppress_f = 0;
1101                 if (TheMessage->cm_fields['N'] != NULL)
1102                    if (strlen(TheMessage->cm_fields['N']) > 0)
1103                       if (haschar(TheMessage->cm_fields['N'], '.') == 0) {
1104                         suppress_f = 1;
1105                 }
1106                 
1107                 /* Now spew the header fields in the order we like them. */
1108                 strcpy(allkeys, FORDER);
1109                 for (i=0; i<strlen(allkeys); ++i) {
1110                         k = (int) allkeys[i];
1111                         if (k != 'M') {
1112                                 if ( (TheMessage->cm_fields[k] != NULL)
1113                                    && (msgkeys[k] != NULL) ) {
1114                                         if (k == 'A') {
1115                                                 if (do_proto) cprintf("%s=%s\n",
1116                                                         msgkeys[k],
1117                                                         display_name);
1118                                         }
1119                                         else if ((k == 'F') && (suppress_f)) {
1120                                                 /* do nothing */
1121                                         }
1122                                         /* Masquerade display name if needed */
1123                                         else {
1124                                                 if (do_proto) cprintf("%s=%s\n",
1125                                                         msgkeys[k],
1126                                                         TheMessage->cm_fields[k]
1127                                         );
1128                                         }
1129                                 }
1130                         }
1131                 }
1132
1133         }
1134
1135         /* begin header processing loop for RFC822 transfer format */
1136
1137         strcpy(suser, "");
1138         strcpy(luser, "");
1139         strcpy(fuser, "");
1140         strcpy(snode, NODENAME);
1141         strcpy(lnode, HUMANNODE);
1142         if (mode == MT_RFC822) {
1143                 cprintf("X-UIDL: %ld%s", msg_num, nl);
1144                 for (i = 0; i < 256; ++i) {
1145                         if (TheMessage->cm_fields[i]) {
1146                                 mptr = TheMessage->cm_fields[i];
1147
1148                                 if (i == 'A') {
1149                                         strcpy(luser, mptr);
1150                                         strcpy(suser, mptr);
1151                                 }
1152 /****
1153  "Path:" removed for now because it confuses brain-dead Microsoft shitware
1154  into thinking that mail messages are newsgroup messages instead.  When we
1155  add NNTP support back into Citadel we'll have to add code to only output
1156  this field when appropriate.
1157                                 else if (i == 'P') {
1158                                         cprintf("Path: %s%s", mptr, nl);
1159                                 }
1160  ****/
1161                                 else if (i == 'U')
1162                                         cprintf("Subject: %s%s", mptr, nl);
1163                                 else if (i == 'I')
1164                                         safestrncpy(mid, mptr, sizeof mid);
1165                                 else if (i == 'H')
1166                                         safestrncpy(lnode, mptr, sizeof lnode);
1167                                 else if (i == 'F')
1168                                         safestrncpy(fuser, mptr, sizeof fuser);
1169                                 else if (i == 'O')
1170                                         cprintf("X-Citadel-Room: %s%s",
1171                                                 mptr, nl);
1172                                 else if (i == 'N')
1173                                         safestrncpy(snode, mptr, sizeof snode);
1174                                 else if (i == 'R')
1175                                         cprintf("To: %s%s", mptr, nl);
1176                                 else if (i == 'T') {
1177                                         datestring(datestamp, sizeof datestamp, atol(mptr),
1178                                                 DATESTRING_RFC822 );
1179                                         cprintf("Date: %s%s", datestamp, nl);
1180                                 }
1181                         }
1182                 }
1183         }
1184
1185         for (i=0; i<strlen(suser); ++i) {
1186                 suser[i] = tolower(suser[i]);
1187                 if (!isalnum(suser[i])) suser[i]='_';
1188         }
1189
1190         if (mode == MT_RFC822) {
1191                 if (!strcasecmp(snode, NODENAME)) {
1192                         strcpy(snode, FQDN);
1193                 }
1194
1195                 /* Construct a fun message id */
1196                 cprintf("Message-ID: <%s", mid);
1197                 if (strchr(mid, '@')==NULL) {
1198                         cprintf("@%s", snode);
1199                 }
1200                 cprintf(">%s", nl);
1201
1202                 PerformUserHooks(luser, (-1L), EVT_OUTPUTMSG);
1203
1204                 if (strlen(fuser) > 0) {
1205                         cprintf("From: %s (%s)%s", fuser, luser, nl);
1206                 }
1207                 else {
1208                         cprintf("From: %s@%s (%s)%s", suser, snode, luser, nl);
1209                 }
1210
1211                 cprintf("Organization: %s%s", lnode, nl);
1212         }
1213
1214         /* end header processing loop ... at this point, we're in the text */
1215
1216         mptr = TheMessage->cm_fields['M'];
1217
1218         /* Tell the client about the MIME parts in this message */
1219         if (TheMessage->cm_format_type == FMT_RFC822) {
1220                 if (mode == MT_CITADEL) {
1221                         mime_parser(mptr, NULL,
1222                                 *list_this_part, NULL, NULL,
1223                                 NULL, 0);
1224                 }
1225                 else if (mode == MT_MIME) {     /* list parts only */
1226                         mime_parser(mptr, NULL,
1227                                 *list_this_part, NULL, NULL,
1228                                 NULL, 0);
1229                         if (do_proto) cprintf("000\n");
1230                         return(om_ok);
1231                 }
1232                 else if (mode == MT_RFC822) {   /* unparsed RFC822 dump */
1233                         /* FIXME ... we have to put some code in here to avoid
1234                          * printing duplicate header information when both
1235                          * Citadel and RFC822 headers exist.  Preference should
1236                          * probably be given to the RFC822 headers.
1237                          */
1238                         while (ch=*(mptr++), ch!=0) {
1239                                 if (ch==13) ;
1240                                 else if (ch==10) cprintf("%s", nl);
1241                                 else cprintf("%c", ch);
1242                         }
1243                         if (do_proto) cprintf("000\n");
1244                         return(om_ok);
1245                 }
1246         }
1247
1248         if (headers_only) {
1249                 if (do_proto) cprintf("000\n");
1250                 return(om_ok);
1251         }
1252
1253         /* signify start of msg text */
1254         if (mode == MT_CITADEL)
1255                 if (do_proto) cprintf("text\n");
1256         if (mode == MT_RFC822) {
1257                 if (TheMessage->cm_fields['U'] == NULL) {
1258                         cprintf("Subject: (no subject)%s", nl);
1259                 }
1260                 cprintf("%s", nl);
1261         }
1262
1263         /* If the format type on disk is 1 (fixed-format), then we want
1264          * everything to be output completely literally ... regardless of
1265          * what message transfer format is in use.
1266          */
1267         if (TheMessage->cm_format_type == FMT_FIXED) {
1268                 strcpy(buf, "");
1269                 while (ch = *mptr++, ch > 0) {
1270                         if (ch == 13)
1271                                 ch = 10;
1272                         if ((ch == 10) || (strlen(buf) > 250)) {
1273                                 cprintf("%s%s", buf, nl);
1274                                 strcpy(buf, "");
1275                         } else {
1276                                 buf[strlen(buf) + 1] = 0;
1277                                 buf[strlen(buf)] = ch;
1278                         }
1279                 }
1280                 if (strlen(buf) > 0)
1281                         cprintf("%s%s", buf, nl);
1282         }
1283
1284         /* If the message on disk is format 0 (Citadel vari-format), we
1285          * output using the formatter at 80 columns.  This is the final output
1286          * form if the transfer format is RFC822, but if the transfer format
1287          * is Citadel proprietary, it'll still work, because the indentation
1288          * for new paragraphs is correct and the client will reformat the
1289          * message to the reader's screen width.
1290          */
1291         if (TheMessage->cm_format_type == FMT_CITADEL) {
1292                 memfmout(80, mptr, 0, nl);
1293         }
1294
1295         /* If the message on disk is format 4 (MIME), we've gotta hand it
1296          * off to the MIME parser.  The client has already been told that
1297          * this message is format 1 (fixed format), so the callback function
1298          * we use will display those parts as-is.
1299          */
1300         if (TheMessage->cm_format_type == FMT_RFC822) {
1301                 CtdlAllocUserData(SYM_MA_INFO, sizeof(struct ma_info));
1302                 memset(ma, 0, sizeof(struct ma_info));
1303                 mime_parser(mptr, NULL,
1304                         *fixed_output, *fixed_output_pre, *fixed_output_post,
1305                         NULL, 0);
1306         }
1307
1308         /* now we're done */
1309         if (do_proto) cprintf("000\n");
1310         return(om_ok);
1311 }
1312
1313
1314
1315 /*
1316  * display a message (mode 0 - Citadel proprietary)
1317  */
1318 void cmd_msg0(char *cmdbuf)
1319 {
1320         long msgid;
1321         int headers_only = 0;
1322
1323         msgid = extract_long(cmdbuf, 0);
1324         headers_only = extract_int(cmdbuf, 1);
1325
1326         CtdlOutputMsg(msgid, MT_CITADEL, headers_only, 1, 0);
1327         return;
1328 }
1329
1330
1331 /*
1332  * display a message (mode 2 - RFC822)
1333  */
1334 void cmd_msg2(char *cmdbuf)
1335 {
1336         long msgid;
1337         int headers_only = 0;
1338
1339         msgid = extract_long(cmdbuf, 0);
1340         headers_only = extract_int(cmdbuf, 1);
1341
1342         CtdlOutputMsg(msgid, MT_RFC822, headers_only, 1, 1);
1343 }
1344
1345
1346
1347 /* 
1348  * display a message (mode 3 - IGnet raw format - internal programs only)
1349  */
1350 void cmd_msg3(char *cmdbuf)
1351 {
1352         long msgnum;
1353         struct CtdlMessage *msg;
1354         struct ser_ret smr;
1355
1356         if (CC->internal_pgm == 0) {
1357                 cprintf("%d This command is for internal programs only.\n",
1358                         ERROR);
1359                 return;
1360         }
1361
1362         msgnum = extract_long(cmdbuf, 0);
1363         msg = CtdlFetchMessage(msgnum);
1364         if (msg == NULL) {
1365                 cprintf("%d Message %ld not found.\n", 
1366                         ERROR, msgnum);
1367                 return;
1368         }
1369
1370         serialize_message(&smr, msg);
1371         CtdlFreeMessage(msg);
1372
1373         if (smr.len == 0) {
1374                 cprintf("%d Unable to serialize message\n",
1375                         ERROR+INTERNAL_ERROR);
1376                 return;
1377         }
1378
1379         cprintf("%d %ld\n", BINARY_FOLLOWS, (long)smr.len);
1380         client_write(smr.ser, smr.len);
1381         phree(smr.ser);
1382 }
1383
1384
1385
1386 /* 
1387  * display a message (mode 4 - MIME) (FIXME ... still evolving, not complete)
1388  */
1389 void cmd_msg4(char *cmdbuf)
1390 {
1391         long msgid;
1392
1393         msgid = extract_long(cmdbuf, 0);
1394         CtdlOutputMsg(msgid, MT_MIME, 0, 1, 0);
1395 }
1396
1397 /*
1398  * Open a component of a MIME message as a download file 
1399  */
1400 void cmd_opna(char *cmdbuf)
1401 {
1402         long msgid;
1403
1404         CtdlAllocUserData(SYM_DESIRED_SECTION, SIZ);
1405
1406         msgid = extract_long(cmdbuf, 0);
1407         extract(desired_section, cmdbuf, 1);
1408
1409         CtdlOutputMsg(msgid, MT_DOWNLOAD, 0, 1, 1);
1410 }                       
1411
1412
1413 /*
1414  * Save a message pointer into a specified room
1415  * (Returns 0 for success, nonzero for failure)
1416  * roomname may be NULL to use the current room
1417  */
1418 int CtdlSaveMsgPointerInRoom(char *roomname, long msgid, int flags) {
1419         int i;
1420         char hold_rm[ROOMNAMELEN];
1421         struct cdbdata *cdbfr;
1422         int num_msgs;
1423         long *msglist;
1424         long highest_msg = 0L;
1425         struct CtdlMessage *msg = NULL;
1426
1427         lprintf(9, "CtdlSaveMsgPointerInRoom(%s, %ld, %d)\n",
1428                 roomname, msgid, flags);
1429
1430         strcpy(hold_rm, CC->quickroom.QRname);
1431
1432         /* We may need to check to see if this message is real */
1433         if (  (flags & SM_VERIFY_GOODNESS)
1434            || (flags & SM_DO_REPL_CHECK)
1435            ) {
1436                 msg = CtdlFetchMessage(msgid);
1437                 if (msg == NULL) return(ERROR + ILLEGAL_VALUE);
1438         }
1439
1440         /* Perform replication checks if necessary */
1441         if ( (flags & SM_DO_REPL_CHECK) && (msg != NULL) ) {
1442
1443                 if (getroom(&CC->quickroom,
1444                    ((roomname != NULL) ? roomname : CC->quickroom.QRname) )
1445                    != 0) {
1446                         lprintf(9, "No such room <%s>\n", roomname);
1447                         if (msg != NULL) CtdlFreeMessage(msg);
1448                         return(ERROR + ROOM_NOT_FOUND);
1449                 }
1450
1451                 if (ReplicationChecks(msg) != 0) {
1452                         getroom(&CC->quickroom, hold_rm);
1453                         if (msg != NULL) CtdlFreeMessage(msg);
1454                         lprintf(9, "Did replication, and newer exists\n");
1455                         return(0);
1456                 }
1457         }
1458
1459         /* Now the regular stuff */
1460         if (lgetroom(&CC->quickroom,
1461            ((roomname != NULL) ? roomname : CC->quickroom.QRname) )
1462            != 0) {
1463                 lprintf(9, "No such room <%s>\n", roomname);
1464                 if (msg != NULL) CtdlFreeMessage(msg);
1465                 return(ERROR + ROOM_NOT_FOUND);
1466         }
1467
1468         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->quickroom.QRnumber, sizeof(long));
1469         if (cdbfr == NULL) {
1470                 msglist = NULL;
1471                 num_msgs = 0;
1472         } else {
1473                 msglist = mallok(cdbfr->len);
1474                 if (msglist == NULL)
1475                         lprintf(3, "ERROR malloc msglist!\n");
1476                 num_msgs = cdbfr->len / sizeof(long);
1477                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1478                 cdb_free(cdbfr);
1479         }
1480
1481
1482         /* Make sure the message doesn't already exist in this room.  It
1483          * is absolutely taboo to have more than one reference to the same
1484          * message in a room.
1485          */
1486         if (num_msgs > 0) for (i=0; i<num_msgs; ++i) {
1487                 if (msglist[i] == msgid) {
1488                         lputroom(&CC->quickroom);       /* unlock the room */
1489                         getroom(&CC->quickroom, hold_rm);
1490                         if (msg != NULL) CtdlFreeMessage(msg);
1491                         return(ERROR + ALREADY_EXISTS);
1492                 }
1493         }
1494
1495         /* Now add the new message */
1496         ++num_msgs;
1497         msglist = reallok(msglist,
1498                           (num_msgs * sizeof(long)));
1499
1500         if (msglist == NULL) {
1501                 lprintf(3, "ERROR: can't realloc message list!\n");
1502         }
1503         msglist[num_msgs - 1] = msgid;
1504
1505         /* Sort the message list, so all the msgid's are in order */
1506         num_msgs = sort_msglist(msglist, num_msgs);
1507
1508         /* Determine the highest message number */
1509         highest_msg = msglist[num_msgs - 1];
1510
1511         /* Write it back to disk. */
1512         cdb_store(CDB_MSGLISTS, &CC->quickroom.QRnumber, sizeof(long),
1513                   msglist, num_msgs * sizeof(long));
1514
1515         /* Free up the memory we used. */
1516         phree(msglist);
1517
1518         /* Update the highest-message pointer and unlock the room. */
1519         CC->quickroom.QRhighest = highest_msg;
1520         lputroom(&CC->quickroom);
1521         getroom(&CC->quickroom, hold_rm);
1522
1523         /* Bump the reference count for this message. */
1524         if ((flags & SM_DONT_BUMP_REF)==0) {
1525                 AdjRefCount(msgid, +1);
1526         }
1527
1528         /* Return success. */
1529         if (msg != NULL) CtdlFreeMessage(msg);
1530         return (0);
1531 }
1532
1533
1534
1535 /*
1536  * Message base operation to send a message to the master file
1537  * (returns new message number)
1538  *
1539  * This is the back end for CtdlSubmitMsg() and should not be directly
1540  * called by server-side modules.
1541  *
1542  */
1543 long send_message(struct CtdlMessage *msg,      /* pointer to buffer */
1544                 FILE *save_a_copy)              /* save a copy to disk? */
1545 {
1546         long newmsgid;
1547         long retval;
1548         char msgidbuf[SIZ];
1549         struct ser_ret smr;
1550
1551         /* Get a new message number */
1552         newmsgid = get_new_message_number();
1553         snprintf(msgidbuf, sizeof msgidbuf, "%ld@%s", newmsgid, config.c_fqdn);
1554
1555         /* Generate an ID if we don't have one already */
1556         if (msg->cm_fields['I']==NULL) {
1557                 msg->cm_fields['I'] = strdoop(msgidbuf);
1558         }
1559         
1560         serialize_message(&smr, msg);
1561
1562         if (smr.len == 0) {
1563                 cprintf("%d Unable to serialize message\n",
1564                         ERROR+INTERNAL_ERROR);
1565                 return (-1L);
1566         }
1567
1568         /* Write our little bundle of joy into the message base */
1569         if (cdb_store(CDB_MSGMAIN, &newmsgid, sizeof(long),
1570                       smr.ser, smr.len) < 0) {
1571                 lprintf(2, "Can't store message\n");
1572                 retval = 0L;
1573         } else {
1574                 retval = newmsgid;
1575         }
1576
1577         /* If the caller specified that a copy should be saved to a particular
1578          * file handle, do that now too.
1579          */
1580         if (save_a_copy != NULL) {
1581                 fwrite(smr.ser, smr.len, 1, save_a_copy);
1582         }
1583
1584         /* Free the memory we used for the serialized message */
1585         phree(smr.ser);
1586
1587         /* Return the *local* message ID to the caller
1588          * (even if we're storing an incoming network message)
1589          */
1590         return(retval);
1591 }
1592
1593
1594
1595 /*
1596  * Serialize a struct CtdlMessage into the format used on disk and network.
1597  * 
1598  * This function loads up a "struct ser_ret" (defined in server.h) which
1599  * contains the length of the serialized message and a pointer to the
1600  * serialized message in memory.  THE LATTER MUST BE FREED BY THE CALLER.
1601  */
1602 void serialize_message(struct ser_ret *ret,             /* return values */
1603                         struct CtdlMessage *msg)        /* unserialized msg */
1604 {
1605         size_t wlen;
1606         int i;
1607         static char *forder = FORDER;
1608
1609         if (is_valid_message(msg) == 0) return;         /* self check */
1610
1611         ret->len = 3;
1612         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL)
1613                 ret->len = ret->len +
1614                         strlen(msg->cm_fields[(int)forder[i]]) + 2;
1615
1616         lprintf(9, "serialize_message() calling malloc(%ld)\n", (long)ret->len);
1617         ret->ser = mallok(ret->len);
1618         if (ret->ser == NULL) {
1619                 ret->len = 0;
1620                 return;
1621         }
1622
1623         ret->ser[0] = 0xFF;
1624         ret->ser[1] = msg->cm_anon_type;
1625         ret->ser[2] = msg->cm_format_type;
1626         wlen = 3;
1627
1628         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL) {
1629                 ret->ser[wlen++] = (char)forder[i];
1630                 strcpy(&ret->ser[wlen], msg->cm_fields[(int)forder[i]]);
1631                 wlen = wlen + strlen(msg->cm_fields[(int)forder[i]]) + 1;
1632         }
1633         if (ret->len != wlen) lprintf(3, "ERROR: len=%ld wlen=%ld\n",
1634                 (long)ret->len, (long)wlen);
1635
1636         return;
1637 }
1638
1639
1640
1641 /*
1642  * Back end for the ReplicationChecks() function
1643  */
1644 void check_repl(long msgnum, void *userdata) {
1645         struct CtdlMessage *msg;
1646         time_t timestamp = (-1L);
1647
1648         lprintf(9, "check_repl() found message %ld\n", msgnum);
1649         msg = CtdlFetchMessage(msgnum);
1650         if (msg == NULL) return;
1651         if (msg->cm_fields['T'] != NULL) {
1652                 timestamp = atol(msg->cm_fields['T']);
1653         }
1654         CtdlFreeMessage(msg);
1655
1656         if (timestamp > msg_repl->highest) {
1657                 msg_repl->highest = timestamp;  /* newer! */
1658                 lprintf(9, "newer!\n");
1659                 return;
1660         }
1661         lprintf(9, "older!\n");
1662
1663         /* Existing isn't newer?  Then delete the old one(s). */
1664         CtdlDeleteMessages(CC->quickroom.QRname, msgnum, "");
1665 }
1666
1667
1668 /*
1669  * Check to see if any messages already exist which carry the same Extended ID
1670  * as this one.  
1671  *
1672  * If any are found:
1673  * -> With older timestamps: delete them and return 0.  Message will be saved.
1674  * -> With newer timestamps: return 1.  Message save will be aborted.
1675  */
1676 int ReplicationChecks(struct CtdlMessage *msg) {
1677         struct CtdlMessage *template;
1678         int abort_this = 0;
1679
1680         lprintf(9, "ReplicationChecks() started\n");
1681         /* No extended id?  Don't do anything. */
1682         if (msg->cm_fields['E'] == NULL) return 0;
1683         if (strlen(msg->cm_fields['E']) == 0) return 0;
1684         lprintf(9, "Extended ID: <%s>\n", msg->cm_fields['E']);
1685
1686         CtdlAllocUserData(SYM_REPL, sizeof(struct repl));
1687         strcpy(msg_repl->extended_id, msg->cm_fields['E']);
1688         msg_repl->highest = atol(msg->cm_fields['T']);
1689
1690         template = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
1691         memset(template, 0, sizeof(struct CtdlMessage));
1692         template->cm_fields['E'] = strdoop(msg->cm_fields['E']);
1693
1694         CtdlForEachMessage(MSGS_ALL, 0L, (-127), NULL, template,
1695                 check_repl, NULL);
1696
1697         /* If a newer message exists with the same Extended ID, abort
1698          * this save.
1699          */
1700         if (msg_repl->highest > atol(msg->cm_fields['T']) ) {
1701                 abort_this = 1;
1702                 }
1703
1704         CtdlFreeMessage(template);
1705         lprintf(9, "ReplicationChecks() returning %d\n", abort_this);
1706         return(abort_this);
1707 }
1708
1709
1710
1711
1712 /*
1713  * Save a message to disk and submit it into the delivery system.
1714  */
1715 long CtdlSubmitMsg(struct CtdlMessage *msg,     /* message to save */
1716                 struct recptypes *recps,        /* recipients (if mail) */
1717                 char *force                     /* force a particular room? */
1718 ) {
1719         char aaa[SIZ];
1720         char hold_rm[ROOMNAMELEN];
1721         char actual_rm[ROOMNAMELEN];
1722         char force_room[ROOMNAMELEN];
1723         char content_type[SIZ];                 /* We have to learn this */
1724         char recipient[SIZ];
1725         long newmsgid;
1726         char *mptr = NULL;
1727         struct usersupp userbuf;
1728         int a, i;
1729         struct MetaData smi;
1730         FILE *network_fp = NULL;
1731         static int seqnum = 1;
1732         struct CtdlMessage *imsg = NULL;
1733         char *instr;
1734         struct ser_ret smr;
1735         char *hold_R, *hold_D;
1736
1737         lprintf(9, "CtdlSubmitMsg() called\n");
1738         if (is_valid_message(msg) == 0) return(-1);     /* self check */
1739
1740         /* If this message has no timestamp, we take the liberty of
1741          * giving it one, right now.
1742          */
1743         if (msg->cm_fields['T'] == NULL) {
1744                 lprintf(9, "Generating timestamp\n");
1745                 snprintf(aaa, sizeof aaa, "%ld", (long)time(NULL));
1746                 msg->cm_fields['T'] = strdoop(aaa);
1747         }
1748
1749         /* If this message has no path, we generate one.
1750          */
1751         if (msg->cm_fields['P'] == NULL) {
1752                 lprintf(9, "Generating path\n");
1753                 if (msg->cm_fields['A'] != NULL) {
1754                         msg->cm_fields['P'] = strdoop(msg->cm_fields['A']);
1755                         for (a=0; a<strlen(msg->cm_fields['P']); ++a) {
1756                                 if (isspace(msg->cm_fields['P'][a])) {
1757                                         msg->cm_fields['P'][a] = ' ';
1758                                 }
1759                         }
1760                 }
1761                 else {
1762                         msg->cm_fields['P'] = strdoop("unknown");
1763                 }
1764         }
1765
1766         strcpy(force_room, force);
1767
1768         /* Learn about what's inside, because it's what's inside that counts */
1769         lprintf(9, "Learning what's inside\n");
1770         if (msg->cm_fields['M'] == NULL) {
1771                 lprintf(1, "ERROR: attempt to save message with NULL body\n");
1772         }
1773
1774         switch (msg->cm_format_type) {
1775         case 0:
1776                 strcpy(content_type, "text/x-citadel-variformat");
1777                 break;
1778         case 1:
1779                 strcpy(content_type, "text/plain");
1780                 break;
1781         case 4:
1782                 strcpy(content_type, "text/plain");
1783                 /* advance past header fields */
1784                 mptr = msg->cm_fields['M'];
1785                 a = strlen(mptr);
1786                 while ((--a) > 0) {
1787                         if (!strncasecmp(mptr, "Content-type: ", 14)) {
1788                                 safestrncpy(content_type, mptr,
1789                                             sizeof(content_type));
1790                                 strcpy(content_type, &content_type[14]);
1791                                 for (a = 0; a < strlen(content_type); ++a)
1792                                         if ((content_type[a] == ';')
1793                                             || (content_type[a] == ' ')
1794                                             || (content_type[a] == 13)
1795                                             || (content_type[a] == 10))
1796                                                 content_type[a] = 0;
1797                                 break;
1798                         }
1799                         ++mptr;
1800                 }
1801         }
1802
1803         /* Goto the correct room */
1804         lprintf(9, "Switching rooms\n");
1805         strcpy(hold_rm, CC->quickroom.QRname);
1806         strcpy(actual_rm, CC->quickroom.QRname);
1807         if (recps != NULL) {
1808                 strcpy(actual_rm, SENTITEMS);
1809         }
1810
1811         /* If the user is a twit, move to the twit room for posting */
1812         lprintf(9, "Handling twit stuff\n");
1813         if (TWITDETECT) {
1814                 if (CC->usersupp.axlevel == 2) {
1815                         strcpy(hold_rm, actual_rm);
1816                         strcpy(actual_rm, config.c_twitroom);
1817                 }
1818         }
1819
1820         /* ...or if this message is destined for Aide> then go there. */
1821         if (strlen(force_room) > 0) {
1822                 strcpy(actual_rm, force_room);
1823         }
1824
1825         lprintf(9, "Possibly relocating\n");
1826         if (strcasecmp(actual_rm, CC->quickroom.QRname)) {
1827                 getroom(&CC->quickroom, actual_rm);
1828         }
1829
1830         /*
1831          * If this message has no O (room) field, generate one.
1832          */
1833         if (msg->cm_fields['O'] == NULL) {
1834                 msg->cm_fields['O'] = strdoop(CC->quickroom.QRname);
1835         }
1836
1837         /* Perform "before save" hooks (aborting if any return nonzero) */
1838         lprintf(9, "Performing before-save hooks\n");
1839         if (PerformMessageHooks(msg, EVT_BEFORESAVE) > 0) return(-1);
1840
1841         /* If this message has an Extended ID, perform replication checks */
1842         lprintf(9, "Performing replication checks\n");
1843         if (ReplicationChecks(msg) > 0) return(-1);
1844
1845         /* Save it to disk */
1846         lprintf(9, "Saving to disk\n");
1847         newmsgid = send_message(msg, NULL);
1848         if (newmsgid <= 0L) return(-1);
1849
1850         /* Write a supplemental message info record.  This doesn't have to
1851          * be a critical section because nobody else knows about this message
1852          * yet.
1853          */
1854         lprintf(9, "Creating MetaData record\n");
1855         memset(&smi, 0, sizeof(struct MetaData));
1856         smi.meta_msgnum = newmsgid;
1857         smi.meta_refcount = 0;
1858         safestrncpy(smi.meta_content_type, content_type, 64);
1859         PutMetaData(&smi);
1860
1861         /* Now figure out where to store the pointers */
1862         lprintf(9, "Storing pointers\n");
1863
1864         /* If this is being done by the networker delivering a private
1865          * message, we want to BYPASS saving the sender's copy (because there
1866          * is no local sender; it would otherwise go to the Trashcan).
1867          */
1868         if ((!CC->internal_pgm) || (recps == NULL)) {
1869                 if (CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0) != 0) {
1870                         lprintf(3, "ERROR saving message pointer!\n");
1871                         CtdlSaveMsgPointerInRoom(AIDEROOM, newmsgid, 0);
1872                 }
1873         }
1874
1875         /* For internet mail, drop a copy in the outbound queue room */
1876         if (recps != NULL)
1877          if (recps->num_internet > 0) {
1878                 CtdlSaveMsgPointerInRoom(SMTP_SPOOLOUT_ROOM, newmsgid, 0);
1879         }
1880
1881         /* If other rooms are specified, drop them there too. */
1882         if (recps != NULL)
1883          if (recps->num_room > 0)
1884           for (i=0; i<num_tokens(recps->recp_room, '|'); ++i) {
1885                 extract(recipient, recps->recp_room, i);
1886                 lprintf(9, "Delivering to local room <%s>\n", recipient);
1887                 CtdlSaveMsgPointerInRoom(recipient, newmsgid, 0);
1888         }
1889
1890         /* Bump this user's messages posted counter. */
1891         lprintf(9, "Updating user\n");
1892         lgetuser(&CC->usersupp, CC->curr_user);
1893         CC->usersupp.posted = CC->usersupp.posted + 1;
1894         lputuser(&CC->usersupp);
1895
1896         /* If this is private, local mail, make a copy in the
1897          * recipient's mailbox and bump the reference count.
1898          */
1899         if (recps != NULL)
1900          if (recps->num_local > 0)
1901           for (i=0; i<num_tokens(recps->recp_local, '|'); ++i) {
1902                 extract(recipient, recps->recp_local, i);
1903                 lprintf(9, "Delivering private local mail to <%s>\n",
1904                         recipient);
1905                 if (getuser(&userbuf, recipient) == 0) {
1906                         MailboxName(actual_rm, sizeof actual_rm, &userbuf, MAILROOM);
1907                         CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0);
1908                 }
1909                 else {
1910                         lprintf(9, "No user <%s>\n", recipient);
1911                         CtdlSaveMsgPointerInRoom(AIDEROOM, newmsgid, 0);
1912                 }
1913         }
1914
1915         /* Perform "after save" hooks */
1916         lprintf(9, "Performing after-save hooks\n");
1917         PerformMessageHooks(msg, EVT_AFTERSAVE);
1918
1919         /* For IGnet mail, we have to save a new copy into the spooler for
1920          * each recipient, with the R and D fields set to the recipient and
1921          * destination-node.  This has two ugly side effects: all other
1922          * recipients end up being unlisted in this recipient's copy of the
1923          * message, and it has to deliver multiple messages to the same
1924          * node.  We'll revisit this again in a year or so when everyone has
1925          * a network spool receiver that can handle the new style messages.
1926          */
1927         if (recps != NULL)
1928          if (recps->num_ignet > 0)
1929           for (i=0; i<num_tokens(recps->recp_ignet, '|'); ++i) {
1930                 extract(recipient, recps->recp_ignet, i);
1931
1932                 hold_R = msg->cm_fields['R'];
1933                 hold_D = msg->cm_fields['D'];
1934                 msg->cm_fields['R'] = mallok(SIZ);
1935                 msg->cm_fields['D'] = mallok(SIZ);
1936                 extract_token(msg->cm_fields['R'], recipient, 0, '@');
1937                 extract_token(msg->cm_fields['D'], recipient, 1, '@');
1938                 
1939                 serialize_message(&smr, msg);
1940                 if (smr.len > 0) {
1941                         snprintf(aaa, sizeof aaa,
1942                                 "./network/spoolin/netmail.%04lx.%04x.%04x",
1943                                 (long) getpid(), CC->cs_pid, ++seqnum);
1944                         network_fp = fopen(aaa, "wb+");
1945                         if (network_fp != NULL) {
1946                                 fwrite(smr.ser, smr.len, 1, network_fp);
1947                                 fclose(network_fp);
1948                         }
1949                         phree(smr.ser);
1950                 }
1951
1952                 phree(msg->cm_fields['R']);
1953                 phree(msg->cm_fields['D']);
1954                 msg->cm_fields['R'] = hold_R;
1955                 msg->cm_fields['D'] = hold_D;
1956         }
1957
1958         /* Go back to the room we started from */
1959         lprintf(9, "Returning to original room\n");
1960         if (strcasecmp(hold_rm, CC->quickroom.QRname))
1961                 getroom(&CC->quickroom, hold_rm);
1962
1963         /* For internet mail, generate delivery instructions.
1964          * Yes, this is recursive.  Deal with it.  Infinite recursion does
1965          * not happen because the delivery instructions message does not
1966          * contain a recipient.
1967          */
1968         if (recps != NULL)
1969          if (recps->num_internet > 0) {
1970                 lprintf(9, "Generating delivery instructions\n");
1971                 instr = mallok(SIZ * 2);
1972                 snprintf(instr, SIZ * 2,
1973                         "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n"
1974                         "bounceto|%s@%s\n",
1975                         SPOOLMIME, newmsgid, (long)time(NULL),
1976                         msg->cm_fields['A'], msg->cm_fields['N']
1977                 );
1978
1979                 for (i=0; i<num_tokens(recps->recp_internet, '|'); ++i) {
1980                         size_t tmp = strlen(instr);
1981                         extract(recipient, recps->recp_internet, i);
1982                         snprintf(&instr[tmp], SIZ * 2 - tmp,
1983                                  "remote|%s|0||\n", recipient);
1984                 }
1985
1986                 imsg = mallok(sizeof(struct CtdlMessage));
1987                 memset(imsg, 0, sizeof(struct CtdlMessage));
1988                 imsg->cm_magic = CTDLMESSAGE_MAGIC;
1989                 imsg->cm_anon_type = MES_NORMAL;
1990                 imsg->cm_format_type = FMT_RFC822;
1991                 imsg->cm_fields['A'] = strdoop("Citadel");
1992                 imsg->cm_fields['M'] = instr;
1993                 CtdlSubmitMsg(imsg, NULL, SMTP_SPOOLOUT_ROOM);
1994                 CtdlFreeMessage(imsg);
1995         }
1996
1997         return(newmsgid);
1998 }
1999
2000
2001
2002 /*
2003  * Convenience function for generating small administrative messages.
2004  */
2005 void quickie_message(char *from, char *to, char *room, char *text)
2006 {
2007         struct CtdlMessage *msg;
2008
2009         msg = mallok(sizeof(struct CtdlMessage));
2010         memset(msg, 0, sizeof(struct CtdlMessage));
2011         msg->cm_magic = CTDLMESSAGE_MAGIC;
2012         msg->cm_anon_type = MES_NORMAL;
2013         msg->cm_format_type = 0;
2014         msg->cm_fields['A'] = strdoop(from);
2015         msg->cm_fields['O'] = strdoop(room);
2016         msg->cm_fields['N'] = strdoop(NODENAME);
2017         if (to != NULL)
2018                 msg->cm_fields['R'] = strdoop(to);
2019         msg->cm_fields['M'] = strdoop(text);
2020
2021         CtdlSubmitMsg(msg, NULL, room);
2022         CtdlFreeMessage(msg);
2023         syslog(LOG_NOTICE, text);
2024 }
2025
2026
2027
2028 /*
2029  * Back end function used by make_message() and similar functions
2030  */
2031 char *CtdlReadMessageBody(char *terminator,     /* token signalling EOT */
2032                         size_t maxlen,          /* maximum message length */
2033                         char *exist             /* if non-null, append to it;
2034                                                    exist is ALWAYS freed  */
2035                         ) {
2036         char buf[SIZ];
2037         int linelen;
2038         size_t message_len = 0;
2039         size_t buffer_len = 0;
2040         char *ptr;
2041         char *m;
2042
2043         if (exist == NULL) {
2044                 m = mallok(4096);
2045                 m[0] = 0;
2046                 buffer_len = 4096;
2047                 message_len = 0;
2048         }
2049         else {
2050                 message_len = strlen(exist);
2051                 buffer_len = message_len + 4096;
2052                 m = reallok(exist, buffer_len);
2053                 if (m == NULL) {
2054                         phree(exist);
2055                         return m;
2056                 }
2057         }
2058
2059         /* flush the input if we have nowhere to store it */
2060         if (m == NULL) {
2061                 while ( (client_gets(buf)>0) && strcmp(buf, terminator) ) ;;
2062                 return(NULL);
2063         }
2064
2065         /* read in the lines of message text one by one */
2066         while ( (client_gets(buf)>0) && strcmp(buf, terminator) ) {
2067
2068                 /* strip trailing newline type stuff */
2069                 if (buf[strlen(buf)-1]==10) buf[strlen(buf)-1]=0;
2070                 if (buf[strlen(buf)-1]==13) buf[strlen(buf)-1]=0;
2071
2072                 linelen = strlen(buf);
2073
2074                 /* augment the buffer if we have to */
2075                 if ((message_len + linelen + 2) > buffer_len) {
2076                         lprintf(9, "realloking\n");
2077                         ptr = reallok(m, (buffer_len * 2) );
2078                         if (ptr == NULL) {      /* flush if can't allocate */
2079                                 while ( (client_gets(buf)>0) &&
2080                                         strcmp(buf, terminator)) ;;
2081                                 return(m);
2082                         } else {
2083                                 buffer_len = (buffer_len * 2);
2084                                 m = ptr;
2085                                 lprintf(9, "buffer_len is %ld\n", (long)buffer_len);
2086                         }
2087                 }
2088
2089                 /* Add the new line to the buffer.  NOTE: this loop must avoid
2090                  * using functions like strcat() and strlen() because they
2091                  * traverse the entire buffer upon every call, and doing that
2092                  * for a multi-megabyte message slows it down beyond usability.
2093                  */
2094                 strcpy(&m[message_len], buf);
2095                 m[message_len + linelen] = '\n';
2096                 m[message_len + linelen + 1] = 0;
2097                 message_len = message_len + linelen + 1;
2098
2099                 /* if we've hit the max msg length, flush the rest */
2100                 if (message_len >= maxlen) {
2101                         while ( (client_gets(buf)>0)
2102                                 && strcmp(buf, terminator)) ;;
2103                         return(m);
2104                 }
2105         }
2106         return(m);
2107 }
2108
2109
2110
2111
2112 /*
2113  * Build a binary message to be saved on disk.
2114  */
2115
2116 static struct CtdlMessage *make_message(
2117         struct usersupp *author,        /* author's usersupp structure */
2118         char *recipient,                /* NULL if it's not mail */
2119         char *room,                     /* room where it's going */
2120         int type,                       /* see MES_ types in header file */
2121         int format_type,                /* variformat, plain text, MIME... */
2122         char *fake_name,                /* who we're masquerading as */
2123         char *subject                   /* Subject (optional) */
2124 ) {
2125         char dest_node[SIZ];
2126         char buf[SIZ];
2127         struct CtdlMessage *msg;
2128
2129         msg = mallok(sizeof(struct CtdlMessage));
2130         memset(msg, 0, sizeof(struct CtdlMessage));
2131         msg->cm_magic = CTDLMESSAGE_MAGIC;
2132         msg->cm_anon_type = type;
2133         msg->cm_format_type = format_type;
2134
2135         /* Don't confuse the poor folks if it's not routed mail. */
2136         strcpy(dest_node, "");
2137
2138         striplt(recipient);
2139
2140         snprintf(buf, sizeof buf, "cit%ld", author->usernum);   /* Path */
2141         msg->cm_fields['P'] = strdoop(buf);
2142
2143         snprintf(buf, sizeof buf, "%ld", (long)time(NULL));     /* timestamp */
2144         msg->cm_fields['T'] = strdoop(buf);
2145
2146         if (fake_name[0])                                       /* author */
2147                 msg->cm_fields['A'] = strdoop(fake_name);
2148         else
2149                 msg->cm_fields['A'] = strdoop(author->fullname);
2150
2151         if (CC->quickroom.QRflags & QR_MAILBOX) {               /* room */
2152                 msg->cm_fields['O'] = strdoop(&CC->quickroom.QRname[11]);
2153         }
2154         else {
2155                 msg->cm_fields['O'] = strdoop(CC->quickroom.QRname);
2156         }
2157
2158         msg->cm_fields['N'] = strdoop(NODENAME);                /* nodename */
2159         msg->cm_fields['H'] = strdoop(HUMANNODE);               /* hnodename */
2160
2161         if (recipient[0] != 0) {
2162                 msg->cm_fields['R'] = strdoop(recipient);
2163         }
2164         if (dest_node[0] != 0) {
2165                 msg->cm_fields['D'] = strdoop(dest_node);
2166         }
2167
2168         if ( (author == &CC->usersupp) && (CC->cs_inet_email != NULL) ) {
2169                 msg->cm_fields['F'] = strdoop(CC->cs_inet_email);
2170         }
2171
2172         if (subject != NULL) {
2173                 striplt(subject);
2174                 if (strlen(subject) > 0) {
2175                         msg->cm_fields['U'] = strdoop(subject);
2176                 }
2177         }
2178
2179         msg->cm_fields['M'] = CtdlReadMessageBody("000",
2180                                                 config.c_maxmsglen, NULL);
2181
2182         return(msg);
2183 }
2184
2185
2186 /*
2187  * Check to see whether we have permission to post a message in the current
2188  * room.  Returns a *CITADEL ERROR CODE* and puts a message in errmsgbuf, or
2189  * returns 0 on success.
2190  */
2191 int CtdlDoIHavePermissionToPostInThisRoom(char *errmsgbuf, size_t n) {
2192
2193         if (!(CC->logged_in)) {
2194                 snprintf(errmsgbuf, n, "Not logged in.");
2195                 return (ERROR + NOT_LOGGED_IN);
2196         }
2197
2198         if ((CC->usersupp.axlevel < 2)
2199             && ((CC->quickroom.QRflags & QR_MAILBOX) == 0)) {
2200                 snprintf(errmsgbuf, n, "Need to be validated to enter "
2201                                 "(except in %s> to sysop)", MAILROOM);
2202                 return (ERROR + HIGHER_ACCESS_REQUIRED);
2203         }
2204
2205         if ((CC->usersupp.axlevel < 4)
2206            && (CC->quickroom.QRflags & QR_NETWORK)) {
2207                 snprintf(errmsgbuf, n, "Need net privileges to enter here.");
2208                 return (ERROR + HIGHER_ACCESS_REQUIRED);
2209         }
2210
2211         if ((CC->usersupp.axlevel < 6)
2212            && (CC->quickroom.QRflags & QR_READONLY)) {
2213                 snprintf(errmsgbuf, n, "Sorry, this is a read-only room.");
2214                 return (ERROR + HIGHER_ACCESS_REQUIRED);
2215         }
2216
2217         strcpy(errmsgbuf, "Ok");
2218         return(0);
2219 }
2220
2221
2222 /*
2223  * Validate recipients, count delivery types and errors, and handle aliasing
2224  * FIXME check for dupes!!!!!
2225  */
2226 struct recptypes *validate_recipients(char *recipients) {
2227         struct recptypes *ret;
2228         char this_recp[SIZ];
2229         char this_recp_cooked[SIZ];
2230         char append[SIZ];
2231         int num_recps;
2232         int i, j;
2233         int mailtype;
2234         int invalid;
2235         struct usersupp tempUS;
2236         struct quickroom tempQR;
2237
2238         /* Initialize */
2239         ret = (struct recptypes *) malloc(sizeof(struct recptypes));
2240         if (ret == NULL) return(NULL);
2241         memset(ret, 0, sizeof(struct recptypes));
2242
2243         ret->num_local = 0;
2244         ret->num_internet = 0;
2245         ret->num_ignet = 0;
2246         ret->num_error = 0;
2247         ret->num_room = 0;
2248
2249         if (recipients == NULL) {
2250                 num_recps = 0;
2251         }
2252         else if (strlen(recipients) == 0) {
2253                 num_recps = 0;
2254         }
2255         else {
2256                 /* Change all valid separator characters to commas */
2257                 for (i=0; i<strlen(recipients); ++i) {
2258                         if ((recipients[i] == ';') || (recipients[i] == '|')) {
2259                                 recipients[i] = ',';
2260                         }
2261                 }
2262
2263                 /* Count 'em up */
2264                 num_recps = num_tokens(recipients, ',');
2265         }
2266
2267         if (num_recps > 0) for (i=0; i<num_recps; ++i) {
2268                 extract_token(this_recp, recipients, i, ',');
2269                 striplt(this_recp);
2270                 lprintf(9, "Evaluating recipient #%d <%s>\n", i, this_recp);
2271                 mailtype = alias(this_recp);
2272                 mailtype = alias(this_recp);
2273                 mailtype = alias(this_recp);
2274                 for (j=0; j<=strlen(this_recp); ++j) {
2275                         if (this_recp[j]=='_') {
2276                                 this_recp_cooked[j] = ' ';
2277                         }
2278                         else {
2279                                 this_recp_cooked[j] = this_recp[j];
2280                         }
2281                 }
2282                 invalid = 0;
2283                 switch(mailtype) {
2284                         case MES_LOCAL:
2285                                 if (!strcasecmp(this_recp, "sysop")) {
2286                                         ++ret->num_room;
2287                                         strcpy(this_recp, AIDEROOM);
2288                                         if (strlen(ret->recp_room) > 0) {
2289                                                 strcat(ret->recp_room, "|");
2290                                         }
2291                                         strcat(ret->recp_room, this_recp);
2292                                 }
2293                                 else if (getuser(&tempUS, this_recp) == 0) {
2294                                         ++ret->num_local;
2295                                         strcpy(this_recp, tempUS.fullname);
2296                                         if (strlen(ret->recp_local) > 0) {
2297                                                 strcat(ret->recp_local, "|");
2298                                         }
2299                                         strcat(ret->recp_local, this_recp);
2300                                 }
2301                                 else if (getuser(&tempUS, this_recp_cooked) == 0) {
2302                                         ++ret->num_local;
2303                                         strcpy(this_recp, tempUS.fullname);
2304                                         if (strlen(ret->recp_local) > 0) {
2305                                                 strcat(ret->recp_local, "|");
2306                                         }
2307                                         strcat(ret->recp_local, this_recp);
2308                                 }
2309                                 else if ( (!strncasecmp(this_recp, "room_", 5))
2310                                       && (!getroom(&tempQR, &this_recp_cooked[5])) ) {
2311                                         ++ret->num_room;
2312                                         if (strlen(ret->recp_room) > 0) {
2313                                                 strcat(ret->recp_room, "|");
2314                                         }
2315                                         strcat(ret->recp_room, &this_recp_cooked[5]);
2316                                 }
2317                                 else {
2318                                         ++ret->num_error;
2319                                         invalid = 1;
2320                                 }
2321                                 break;
2322                         case MES_INTERNET:
2323                                 ++ret->num_internet;
2324                                 if (strlen(ret->recp_internet) > 0) {
2325                                         strcat(ret->recp_internet, "|");
2326                                 }
2327                                 strcat(ret->recp_internet, this_recp);
2328                                 break;
2329                         case MES_IGNET:
2330                                 ++ret->num_ignet;
2331                                 if (strlen(ret->recp_ignet) > 0) {
2332                                         strcat(ret->recp_ignet, "|");
2333                                 }
2334                                 strcat(ret->recp_ignet, this_recp);
2335                                 break;
2336                         case MES_ERROR:
2337                                 ++ret->num_error;
2338                                 invalid = 1;
2339                                 break;
2340                 }
2341                 if (invalid) {
2342                         if (strlen(ret->errormsg) == 0) {
2343                                 snprintf(append, sizeof append,
2344                                          "Invalid recipient: %s",
2345                                          this_recp);
2346                         }
2347                         else {
2348                                 snprintf(append, sizeof append,
2349                                          ", %s", this_recp);
2350                         }
2351                         if ( (strlen(ret->errormsg) + strlen(append)) < SIZ) {
2352                                 strcat(ret->errormsg, append);
2353                         }
2354                 }
2355                 else {
2356                         if (strlen(ret->display_recp) == 0) {
2357                                 strcpy(append, this_recp);
2358                         }
2359                         else {
2360                                 snprintf(append, sizeof append, ", %s",
2361                                          this_recp);
2362                         }
2363                         if ( (strlen(ret->display_recp)+strlen(append)) < SIZ) {
2364                                 strcat(ret->display_recp, append);
2365                         }
2366                 }
2367         }
2368
2369         if ((ret->num_local + ret->num_internet + ret->num_ignet +
2370            ret->num_room + ret->num_error) == 0) {
2371                 ++ret->num_error;
2372                 strcpy(ret->errormsg, "No recipients specified.");
2373         }
2374
2375         lprintf(9, "validate_recipients()\n");
2376         lprintf(9, " local: %d <%s>\n", ret->num_local, ret->recp_local);
2377         lprintf(9, "  room: %d <%s>\n", ret->num_room, ret->recp_room);
2378         lprintf(9, "  inet: %d <%s>\n", ret->num_internet, ret->recp_internet);
2379         lprintf(9, " ignet: %d <%s>\n", ret->num_ignet, ret->recp_ignet);
2380         lprintf(9, " error: %d <%s>\n", ret->num_error, ret->errormsg);
2381
2382         return(ret);
2383 }
2384
2385
2386
2387 /*
2388  * message entry  -  mode 0 (normal)
2389  */
2390 void cmd_ent0(char *entargs)
2391 {
2392         int post = 0;
2393         char recp[SIZ];
2394         char masquerade_as[SIZ];
2395         int anon_flag = 0;
2396         int format_type = 0;
2397         char newusername[SIZ];
2398         struct CtdlMessage *msg;
2399         int anonymous = 0;
2400         char errmsg[SIZ];
2401         int err = 0;
2402         struct recptypes *valid = NULL;
2403         char subject[SIZ];
2404
2405         post = extract_int(entargs, 0);
2406         extract(recp, entargs, 1);
2407         anon_flag = extract_int(entargs, 2);
2408         format_type = extract_int(entargs, 3);
2409         extract(subject, entargs, 4);
2410
2411         /* first check to make sure the request is valid. */
2412
2413         err = CtdlDoIHavePermissionToPostInThisRoom(errmsg, sizeof errmsg);
2414         if (err) {
2415                 cprintf("%d %s\n", err, errmsg);
2416                 return;
2417         }
2418
2419         /* Check some other permission type things. */
2420
2421         if (post == 2) {
2422                 if (CC->usersupp.axlevel < 6) {
2423                         cprintf("%d You don't have permission to masquerade.\n",
2424                                 ERROR + HIGHER_ACCESS_REQUIRED);
2425                         return;
2426                 }
2427                 extract(newusername, entargs, 4);
2428                 memset(CC->fake_postname, 0, sizeof(CC->fake_postname) );
2429                 safestrncpy(CC->fake_postname, newusername,
2430                         sizeof(CC->fake_postname) );
2431                 cprintf("%d ok\n", CIT_OK);
2432                 return;
2433         }
2434         CC->cs_flags |= CS_POSTING;
2435
2436         /* In the Mail> room we have to behave a little differently --
2437          * make sure the user has specified at least one recipient.  Then
2438          * validate the recipient(s).
2439          */
2440         if ( (CC->quickroom.QRflags & QR_MAILBOX)
2441            && (!strcasecmp(&CC->quickroom.QRname[11], MAILROOM)) ) {
2442
2443                 if (CC->usersupp.axlevel < 2) {
2444                         strcpy(recp, "sysop");
2445                 }
2446
2447                 valid = validate_recipients(recp);
2448                 if (valid->num_error > 0) {
2449                         cprintf("%d %s\n",
2450                                 ERROR + NO_SUCH_USER, valid->errormsg);
2451                         phree(valid);
2452                         return;
2453                 }
2454
2455                 if ( ( (valid->num_internet + valid->num_ignet) > 0)
2456                    && (CC->usersupp.axlevel < 4) ) {
2457                         cprintf("%d Higher access required for network mail.\n",
2458                                 ERROR + HIGHER_ACCESS_REQUIRED);
2459                         phree(valid);
2460                         return;
2461                 }
2462         
2463                 if ((RESTRICT_INTERNET == 1) && (valid->num_internet > 0)
2464                     && ((CC->usersupp.flags & US_INTERNET) == 0)
2465                     && (!CC->internal_pgm)) {
2466                         cprintf("%d You don't have access to Internet mail.\n",
2467                                 ERROR + HIGHER_ACCESS_REQUIRED);
2468                         phree(valid);
2469                         return;
2470                 }
2471
2472         }
2473
2474         /* Is this a room which has anonymous-only or anonymous-option? */
2475         anonymous = MES_NORMAL;
2476         if (CC->quickroom.QRflags & QR_ANONONLY) {
2477                 anonymous = MES_ANONONLY;
2478         }
2479         if (CC->quickroom.QRflags & QR_ANONOPT) {
2480                 if (anon_flag == 1) {   /* only if the user requested it */
2481                         anonymous = MES_ANONOPT;
2482                 }
2483         }
2484
2485         if ((CC->quickroom.QRflags & QR_MAILBOX) == 0) {
2486                 recp[0] = 0;
2487         }
2488
2489         /* If we're only checking the validity of the request, return
2490          * success without creating the message.
2491          */
2492         if (post == 0) {
2493                 cprintf("%d %s\n", CIT_OK,
2494                         ((valid != NULL) ? valid->display_recp : "") );
2495                 phree(valid);
2496                 return;
2497         }
2498
2499         /* Handle author masquerading */
2500         if (CC->fake_postname[0]) {
2501                 strcpy(masquerade_as, CC->fake_postname);
2502         }
2503         else if (CC->fake_username[0]) {
2504                 strcpy(masquerade_as, CC->fake_username);
2505         }
2506         else {
2507                 strcpy(masquerade_as, "");
2508         }
2509
2510         /* Read in the message from the client. */
2511         cprintf("%d send message\n", SEND_LISTING);
2512         msg = make_message(&CC->usersupp, recp,
2513                 CC->quickroom.QRname, anonymous, format_type,
2514                 masquerade_as, subject);
2515
2516         if (msg != NULL) {
2517                 CtdlSubmitMsg(msg, valid, "");
2518                 CtdlFreeMessage(msg);
2519         }
2520         CC->fake_postname[0] = '\0';
2521         phree(valid);
2522         return;
2523 }
2524
2525
2526
2527 /*
2528  * API function to delete messages which match a set of criteria
2529  * (returns the actual number of messages deleted)
2530  */
2531 int CtdlDeleteMessages(char *room_name,         /* which room */
2532                        long dmsgnum,            /* or "0" for any */
2533                        char *content_type       /* or "" for any */
2534 )
2535 {
2536
2537         struct quickroom qrbuf;
2538         struct cdbdata *cdbfr;
2539         long *msglist = NULL;
2540         long *dellist = NULL;
2541         int num_msgs = 0;
2542         int i;
2543         int num_deleted = 0;
2544         int delete_this;
2545         struct MetaData smi;
2546
2547         lprintf(9, "CtdlDeleteMessages(%s, %ld, %s)\n",
2548                 room_name, dmsgnum, content_type);
2549
2550         /* get room record, obtaining a lock... */
2551         if (lgetroom(&qrbuf, room_name) != 0) {
2552                 lprintf(7, "CtdlDeleteMessages(): Room <%s> not found\n",
2553                         room_name);
2554                 return (0);     /* room not found */
2555         }
2556         cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long));
2557
2558         if (cdbfr != NULL) {
2559                 msglist = mallok(cdbfr->len);
2560                 dellist = mallok(cdbfr->len);
2561                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
2562                 num_msgs = cdbfr->len / sizeof(long);
2563                 cdb_free(cdbfr);
2564         }
2565         if (num_msgs > 0) {
2566                 for (i = 0; i < num_msgs; ++i) {
2567                         delete_this = 0x00;
2568
2569                         /* Set/clear a bit for each criterion */
2570
2571                         if ((dmsgnum == 0L) || (msglist[i] == dmsgnum)) {
2572                                 delete_this |= 0x01;
2573                         }
2574                         if (strlen(content_type) == 0) {
2575                                 delete_this |= 0x02;
2576                         } else {
2577                                 GetMetaData(&smi, msglist[i]);
2578                                 if (!strcasecmp(smi.meta_content_type,
2579                                                 content_type)) {
2580                                         delete_this |= 0x02;
2581                                 }
2582                         }
2583
2584                         /* Delete message only if all bits are set */
2585                         if (delete_this == 0x03) {
2586                                 dellist[num_deleted++] = msglist[i];
2587                                 msglist[i] = 0L;
2588                         }
2589                 }
2590
2591                 num_msgs = sort_msglist(msglist, num_msgs);
2592                 cdb_store(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long),
2593                           msglist, (num_msgs * sizeof(long)));
2594
2595                 qrbuf.QRhighest = msglist[num_msgs - 1];
2596         }
2597         lputroom(&qrbuf);
2598
2599         /* Go through the messages we pulled out of the index, and decrement
2600          * their reference counts by 1.  If this is the only room the message
2601          * was in, the reference count will reach zero and the message will
2602          * automatically be deleted from the database.  We do this in a
2603          * separate pass because there might be plug-in hooks getting called,
2604          * and we don't want that happening during an S_QUICKROOM critical
2605          * section.
2606          */
2607         if (num_deleted) for (i=0; i<num_deleted; ++i) {
2608                 PerformDeleteHooks(qrbuf.QRname, dellist[i]);
2609                 AdjRefCount(dellist[i], -1);
2610         }
2611
2612         /* Now free the memory we used, and go away. */
2613         if (msglist != NULL) phree(msglist);
2614         if (dellist != NULL) phree(dellist);
2615         lprintf(9, "%d message(s) deleted.\n", num_deleted);
2616         return (num_deleted);
2617 }
2618
2619
2620
2621 /*
2622  * Check whether the current user has permission to delete messages from
2623  * the current room (returns 1 for yes, 0 for no)
2624  */
2625 int CtdlDoIHavePermissionToDeleteMessagesFromThisRoom(void) {
2626         getuser(&CC->usersupp, CC->curr_user);
2627         if ((CC->usersupp.axlevel < 6)
2628             && (CC->usersupp.usernum != CC->quickroom.QRroomaide)
2629             && ((CC->quickroom.QRflags & QR_MAILBOX) == 0)
2630             && (!(CC->internal_pgm))) {
2631                 return(0);
2632         }
2633         return(1);
2634 }
2635
2636
2637
2638 /*
2639  * Delete message from current room
2640  */
2641 void cmd_dele(char *delstr)
2642 {
2643         long delnum;
2644         int num_deleted;
2645
2646         if (CtdlDoIHavePermissionToDeleteMessagesFromThisRoom() == 0) {
2647                 cprintf("%d Higher access required.\n",
2648                         ERROR + HIGHER_ACCESS_REQUIRED);
2649                 return;
2650         }
2651         delnum = extract_long(delstr, 0);
2652
2653         num_deleted = CtdlDeleteMessages(CC->quickroom.QRname, delnum, "");
2654
2655         if (num_deleted) {
2656                 cprintf("%d %d message%s deleted.\n", CIT_OK,
2657                         num_deleted, ((num_deleted != 1) ? "s" : ""));
2658         } else {
2659                 cprintf("%d Message %ld not found.\n", ERROR, delnum);
2660         }
2661 }
2662
2663
2664 /*
2665  * Back end API function for moves and deletes
2666  */
2667 int CtdlCopyMsgToRoom(long msgnum, char *dest) {
2668         int err;
2669
2670         err = CtdlSaveMsgPointerInRoom(dest, msgnum,
2671                 (SM_VERIFY_GOODNESS | SM_DO_REPL_CHECK) );
2672         if (err != 0) return(err);
2673
2674         return(0);
2675 }
2676
2677
2678
2679 /*
2680  * move or copy a message to another room
2681  */
2682 void cmd_move(char *args)
2683 {
2684         long num;
2685         char targ[SIZ];
2686         struct quickroom qtemp;
2687         int err;
2688         int is_copy = 0;
2689
2690         num = extract_long(args, 0);
2691         extract(targ, args, 1);
2692         targ[ROOMNAMELEN - 1] = 0;
2693         is_copy = extract_int(args, 2);
2694
2695         if (getroom(&qtemp, targ) != 0) {
2696                 cprintf("%d '%s' does not exist.\n", ERROR, targ);
2697                 return;
2698         }
2699
2700         getuser(&CC->usersupp, CC->curr_user);
2701         /* Aides can move/copy */
2702         if ((CC->usersupp.axlevel < 6)
2703             /* Roomaides can move/copy */
2704             && (CC->usersupp.usernum != CC->quickroom.QRroomaide)
2705             /* Permit move/copy to/from personal rooms */
2706             && (!((CC->quickroom.QRflags & QR_MAILBOX)
2707                             && (qtemp.QRflags & QR_MAILBOX)))
2708             /* Permit only copy from public to personal room */
2709             && (!(is_copy && !(CC->quickroom.QRflags & QR_MAILBOX)
2710                             && (qtemp.QRflags & QR_MAILBOX)))) {
2711                 cprintf("%d Higher access required.\n",
2712                         ERROR + HIGHER_ACCESS_REQUIRED);
2713                 return;
2714         }
2715
2716         err = CtdlCopyMsgToRoom(num, targ);
2717         if (err != 0) {
2718                 cprintf("%d Cannot store message in %s: error %d\n",
2719                         err, targ, err);
2720                 return;
2721         }
2722
2723         /* Now delete the message from the source room,
2724          * if this is a 'move' rather than a 'copy' operation.
2725          */
2726         if (is_copy == 0) {
2727                 CtdlDeleteMessages(CC->quickroom.QRname, num, "");
2728         }
2729
2730         cprintf("%d Message %s.\n", CIT_OK, (is_copy ? "copied" : "moved") );
2731 }
2732
2733
2734
2735 /*
2736  * GetMetaData()  -  Get the supplementary record for a message
2737  */
2738 void GetMetaData(struct MetaData *smibuf, long msgnum)
2739 {
2740
2741         struct cdbdata *cdbsmi;
2742         long TheIndex;
2743
2744         memset(smibuf, 0, sizeof(struct MetaData));
2745         smibuf->meta_msgnum = msgnum;
2746         smibuf->meta_refcount = 1;      /* Default reference count is 1 */
2747
2748         /* Use the negative of the message number for its supp record index */
2749         TheIndex = (0L - msgnum);
2750
2751         cdbsmi = cdb_fetch(CDB_MSGMAIN, &TheIndex, sizeof(long));
2752         if (cdbsmi == NULL) {
2753                 return;         /* record not found; go with defaults */
2754         }
2755         memcpy(smibuf, cdbsmi->ptr,
2756                ((cdbsmi->len > sizeof(struct MetaData)) ?
2757                 sizeof(struct MetaData) : cdbsmi->len));
2758         cdb_free(cdbsmi);
2759         return;
2760 }
2761
2762
2763 /*
2764  * PutMetaData()  -  (re)write supplementary record for a message
2765  */
2766 void PutMetaData(struct MetaData *smibuf)
2767 {
2768         long TheIndex;
2769
2770         /* Use the negative of the message number for the metadata db index */
2771         TheIndex = (0L - smibuf->meta_msgnum);
2772
2773         lprintf(9, "PutMetaData(%ld) - ref count is %d\n",
2774                 smibuf->meta_msgnum, smibuf->meta_refcount);
2775
2776         cdb_store(CDB_MSGMAIN,
2777                   &TheIndex, sizeof(long),
2778                   smibuf, sizeof(struct MetaData));
2779
2780 }
2781
2782 /*
2783  * AdjRefCount  -  change the reference count for a message;
2784  *                 delete the message if it reaches zero
2785  */
2786 void AdjRefCount(long msgnum, int incr)
2787 {
2788
2789         struct MetaData smi;
2790         long delnum;
2791
2792         /* This is a *tight* critical section; please keep it that way, as
2793          * it may get called while nested in other critical sections.  
2794          * Complicating this any further will surely cause deadlock!
2795          */
2796         begin_critical_section(S_SUPPMSGMAIN);
2797         GetMetaData(&smi, msgnum);
2798         lprintf(9, "Ref count for message <%ld> before write is <%d>\n",
2799                 msgnum, smi.meta_refcount);
2800         smi.meta_refcount += incr;
2801         PutMetaData(&smi);
2802         end_critical_section(S_SUPPMSGMAIN);
2803         lprintf(9, "Ref count for message <%ld> after write is <%d>\n",
2804                 msgnum, smi.meta_refcount);
2805
2806         /* If the reference count is now zero, delete the message
2807          * (and its supplementary record as well).
2808          */
2809         if (smi.meta_refcount == 0) {
2810                 lprintf(9, "Deleting message <%ld>\n", msgnum);
2811                 delnum = msgnum;
2812                 cdb_delete(CDB_MSGMAIN, &delnum, sizeof(long));
2813
2814                 /* We have to delete the metadata record too! */
2815                 delnum = (0L - msgnum);
2816                 cdb_delete(CDB_MSGMAIN, &delnum, sizeof(long));
2817         }
2818 }
2819
2820 /*
2821  * Write a generic object to this room
2822  *
2823  * Note: this could be much more efficient.  Right now we use two temporary
2824  * files, and still pull the message into memory as with all others.
2825  */
2826 void CtdlWriteObject(char *req_room,            /* Room to stuff it in */
2827                         char *content_type,     /* MIME type of this object */
2828                         char *tempfilename,     /* Where to fetch it from */
2829                         struct usersupp *is_mailbox,    /* Mailbox room? */
2830                         int is_binary,          /* Is encoding necessary? */
2831                         int is_unique,          /* Del others of this type? */
2832                         unsigned int flags      /* Internal save flags */
2833                         )
2834 {
2835
2836         FILE *fp, *tempfp;
2837         char filename[PATH_MAX];
2838         char cmdbuf[SIZ];
2839         char ch;
2840         struct quickroom qrbuf;
2841         char roomname[ROOMNAMELEN];
2842         struct CtdlMessage *msg;
2843         size_t len;
2844
2845         if (is_mailbox != NULL)
2846                 MailboxName(roomname, sizeof roomname, is_mailbox, req_room);
2847         else
2848                 safestrncpy(roomname, req_room, sizeof(roomname));
2849         lprintf(9, "CtdlWriteObject() to <%s> (flags=%d)\n", roomname, flags);
2850
2851         strcpy(filename, tmpnam(NULL));
2852         fp = fopen(filename, "w");
2853         if (fp == NULL)
2854                 return;
2855
2856         tempfp = fopen(tempfilename, "r");
2857         if (tempfp == NULL) {
2858                 fclose(fp);
2859                 unlink(filename);
2860                 return;
2861         }
2862
2863         fprintf(fp, "Content-type: %s\n", content_type);
2864         lprintf(9, "Content-type: %s\n", content_type);
2865
2866         if (is_binary == 0) {
2867                 fprintf(fp, "Content-transfer-encoding: 7bit\n\n");
2868                 while (ch = getc(tempfp), ch > 0)
2869                         putc(ch, fp);
2870                 fclose(tempfp);
2871                 putc(0, fp);
2872                 fclose(fp);
2873         } else {
2874                 fprintf(fp, "Content-transfer-encoding: base64\n\n");
2875                 fclose(tempfp);
2876                 fclose(fp);
2877                 snprintf(cmdbuf, sizeof cmdbuf, "./base64 -e <%s >>%s",
2878                         tempfilename, filename);
2879                 system(cmdbuf);
2880         }
2881
2882         lprintf(9, "Allocating\n");
2883         msg = mallok(sizeof(struct CtdlMessage));
2884         memset(msg, 0, sizeof(struct CtdlMessage));
2885         msg->cm_magic = CTDLMESSAGE_MAGIC;
2886         msg->cm_anon_type = MES_NORMAL;
2887         msg->cm_format_type = 4;
2888         msg->cm_fields['A'] = strdoop(CC->usersupp.fullname);
2889         msg->cm_fields['O'] = strdoop(req_room);
2890         msg->cm_fields['N'] = strdoop(config.c_nodename);
2891         msg->cm_fields['H'] = strdoop(config.c_humannode);
2892         msg->cm_flags = flags;
2893         
2894         lprintf(9, "Loading\n");
2895         fp = fopen(filename, "rb");
2896         fseek(fp, 0L, SEEK_END);
2897         len = ftell(fp);
2898         rewind(fp);
2899         msg->cm_fields['M'] = mallok(len);
2900         fread(msg->cm_fields['M'], len, 1, fp);
2901         fclose(fp);
2902         unlink(filename);
2903
2904         /* Create the requested room if we have to. */
2905         if (getroom(&qrbuf, roomname) != 0) {
2906                 create_room(roomname, 
2907                         ( (is_mailbox != NULL) ? 5 : 3 ),
2908                         "", 0, 1);
2909         }
2910         /* If the caller specified this object as unique, delete all
2911          * other objects of this type that are currently in the room.
2912          */
2913         if (is_unique) {
2914                 lprintf(9, "Deleted %d other msgs of this type\n",
2915                         CtdlDeleteMessages(roomname, 0L, content_type));
2916         }
2917         /* Now write the data */
2918         CtdlSubmitMsg(msg, NULL, roomname);
2919         CtdlFreeMessage(msg);
2920 }
2921
2922
2923
2924
2925
2926
2927 void CtdlGetSysConfigBackend(long msgnum, void *userdata) {
2928         config_msgnum = msgnum;
2929 }
2930
2931
2932 char *CtdlGetSysConfig(char *sysconfname) {
2933         char hold_rm[ROOMNAMELEN];
2934         long msgnum;
2935         char *conf;
2936         struct CtdlMessage *msg;
2937         char buf[SIZ];
2938         
2939         strcpy(hold_rm, CC->quickroom.QRname);
2940         if (getroom(&CC->quickroom, SYSCONFIGROOM) != 0) {
2941                 getroom(&CC->quickroom, hold_rm);
2942                 return NULL;
2943         }
2944
2945
2946         /* We want the last (and probably only) config in this room */
2947         begin_critical_section(S_CONFIG);
2948         config_msgnum = (-1L);
2949         CtdlForEachMessage(MSGS_LAST, 1, (-127), sysconfname, NULL,
2950                 CtdlGetSysConfigBackend, NULL);
2951         msgnum = config_msgnum;
2952         end_critical_section(S_CONFIG);
2953
2954         if (msgnum < 0L) {
2955                 conf = NULL;
2956         }
2957         else {
2958                 msg = CtdlFetchMessage(msgnum);
2959                 if (msg != NULL) {
2960                         conf = strdoop(msg->cm_fields['M']);
2961                         CtdlFreeMessage(msg);
2962                 }
2963                 else {
2964                         conf = NULL;
2965                 }
2966         }
2967
2968         getroom(&CC->quickroom, hold_rm);
2969
2970         if (conf != NULL) do {
2971                 extract_token(buf, conf, 0, '\n');
2972                 strcpy(conf, &conf[strlen(buf)+1]);
2973         } while ( (strlen(conf)>0) && (strlen(buf)>0) );
2974
2975         return(conf);
2976 }
2977
2978 void CtdlPutSysConfig(char *sysconfname, char *sysconfdata) {
2979         char temp[PATH_MAX];
2980         FILE *fp;
2981
2982         strcpy(temp, tmpnam(NULL));
2983
2984         fp = fopen(temp, "w");
2985         if (fp == NULL) return;
2986         fprintf(fp, "%s", sysconfdata);
2987         fclose(fp);
2988
2989         /* this handy API function does all the work for us */
2990         CtdlWriteObject(SYSCONFIGROOM, sysconfname, temp, NULL, 0, 1, 0);
2991         unlink(temp);
2992 }