]> code.citadel.org Git - citadel.git/blob - citadel/msgbase.c
* Got the new replicator working. Now to move vCard to it...
[citadel.git] / citadel / msgbase.c
1 /* $Id$ */
2 #include "sysdep.h"
3 #include <stdlib.h>
4 #include <unistd.h>
5 #include <stdio.h>
6 #include <fcntl.h>
7 #include <time.h>
8 #include <ctype.h>
9 #include <string.h>
10 #include <syslog.h>
11 #ifdef HAVE_PTHREAD_H
12 #include <pthread.h>
13 #endif
14 #include <limits.h>
15 #include "citadel.h"
16 #include "server.h"
17 #include <errno.h>
18 #include <sys/stat.h>
19 #include "database.h"
20 #include "msgbase.h"
21 #include "support.h"
22 #include "sysdep_decls.h"
23 #include "citserver.h"
24 #include "room_ops.h"
25 #include "user_ops.h"
26 #include "file_ops.h"
27 #include "control.h"
28 #include "dynloader.h"
29 #include "tools.h"
30 #include "mime_parser.h"
31 #include "html.h"
32
33 #define desired_section ((char *)CtdlGetUserData(SYM_DESIRED_SECTION))
34 #define ma ((struct ma_info *)CtdlGetUserData(SYM_MA_INFO))
35 #define msg_repl ((struct repl *)CtdlGetUserData(SYM_REPL))
36
37 extern struct config config;
38
39 char *msgkeys[] = {
40         "", "", "", "", "", "", "", "", 
41         "", "", "", "", "", "", "", "", 
42         "", "", "", "", "", "", "", "", 
43         "", "", "", "", "", "", "", "", 
44         "", "", "", "", "", "", "", "", 
45         "", "", "", "", "", "", "", "", 
46         "", "", "", "", "", "", "", "", 
47         "", "", "", "", "", "", "", "", 
48         "", 
49         "from",
50         "", "", "",
51         "exti",
52         "", "", 
53         "hnod",
54         "msgn",
55         "", "", "",
56         "text",
57         "node",
58         "room",
59         "path",
60         "",
61         "rcpt",
62         "",
63         "time",
64         "subj",
65         "",
66         "",
67         "",
68         "",
69         ""
70 };
71
72 /*
73  * This function is self explanatory.
74  * (What can I say, I'm in a weird mood today...)
75  */
76 void remove_any_whitespace_to_the_left_or_right_of_at_symbol(char *name)
77 {
78         int i;
79
80         for (i = 0; i < strlen(name); ++i)
81                 if (name[i] == '@') {
82                         if (i > 0)
83                                 if (isspace(name[i - 1])) {
84                                         strcpy(&name[i - 1], &name[i]);
85                                         i = 0;
86                                 }
87                         while (isspace(name[i + 1])) {
88                                 strcpy(&name[i + 1], &name[i + 2]);
89                         }
90                 }
91 }
92
93
94 /*
95  * Aliasing for network mail.
96  * (Error messages have been commented out, because this is a server.)
97  */
98 int alias(char *name)
99 {                               /* process alias and routing info for mail */
100         FILE *fp;
101         int a, b;
102         char aaa[300], bbb[300];
103
104         lprintf(9, "alias() called for <%s>\n", name);
105
106         remove_any_whitespace_to_the_left_or_right_of_at_symbol(name);
107
108         fp = fopen("network/mail.aliases", "r");
109         if (fp == NULL)
110                 fp = fopen("/dev/null", "r");
111         if (fp == NULL)
112                 return (MES_ERROR);
113         strcpy(aaa, "");
114         strcpy(bbb, "");
115         while (fgets(aaa, sizeof aaa, fp) != NULL) {
116                 while (isspace(name[0]))
117                         strcpy(name, &name[1]);
118                 aaa[strlen(aaa) - 1] = 0;
119                 strcpy(bbb, "");
120                 for (a = 0; a < strlen(aaa); ++a) {
121                         if (aaa[a] == ',') {
122                                 strcpy(bbb, &aaa[a + 1]);
123                                 aaa[a] = 0;
124                         }
125                 }
126                 if (!strcasecmp(name, aaa))
127                         strcpy(name, bbb);
128         }
129         fclose(fp);
130         lprintf(7, "Mail is being forwarded to %s\n", name);
131
132         /* determine local or remote type, see citadel.h */
133         for (a = 0; a < strlen(name); ++a)
134                 if (name[a] == '!')
135                         return (MES_INTERNET);
136         for (a = 0; a < strlen(name); ++a)
137                 if (name[a] == '@')
138                         for (b = a; b < strlen(name); ++b)
139                                 if (name[b] == '.')
140                                         return (MES_INTERNET);
141         b = 0;
142         for (a = 0; a < strlen(name); ++a)
143                 if (name[a] == '@')
144                         ++b;
145         if (b > 1) {
146                 lprintf(7, "Too many @'s in address\n");
147                 return (MES_ERROR);
148         }
149         if (b == 1) {
150                 for (a = 0; a < strlen(name); ++a)
151                         if (name[a] == '@')
152                                 strcpy(bbb, &name[a + 1]);
153                 while (bbb[0] == 32)
154                         strcpy(bbb, &bbb[1]);
155                 fp = fopen("network/mail.sysinfo", "r");
156                 if (fp == NULL)
157                         return (MES_ERROR);
158               GETSN:do {
159                         a = getstring(fp, aaa);
160                 } while ((a >= 0) && (strcasecmp(aaa, bbb)));
161                 a = getstring(fp, aaa);
162                 if (!strncmp(aaa, "use ", 4)) {
163                         strcpy(bbb, &aaa[4]);
164                         fseek(fp, 0L, 0);
165                         goto GETSN;
166                 }
167                 fclose(fp);
168                 if (!strncmp(aaa, "uum", 3)) {
169                         strcpy(bbb, name);
170                         for (a = 0; a < strlen(bbb); ++a) {
171                                 if (bbb[a] == '@')
172                                         bbb[a] = 0;
173                                 if (bbb[a] == ' ')
174                                         bbb[a] = '_';
175                         }
176                         while (bbb[strlen(bbb) - 1] == '_')
177                                 bbb[strlen(bbb) - 1] = 0;
178                         sprintf(name, &aaa[4], bbb);
179                         return (MES_INTERNET);
180                 }
181                 if (!strncmp(aaa, "bin", 3)) {
182                         strcpy(aaa, name);
183                         strcpy(bbb, name);
184                         while (aaa[strlen(aaa) - 1] != '@')
185                                 aaa[strlen(aaa) - 1] = 0;
186                         aaa[strlen(aaa) - 1] = 0;
187                         while (aaa[strlen(aaa) - 1] == ' ')
188                                 aaa[strlen(aaa) - 1] = 0;
189                         while (bbb[0] != '@')
190                                 strcpy(bbb, &bbb[1]);
191                         strcpy(bbb, &bbb[1]);
192                         while (bbb[0] == ' ')
193                                 strcpy(bbb, &bbb[1]);
194                         sprintf(name, "%s @%s", aaa, bbb);
195                         return (MES_BINARY);
196                 }
197                 return (MES_ERROR);
198         }
199         return (MES_LOCAL);
200 }
201
202
203 void get_mm(void)
204 {
205         FILE *fp;
206
207         fp = fopen("citadel.control", "r");
208         fread((char *) &CitControl, sizeof(struct CitControl), 1, fp);
209         fclose(fp);
210 }
211
212
213
214 void simple_listing(long msgnum)
215 {
216         cprintf("%ld\n", msgnum);
217 }
218
219
220
221 /* Determine if a given message matches the fields in a message template.
222  * Return 0 for a successful match.
223  */
224 int CtdlMsgCmp(struct CtdlMessage *msg, struct CtdlMessage *template) {
225         int i;
226
227         /* If there aren't any fields in the template, all messages will
228          * match.
229          */
230         if (template == NULL) return(0);
231
232         /* Null messages are bogus. */
233         if (msg == NULL) return(1);
234
235         for (i='A'; i<='Z'; ++i) {
236                 if (template->cm_fields[i] != NULL) {
237                         if (msg->cm_fields[i] == NULL) {
238                                 return 1;
239                         }
240                         if (strcasecmp(msg->cm_fields[i],
241                                 template->cm_fields[i])) return 1;
242                 }
243         }
244
245         /* All compares succeeded: we have a match! */
246         return 0;
247 }
248
249
250
251
252 /*
253  * API function to perform an operation for each qualifying message in the
254  * current room.
255  */
256 void CtdlForEachMessage(int mode, long ref,
257                         char *content_type,
258                         struct CtdlMessage *compare,
259                         void (*CallBack) (long msgnum))
260 {
261
262         int a;
263         struct visit vbuf;
264         struct cdbdata *cdbfr;
265         long *msglist = NULL;
266         int num_msgs = 0;
267         long thismsg;
268         struct SuppMsgInfo smi;
269         struct CtdlMessage *msg;
270
271         /* Learn about the user and room in question */
272         get_mm();
273         getuser(&CC->usersupp, CC->curr_user);
274         CtdlGetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
275
276         /* Load the message list */
277         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->quickroom.QRnumber, sizeof(long));
278         if (cdbfr != NULL) {
279                 msglist = mallok(cdbfr->len);
280                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
281                 num_msgs = cdbfr->len / sizeof(long);
282                 cdb_free(cdbfr);
283         } else {
284                 return;         /* No messages at all?  No further action. */
285         }
286
287
288         /* If the caller is looking for a specific MIME type, then filter
289          * out all messages which are not of the type requested.
290          */
291         if (num_msgs > 0)
292                 if (content_type != NULL)
293                         if (strlen(content_type) > 0)
294                                 for (a = 0; a < num_msgs; ++a) {
295                                         GetSuppMsgInfo(&smi, msglist[a]);
296                                         if (strcasecmp(smi.smi_content_type, content_type)) {
297                                                 msglist[a] = 0L;
298                                         }
299                                 }
300
301         num_msgs = sort_msglist(msglist, num_msgs);
302
303         /* If a template was supplied, filter out the messages which
304          * don't match.  (This could induce some delays!)
305          */
306         if (num_msgs > 0) {
307                 if (compare != NULL) {
308                         for (a = 0; a < num_msgs; ++a) {
309                                 msg = CtdlFetchMessage(msglist[a]);
310                                 if (msg != NULL) {
311                                         if (CtdlMsgCmp(msg, compare)) {
312                                                 msglist[a] = 0L;
313                                         }
314                                         CtdlFreeMessage(msg);
315                                 }
316                         }
317                 }
318         }
319
320         
321         /*
322          * Now iterate through the message list, according to the
323          * criteria supplied by the caller.
324          */
325         if (num_msgs > 0)
326                 for (a = 0; a < num_msgs; ++a) {
327                         thismsg = msglist[a];
328                         if ((thismsg > 0)
329                             && (
330
331                                        (mode == MSGS_ALL)
332                                        || ((mode == MSGS_OLD) && (thismsg <= vbuf.v_lastseen))
333                                        || ((mode == MSGS_NEW) && (thismsg > vbuf.v_lastseen))
334                                        || ((mode == MSGS_NEW) && (thismsg >= vbuf.v_lastseen)
335                                     && (CC->usersupp.flags & US_LASTOLD))
336                                        || ((mode == MSGS_LAST) && (a >= (num_msgs - ref)))
337                                    || ((mode == MSGS_FIRST) && (a < ref))
338                                 || ((mode == MSGS_GT) && (thismsg > ref))
339                             )
340                             ) {
341                                 CallBack(thismsg);
342                         }
343                 }
344         phree(msglist);         /* Clean up */
345 }
346
347
348
349 /*
350  * cmd_msgs()  -  get list of message #'s in this room
351  *                implements the MSGS server command using CtdlForEachMessage()
352  */
353 void cmd_msgs(char *cmdbuf)
354 {
355         int mode = 0;
356         char which[256];
357         char buf[256];
358         char tfield[256];
359         char tvalue[256];
360         int cm_ref = 0;
361         int i;
362         int with_template = 0;
363         struct CtdlMessage *template = NULL;
364
365         extract(which, cmdbuf, 0);
366         cm_ref = extract_int(cmdbuf, 1);
367         with_template = extract_int(cmdbuf, 2);
368
369         mode = MSGS_ALL;
370         strcat(which, "   ");
371         if (!strncasecmp(which, "OLD", 3))
372                 mode = MSGS_OLD;
373         else if (!strncasecmp(which, "NEW", 3))
374                 mode = MSGS_NEW;
375         else if (!strncasecmp(which, "FIRST", 5))
376                 mode = MSGS_FIRST;
377         else if (!strncasecmp(which, "LAST", 4))
378                 mode = MSGS_LAST;
379         else if (!strncasecmp(which, "GT", 2))
380                 mode = MSGS_GT;
381
382         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
383                 cprintf("%d not logged in\n", ERROR + NOT_LOGGED_IN);
384                 return;
385         }
386
387         if (with_template) {
388                 cprintf("%d Send template then receive message list\n",
389                         START_CHAT_MODE);
390                 template = (struct CtdlMessage *)
391                         mallok(sizeof(struct CtdlMessage));
392                 memset(template, 0, sizeof(struct CtdlMessage));
393                 while(client_gets(buf), strcmp(buf,"000")) {
394                         extract(tfield, buf, 0);
395                         extract(tvalue, buf, 1);
396                         for (i='A'; i<='Z'; ++i) if (msgkeys[i]!=NULL) {
397                                 if (!strcasecmp(tfield, msgkeys[i])) {
398                                         template->cm_fields[i] =
399                                                 strdoop(tvalue);
400                                 }
401                         }
402                 }
403         }
404         else {
405                 cprintf("%d Message list...\n", LISTING_FOLLOWS);
406         }
407
408         CtdlForEachMessage(mode, cm_ref, NULL, template, simple_listing);
409         if (template != NULL) CtdlFreeMessage(template);
410         cprintf("000\n");
411 }
412
413
414
415
416 /* 
417  * help_subst()  -  support routine for help file viewer
418  */
419 void help_subst(char *strbuf, char *source, char *dest)
420 {
421         char workbuf[256];
422         int p;
423
424         while (p = pattern2(strbuf, source), (p >= 0)) {
425                 strcpy(workbuf, &strbuf[p + strlen(source)]);
426                 strcpy(&strbuf[p], dest);
427                 strcat(strbuf, workbuf);
428         }
429 }
430
431
432 void do_help_subst(char *buffer)
433 {
434         char buf2[16];
435
436         help_subst(buffer, "^nodename", config.c_nodename);
437         help_subst(buffer, "^humannode", config.c_humannode);
438         help_subst(buffer, "^fqdn", config.c_fqdn);
439         help_subst(buffer, "^username", CC->usersupp.fullname);
440         sprintf(buf2, "%ld", CC->usersupp.usernum);
441         help_subst(buffer, "^usernum", buf2);
442         help_subst(buffer, "^sysadm", config.c_sysadm);
443         help_subst(buffer, "^variantname", CITADEL);
444         sprintf(buf2, "%d", config.c_maxsessions);
445         help_subst(buffer, "^maxsessions", buf2);
446 }
447
448
449
450 /*
451  * memfmout()  -  Citadel text formatter and paginator.
452  *             Although the original purpose of this routine was to format
453  *             text to the reader's screen width, all we're really using it
454  *             for here is to format text out to 80 columns before sending it
455  *             to the client.  The client software may reformat it again.
456  */
457 void memfmout(int width, char *mptr, char subst)
458                         /* screen width to use */
459                         /* where are we going to get our text from? */
460                         /* nonzero if we should use hypertext mode */
461 {
462         int a, b, c;
463         int real = 0;
464         int old = 0;
465         CIT_UBYTE ch;
466         char aaa[140];
467         char buffer[256];
468
469         strcpy(aaa, "");
470         old = 255;
471         strcpy(buffer, "");
472         c = 1;                  /* c is the current pos */
473
474 FMTA:   if (subst) {
475                 while (ch = *mptr, ((ch != 0) && (strlen(buffer) < 126))) {
476                         ch = *mptr++;
477                         buffer[strlen(buffer) + 1] = 0;
478                         buffer[strlen(buffer)] = ch;
479                 }
480
481                 if (buffer[0] == '^')
482                         do_help_subst(buffer);
483
484                 buffer[strlen(buffer) + 1] = 0;
485                 a = buffer[0];
486                 strcpy(buffer, &buffer[1]);
487         } else {
488                 ch = *mptr++;
489         }
490
491         old = real;
492         real = ch;
493         if (ch <= 0)
494                 goto FMTEND;
495
496         if (((ch == 13) || (ch == 10)) && (old != 13) && (old != 10))
497                 ch = 32;
498         if (((old == 13) || (old == 10)) && (isspace(real))) {
499                 cprintf("\n");
500                 c = 1;
501         }
502         if (ch > 126)
503                 goto FMTA;
504
505         if (ch > 32) {
506                 if (((strlen(aaa) + c) > (width - 5)) && (strlen(aaa) > (width - 5))) {
507                         cprintf("\n%s", aaa);
508                         c = strlen(aaa);
509                         aaa[0] = 0;
510                 }
511                 b = strlen(aaa);
512                 aaa[b] = ch;
513                 aaa[b + 1] = 0;
514         }
515         if (ch == 32) {
516                 if ((strlen(aaa) + c) > (width - 5)) {
517                         cprintf("\n");
518                         c = 1;
519                 }
520                 cprintf("%s ", aaa);
521                 ++c;
522                 c = c + strlen(aaa);
523                 strcpy(aaa, "");
524                 goto FMTA;
525         }
526         if ((ch == 13) || (ch == 10)) {
527                 cprintf("%s\n", aaa);
528                 c = 1;
529                 strcpy(aaa, "");
530                 goto FMTA;
531         }
532         goto FMTA;
533
534 FMTEND: cprintf("%s\n", aaa);
535 }
536
537
538
539 /*
540  * Callback function for mime parser that simply lists the part
541  */
542 void list_this_part(char *name, char *filename, char *partnum, char *disp,
543                     void *content, char *cbtype, size_t length)
544 {
545
546         cprintf("part=%s|%s|%s|%s|%s|%d\n",
547                 name, filename, partnum, disp, cbtype, length);
548 }
549
550
551 /*
552  * Callback function for mime parser that wants to display text
553  */
554 void fixed_output(char *name, char *filename, char *partnum, char *disp,
555                   void *content, char *cbtype, size_t length)
556 {
557         char *ptr;
558
559         if (!strcasecmp(cbtype, "multipart/alternative")) {
560                 strcpy(ma->prefix, partnum);
561                 strcat(ma->prefix, ".");
562                 ma->is_ma = 1;
563                 ma->did_print = 0;
564                 return;
565         }
566
567         if ( (!strncasecmp(partnum, ma->prefix, strlen(ma->prefix)))
568            && (ma->is_ma == 1) 
569            && (ma->did_print == 1) ) {
570                 lprintf(9, "Skipping part %s (%s)\n", partnum, cbtype);
571                 return;
572         }
573
574         ma->did_print = 1;
575
576         if (!strcasecmp(cbtype, "text/plain")) {
577                 client_write(content, length);
578         }
579         else if (!strcasecmp(cbtype, "text/html")) {
580                 ptr = html_to_ascii(content, 80, 0);
581                 client_write(ptr, strlen(ptr));
582                 phree(ptr);
583         }
584         else if (strncasecmp(cbtype, "multipart/", 10)) {
585                 cprintf("Part %s: %s (%s) (%d bytes)\n",
586                         partnum, filename, cbtype, length);
587         }
588 }
589
590
591 /*
592  * Callback function for mime parser that opens a section for downloading
593  */
594 void mime_download(char *name, char *filename, char *partnum, char *disp,
595                    void *content, char *cbtype, size_t length)
596 {
597
598         /* Silently go away if there's already a download open... */
599         if (CC->download_fp != NULL)
600                 return;
601
602         /* ...or if this is not the desired section */
603         if (strcasecmp(desired_section, partnum))
604                 return;
605
606         CC->download_fp = tmpfile();
607         if (CC->download_fp == NULL)
608                 return;
609
610         fwrite(content, length, 1, CC->download_fp);
611         fflush(CC->download_fp);
612         rewind(CC->download_fp);
613
614         OpenCmdResult(filename, cbtype);
615 }
616
617
618
619 /*
620  * Load a message from disk into memory.
621  * This is used by output_message() and other fetch functions.
622  *
623  * NOTE: Caller is responsible for freeing the returned CtdlMessage struct
624  *       using the CtdlMessageFree() function.
625  */
626 struct CtdlMessage *CtdlFetchMessage(long msgnum)
627 {
628         struct cdbdata *dmsgtext;
629         struct CtdlMessage *ret = NULL;
630         char *mptr;
631         CIT_UBYTE ch;
632         CIT_UBYTE field_header;
633         size_t field_length;
634
635
636         dmsgtext = cdb_fetch(CDB_MSGMAIN, &msgnum, sizeof(long));
637         if (dmsgtext == NULL) {
638                 lprintf(9, "CtdlFetchMessage(%ld) failed.\n");
639                 return NULL;
640         }
641         mptr = dmsgtext->ptr;
642
643         /* Parse the three bytes that begin EVERY message on disk.
644          * The first is always 0xFF, the on-disk magic number.
645          * The second is the anonymous/public type byte.
646          * The third is the format type byte (vari, fixed, or MIME).
647          */
648         ch = *mptr++;
649         if (ch != 255) {
650                 lprintf(5, "Message %ld appears to be corrupted.\n", msgnum);
651                 cdb_free(dmsgtext);
652                 return NULL;
653         }
654         ret = (struct CtdlMessage *) mallok(sizeof(struct CtdlMessage));
655         memset(ret, 0, sizeof(struct CtdlMessage));
656
657         ret->cm_magic = CTDLMESSAGE_MAGIC;
658         ret->cm_anon_type = *mptr++;    /* Anon type byte */
659         ret->cm_format_type = *mptr++;  /* Format type byte */
660
661         /*
662          * The rest is zero or more arbitrary fields.  Load them in.
663          * We're done when we encounter either a zero-length field or
664          * have just processed the 'M' (message text) field.
665          */
666         do {
667                 field_length = strlen(mptr);
668                 if (field_length == 0)
669                         break;
670                 field_header = *mptr++;
671                 ret->cm_fields[field_header] = mallok(field_length);
672                 strcpy(ret->cm_fields[field_header], mptr);
673
674                 while (*mptr++ != 0);   /* advance to next field */
675
676         } while ((field_length > 0) && (field_header != 'M'));
677
678         cdb_free(dmsgtext);
679
680         /* Perform "before read" hooks (aborting if any return nonzero) */
681         if (PerformMessageHooks(ret, EVT_BEFOREREAD) > 0) {
682                 CtdlFreeMessage(ret);
683                 return NULL;
684         }
685
686         return (ret);
687 }
688
689
690 /*
691  * Returns 1 if the supplied pointer points to a valid Citadel message.
692  * If the pointer is NULL or the magic number check fails, returns 0.
693  */
694 int is_valid_message(struct CtdlMessage *msg) {
695         if (msg == NULL)
696                 return 0;
697         if ((msg->cm_magic) != CTDLMESSAGE_MAGIC) {
698                 lprintf(3, "is_valid_message() -- self-check failed\n");
699                 return 0;
700         }
701         return 1;
702 }
703
704
705 /*
706  * 'Destructor' for struct CtdlMessage
707  */
708 void CtdlFreeMessage(struct CtdlMessage *msg)
709 {
710         int i;
711
712         if (is_valid_message(msg) == 0) return;
713
714         for (i = 0; i < 256; ++i)
715                 if (msg->cm_fields[i] != NULL)
716                         phree(msg->cm_fields[i]);
717
718         msg->cm_magic = 0;      /* just in case */
719         phree(msg);
720 }
721
722
723
724 /*
725  * Get a message off disk.  (return value is the message's timestamp)
726  * 
727  */
728 void output_message(char *msgid, int mode, int headers_only)
729 {
730         long msg_num;
731         int a, i, k;
732         char buf[1024];
733         time_t xtime;
734         CIT_UBYTE ch;
735         char allkeys[256];
736         char display_name[256];
737
738         struct CtdlMessage *TheMessage = NULL;
739
740         char *mptr;
741
742         /* buffers needed for RFC822 translation */
743         char suser[256];
744         char luser[256];
745         char snode[256];
746         char lnode[256];
747         char mid[256];
748         /*                                       */
749
750         msg_num = atol(msgid);
751
752         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
753                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
754                 return;
755         }
756
757         /* FIX ... small security issue
758          * We need to check to make sure the requested message is actually
759          * in the current room, and set msg_ok to 1 only if it is.  This
760          * functionality is currently missing because I'm in a hurry to replace
761          * broken production code with nonbroken pre-beta code.  :(   -- ajc
762          *
763          if (!msg_ok) {
764          cprintf("%d Message %ld is not in this room.\n",
765          ERROR, msg_num);
766          return;
767          }
768          */
769
770         /*
771          * Fetch the message from disk
772          */
773         TheMessage = CtdlFetchMessage(msg_num);
774         if (TheMessage == NULL) {
775                 cprintf("%d Can't locate msg %ld on disk\n", ERROR, msg_num);
776                 return;
777         }
778
779         /* Are we downloading a MIME component? */
780         if (mode == MT_DOWNLOAD) {
781                 if (TheMessage->cm_format_type != 4) {
782                         cprintf("%d This is not a MIME message.\n",
783                                 ERROR);
784                 } else if (CC->download_fp != NULL) {
785                         cprintf("%d You already have a download open.\n",
786                                 ERROR);
787                 } else {
788                         /* Parse the message text component */
789                         mptr = TheMessage->cm_fields['M'];
790                         mime_parser(mptr, NULL, *mime_download);
791                         /* If there's no file open by this time, the requested
792                          * section wasn't found, so print an error
793                          */
794                         if (CC->download_fp == NULL) {
795                                 cprintf("%d Section %s not found.\n",
796                                         ERROR + FILE_NOT_FOUND,
797                                         desired_section);
798                         }
799                 }
800                 CtdlFreeMessage(TheMessage);
801                 return;
802         }
803
804         /* now for the user-mode message reading loops */
805         cprintf("%d Message %ld:\n", LISTING_FOLLOWS, msg_num);
806
807         /* Tell the client which format type we're using.  If this is a
808          * MIME message, *lie* about it and tell the user it's fixed-format.
809          */
810         if (mode == MT_CITADEL) {
811                 if (TheMessage->cm_format_type == 4)
812                         cprintf("type=1\n");
813                 else
814                         cprintf("type=%d\n", TheMessage->cm_format_type);
815         }
816
817         /* nhdr=yes means that we're only displaying headers, no body */
818         if ((TheMessage->cm_anon_type == MES_ANON) && (mode == MT_CITADEL)) {
819                 cprintf("nhdr=yes\n");
820         }
821
822         /* begin header processing loop for Citadel message format */
823
824         if ((mode == MT_CITADEL) || (mode == MT_MIME)) {
825
826                 strcpy(display_name, "<unknown>");
827                 if (TheMessage->cm_fields['A']) {
828                         strcpy(buf, TheMessage->cm_fields['A']);
829                         PerformUserHooks(buf, (-1L), EVT_OUTPUTMSG);
830                         if (TheMessage->cm_anon_type == MES_ANON)
831                                 strcpy(display_name, "****");
832                         else if (TheMessage->cm_anon_type == MES_AN2)
833                                 strcpy(display_name, "anonymous");
834                         else
835                                 strcpy(display_name, buf);
836                         if ((is_room_aide())
837                             && ((TheMessage->cm_anon_type == MES_ANON)
838                              || (TheMessage->cm_anon_type == MES_AN2))) {
839                                 sprintf(&display_name[strlen(display_name)],
840                                         " [%s]", buf);
841                         }
842                 }
843
844                 strcpy(allkeys, FORDER);
845                 for (i=0; i<strlen(allkeys); ++i) {
846                         k = (int) allkeys[i];
847                         if (k != 'M') {
848                                 if (TheMessage->cm_fields[k] != NULL) {
849                                         if (k == 'A') {
850                                                 cprintf("%s=%s\n",
851                                                         msgkeys[k],
852                                                         display_name);
853                                         }
854                                         else {
855                                                 cprintf("%s=%s\n",
856                                                         msgkeys[k],
857                                                         TheMessage->cm_fields[k]
858                                         );
859                                         }
860                                 }
861                         }
862                 }
863
864         }
865
866         /* begin header processing loop for RFC822 transfer format */
867
868         strcpy(suser, "");
869         strcpy(luser, "");
870         strcpy(snode, NODENAME);
871         strcpy(lnode, HUMANNODE);
872         if (mode == MT_RFC822) {
873                 for (i = 0; i < 256; ++i) {
874                         if (TheMessage->cm_fields[i]) {
875                                 mptr = TheMessage->cm_fields[i];
876
877                                 if (i == 'A') {
878                                         strcpy(luser, mptr);
879                                 } else if (i == 'P') {
880                                         cprintf("Path: %s\n", mptr);
881                                         for (a = 0; a < strlen(mptr); ++a) {
882                                                 if (mptr[a] == '!') {
883                                                         strcpy(mptr, &mptr[a + 1]);
884                                                         a = 0;
885                                                 }
886                                         }
887                                         strcpy(suser, mptr);
888                                 } else if (i == 'U')
889                                         cprintf("Subject: %s\n", mptr);
890                                 else if (i == 'I')
891                                         strcpy(mid, mptr);
892                                 else if (i == 'H')
893                                         strcpy(lnode, mptr);
894                                 else if (i == 'O')
895                                         cprintf("X-Citadel-Room: %s\n", mptr);
896                                 else if (i == 'N')
897                                         strcpy(snode, mptr);
898                                 else if (i == 'R')
899                                         cprintf("To: %s\n", mptr);
900                                 else if (i == 'T') {
901                                         xtime = atol(mptr);
902                                         cprintf("Date: %s", asctime(localtime(&xtime)));
903                                 }
904                         }
905                 }
906         }
907
908         if (mode == MT_RFC822) {
909                 if (!strcasecmp(snode, NODENAME)) {
910                         strcpy(snode, FQDN);
911                 }
912                 cprintf("Message-ID: <%s@%s>\n", mid, snode);
913                 PerformUserHooks(luser, (-1L), EVT_OUTPUTMSG);
914                 cprintf("From: %s@%s (%s)\n", suser, snode, luser);
915                 cprintf("Organization: %s\n", lnode);
916         }
917
918         /* end header processing loop ... at this point, we're in the text */
919
920         mptr = TheMessage->cm_fields['M'];
921
922         /* Tell the client about the MIME parts in this message */
923         if (TheMessage->cm_format_type == 4) {  /* legacy textual dump */
924                 if (mode == MT_CITADEL) {
925                         mime_parser(mptr, NULL, *list_this_part);
926                 }
927                 else if (mode == MT_MIME) {     /* list parts only */
928                         mime_parser(mptr, NULL, *list_this_part);
929                         cprintf("000\n");
930                         CtdlFreeMessage(TheMessage);
931                         return;
932                 }
933         }
934
935         if (headers_only) {
936                 cprintf("000\n");
937                 CtdlFreeMessage(TheMessage);
938                 return;
939         }
940
941         /* signify start of msg text */
942         if (mode == MT_CITADEL)
943                 cprintf("text\n");
944         if ((mode == MT_RFC822) && (TheMessage->cm_format_type != 4))
945                 cprintf("\n");
946
947         /* If the format type on disk is 1 (fixed-format), then we want
948          * everything to be output completely literally ... regardless of
949          * what message transfer format is in use.
950          */
951         if (TheMessage->cm_format_type == 1) {
952                 strcpy(buf, "");
953                 while (ch = *mptr++, ch > 0) {
954                         if (ch == 13)
955                                 ch = 10;
956                         if ((ch == 10) || (strlen(buf) > 250)) {
957                                 cprintf("%s\n", buf);
958                                 strcpy(buf, "");
959                         } else {
960                                 buf[strlen(buf) + 1] = 0;
961                                 buf[strlen(buf)] = ch;
962                         }
963                 }
964                 if (strlen(buf) > 0)
965                         cprintf("%s\n", buf);
966         }
967
968         /* If the message on disk is format 0 (Citadel vari-format), we
969          * output using the formatter at 80 columns.  This is the final output
970          * form if the transfer format is RFC822, but if the transfer format
971          * is Citadel proprietary, it'll still work, because the indentation
972          * for new paragraphs is correct and the client will reformat the
973          * message to the reader's screen width.
974          */
975         if (TheMessage->cm_format_type == 0) {
976                 memfmout(80, mptr, 0);
977         }
978
979         /* If the message on disk is format 4 (MIME), we've gotta hand it
980          * off to the MIME parser.  The client has already been told that
981          * this message is format 1 (fixed format), so the callback function
982          * we use will display those parts as-is.
983          */
984         if (TheMessage->cm_format_type == 4) {
985                 CtdlAllocUserData(SYM_MA_INFO, sizeof(struct ma_info));
986                 memset(ma, 0, sizeof(struct ma_info));
987                 mime_parser(mptr, NULL, *fixed_output);
988         }
989
990         /* now we're done */
991         cprintf("000\n");
992         CtdlFreeMessage(TheMessage);
993         return;
994 }
995
996
997
998 /*
999  * display a message (mode 0 - Citadel proprietary)
1000  */
1001 void cmd_msg0(char *cmdbuf)
1002 {
1003         char msgid[256];
1004         int headers_only = 0;
1005
1006         extract(msgid, cmdbuf, 0);
1007         headers_only = extract_int(cmdbuf, 1);
1008
1009         output_message(msgid, MT_CITADEL, headers_only);
1010         return;
1011 }
1012
1013
1014 /*
1015  * display a message (mode 2 - RFC822)
1016  */
1017 void cmd_msg2(char *cmdbuf)
1018 {
1019         char msgid[256];
1020         int headers_only = 0;
1021
1022         extract(msgid, cmdbuf, 0);
1023         headers_only = extract_int(cmdbuf, 1);
1024
1025         output_message(msgid, MT_RFC822, headers_only);
1026 }
1027
1028
1029
1030 /* 
1031  * display a message (mode 3 - IGnet raw format - internal programs only)
1032  */
1033 void cmd_msg3(char *cmdbuf)
1034 {
1035         long msgnum;
1036         struct CtdlMessage *msg;
1037         struct ser_ret smr;
1038
1039         if (CC->internal_pgm == 0) {
1040                 cprintf("%d This command is for internal programs only.\n",
1041                         ERROR);
1042                 return;
1043         }
1044
1045         msgnum = extract_long(cmdbuf, 0);
1046         msg = CtdlFetchMessage(msgnum);
1047         if (msg == NULL) {
1048                 cprintf("%d Message %ld not found.\n", 
1049                         ERROR, msgnum);
1050                 return;
1051         }
1052
1053         serialize_message(&smr, msg);
1054         CtdlFreeMessage(msg);
1055
1056         if (smr.len == 0) {
1057                 cprintf("%d Unable to serialize message\n",
1058                         ERROR+INTERNAL_ERROR);
1059                 return;
1060         }
1061
1062         cprintf("%d %ld\n", BINARY_FOLLOWS, smr.len);
1063         client_write(smr.ser, smr.len);
1064         phree(smr.ser);
1065 }
1066
1067
1068
1069 /* 
1070  * display a message (mode 4 - MIME) (FIX ... still evolving, not complete)
1071  */
1072 void cmd_msg4(char *cmdbuf)
1073 {
1074         char msgid[256];
1075
1076         extract(msgid, cmdbuf, 0);
1077
1078         output_message(msgid, MT_MIME, 0);
1079 }
1080
1081 /*
1082  * Open a component of a MIME message as a download file 
1083  */
1084 void cmd_opna(char *cmdbuf)
1085 {
1086         char msgid[256];
1087
1088         CtdlAllocUserData(SYM_DESIRED_SECTION, 64);
1089
1090         extract(msgid, cmdbuf, 0);
1091         extract(desired_section, cmdbuf, 1);
1092
1093         output_message(msgid, MT_DOWNLOAD, 0);
1094 }                       
1095
1096 /*
1097  * Message base operation to send a message to the master file
1098  * (returns new message number)
1099  *
1100  * This is the back end for CtdlSaveMsg() and should not be directly
1101  * called by server-side modules.
1102  *
1103  */
1104 long send_message(struct CtdlMessage *msg,      /* pointer to buffer */
1105                 int generate_id,                /* generate 'I' field? */
1106                 FILE *save_a_copy)              /* save a copy to disk? */
1107 {
1108         long newmsgid;
1109         long retval;
1110         char msgidbuf[32];
1111         struct ser_ret smr;
1112
1113         /* Get a new message number */
1114         newmsgid = get_new_message_number();
1115         sprintf(msgidbuf, "%ld", newmsgid);
1116
1117         if (generate_id) {
1118                 msg->cm_fields['I'] = strdoop(msgidbuf);
1119         }
1120         
1121         serialize_message(&smr, msg);
1122
1123         if (smr.len == 0) {
1124                 cprintf("%d Unable to serialize message\n",
1125                         ERROR+INTERNAL_ERROR);
1126                 return (-1L);
1127         }
1128
1129         /* Write our little bundle of joy into the message base */
1130         begin_critical_section(S_MSGMAIN);
1131         if (cdb_store(CDB_MSGMAIN, &newmsgid, sizeof(long),
1132                       smr.ser, smr.len) < 0) {
1133                 lprintf(2, "Can't store message\n");
1134                 retval = 0L;
1135         } else {
1136                 retval = newmsgid;
1137         }
1138         end_critical_section(S_MSGMAIN);
1139
1140         /* If the caller specified that a copy should be saved to a particular
1141          * file handle, do that now too.
1142          */
1143         if (save_a_copy != NULL) {
1144                 fwrite(smr.ser, smr.len, 1, save_a_copy);
1145         }
1146
1147         /* Free the memory we used for the serialized message */
1148         phree(smr.ser);
1149
1150         /* Return the *local* message ID to the caller
1151          * (even if we're storing an incoming network message)
1152          */
1153         return(retval);
1154 }
1155
1156
1157
1158 /*
1159  * Serialize a struct CtdlMessage into the format used on disk and network.
1160  * 
1161  * This function loads up a "struct ser_ret" (defined in server.h) which
1162  * contains the length of the serialized message and a pointer to the
1163  * serialized message in memory.  THE LATTER MUST BE FREED BY THE CALLER.
1164  */
1165 void serialize_message(struct ser_ret *ret,             /* return values */
1166                         struct CtdlMessage *msg)        /* unserialized msg */
1167 {
1168         size_t wlen;
1169         int i;
1170         static char *forder = FORDER;
1171
1172         lprintf(9, "serialize_message() called\n");
1173
1174         if (is_valid_message(msg) == 0) return;         /* self check */
1175
1176         lprintf(9, "magic number check OK.\n");
1177
1178         ret->len = 3;
1179         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL)
1180                 ret->len = ret->len +
1181                         strlen(msg->cm_fields[(int)forder[i]]) + 2;
1182
1183         lprintf(9, "message is %d bytes\n", ret->len);
1184
1185         lprintf(9, "calling malloc\n");
1186         ret->ser = mallok(ret->len);
1187         if (ret->ser == NULL) {
1188                 ret->len = 0;
1189                 return;
1190         }
1191
1192         ret->ser[0] = 0xFF;
1193         ret->ser[1] = msg->cm_anon_type;
1194         ret->ser[2] = msg->cm_format_type;
1195         wlen = 3;
1196
1197         lprintf(9, "stuff\n");
1198         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL) {
1199                 ret->ser[wlen++] = (char)forder[i];
1200                 strcpy(&ret->ser[wlen], msg->cm_fields[(int)forder[i]]);
1201                 wlen = wlen + strlen(msg->cm_fields[(int)forder[i]]) + 1;
1202         }
1203         if (ret->len != wlen) lprintf(3, "ERROR: len=%d wlen=%d\n",
1204                 ret->len, wlen);
1205         lprintf(9, "done serializing\n");
1206
1207         return;
1208 }
1209
1210
1211
1212 /*
1213  * Back end for the ReplicationChecks() function
1214  */
1215 void check_repl(long msgnum) {
1216         struct CtdlMessage *msg;
1217         time_t timestamp = (-1L);
1218
1219         lprintf(9, "check_repl() found message %ld\n", msgnum);
1220         msg = CtdlFetchMessage(msgnum);
1221         if (msg == NULL) return;
1222         if (msg->cm_fields['T'] != NULL) {
1223                 timestamp = atol(msg->cm_fields['T']);
1224         }
1225         CtdlFreeMessage(msg);
1226
1227         if (timestamp > msg_repl->highest) {
1228                 msg_repl->highest = timestamp;  /* newer! */
1229                 lprintf(9, "newer!\n");
1230                 return;
1231         }
1232         lprintf(9, "older!\n");
1233
1234         /* Existing isn't newer?  Then delete the old one(s). */
1235         CtdlDeleteMessages(CC->quickroom.QRname, msgnum, NULL);
1236 }
1237
1238
1239 /*
1240  * Check to see if any messages already exist which carry the same Extended ID
1241  * as this one.  
1242  *
1243  * If any are found:
1244  * -> With older timestamps: delete them and return 0.  Message will be saved.
1245  * -> With newer timestamps: return 1.  Message save will be aborted.
1246  */
1247 int ReplicationChecks(struct CtdlMessage *msg) {
1248         struct CtdlMessage *template;
1249         int abort_this = 0;
1250
1251         lprintf(9, "ReplicationChecks() started\n");
1252         /* No extended id?  Don't do anything. */
1253         if (msg->cm_fields['E'] == NULL) return 0;
1254         if (strlen(msg->cm_fields['E']) == 0) return 0;
1255         lprintf(9, "Extended ID: <%s>\n", msg->cm_fields['E']);
1256
1257         CtdlAllocUserData(SYM_REPL, sizeof(struct repl));
1258         strcpy(msg_repl->extended_id, msg->cm_fields['E']);
1259         msg_repl->highest = atol(msg->cm_fields['T']);
1260
1261         template = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
1262         memset(template, 0, sizeof(struct CtdlMessage));
1263         template->cm_fields['E'] = strdoop(msg->cm_fields['E']);
1264
1265         CtdlForEachMessage(MSGS_ALL, 0L, NULL, template, check_repl);
1266
1267         /* If a newer message exists with the same Extended ID, abort
1268          * this save.
1269          */
1270         if (msg_repl->highest > atol(msg->cm_fields['T']) ) {
1271                 abort_this = 1;
1272                 }
1273
1274         CtdlFreeMessage(template);
1275         lprintf(9, "Returning %d\n", abort_this);
1276         return(abort_this);
1277 }
1278
1279
1280
1281
1282
1283
1284
1285
1286 /*
1287  * Save a message to disk
1288  */
1289 void CtdlSaveMsg(struct CtdlMessage *msg,       /* message to save */
1290                 char *rec,                      /* Recipient (mail) */
1291                 char *force,                    /* force a particular room? */
1292                 int mailtype,                   /* local or remote type */
1293                 int generate_id)                /* 1 = generate 'I' field */
1294 {
1295         char aaa[100];
1296         char hold_rm[ROOMNAMELEN];
1297         char actual_rm[ROOMNAMELEN];
1298         char force_room[ROOMNAMELEN];
1299         char content_type[256]; /* We have to learn this */
1300         char recipient[256];
1301         long newmsgid;
1302         char *mptr;
1303         struct usersupp userbuf;
1304         int a;
1305         int successful_local_recipients = 0;
1306         struct quickroom qtemp;
1307         struct SuppMsgInfo smi;
1308         FILE *network_fp = NULL;
1309         static int seqnum = 1;
1310
1311         lprintf(9, "CtdlSaveMsg() called\n");
1312         if (is_valid_message(msg) == 0) return;         /* self check */
1313
1314         /* If this message has no timestamp, we take the liberty of
1315          * giving it one, right now.
1316          */
1317         if (msg->cm_fields['T'] == NULL) {
1318                 sprintf(aaa, "%ld", time(NULL));
1319                 msg->cm_fields['T'] = strdoop(aaa);
1320         }
1321
1322         /* If this message has no path, we generate one.
1323          */
1324         if (msg->cm_fields['P'] == NULL) {
1325                 msg->cm_fields['P'] = strdoop(msg->cm_fields['A']);
1326                 for (a=0; a<strlen(msg->cm_fields['P']); ++a) {
1327                         if (isspace(msg->cm_fields['P'][a])) {
1328                                 msg->cm_fields['P'][a] = ' ';
1329                         }
1330                 }
1331         }
1332
1333         strcpy(force_room, force);
1334
1335         /* Strip non-printable characters out of the recipient name */
1336         strcpy(recipient, rec);
1337         for (a = 0; a < strlen(recipient); ++a)
1338                 if (!isprint(recipient[a]))
1339                         strcpy(&recipient[a], &recipient[a + 1]);
1340
1341         /* Learn about what's inside, because it's what's inside that counts */
1342
1343         switch (msg->cm_format_type) {
1344         case 0:
1345                 strcpy(content_type, "text/x-citadel-variformat");
1346                 break;
1347         case 1:
1348                 strcpy(content_type, "text/plain");
1349                 break;
1350         case 4:
1351                 strcpy(content_type, "text/plain");
1352                 /* advance past header fields */
1353                 mptr = msg->cm_fields['M'];
1354                 a = strlen(mptr);
1355                 while (--a) {
1356                         if (!strncasecmp(mptr, "Content-type: ", 14)) {
1357                                 safestrncpy(content_type, mptr,
1358                                             sizeof(content_type));
1359                                 strcpy(content_type, &content_type[14]);
1360                                 for (a = 0; a < strlen(content_type); ++a)
1361                                         if ((content_type[a] == ';')
1362                                             || (content_type[a] == ' ')
1363                                             || (content_type[a] == 13)
1364                                             || (content_type[a] == 10))
1365                                                 content_type[a] = 0;
1366                                 break;
1367                         }
1368                         ++mptr;
1369                 }
1370         }
1371
1372         /* Perform "before save" hooks (aborting if any return nonzero) */
1373         if (PerformMessageHooks(msg, EVT_BEFORESAVE) > 0) return;
1374
1375         /* If this message has an Extended ID, perform replication checks */
1376         if (ReplicationChecks(msg) > 0) return;
1377
1378         /* Network mail - send a copy to the network program. */
1379         if ((strlen(recipient) > 0) && (mailtype != MES_LOCAL)) {
1380                 sprintf(aaa, "./network/spoolin/netmail.%04lx.%04x.%04x",
1381                         (long) getpid(), CC->cs_pid, ++seqnum);
1382                 lprintf(9, "Saving a copy to %s\n", aaa);
1383                 network_fp = fopen(aaa, "ab+");
1384                 if (network_fp == NULL)
1385                         lprintf(2, "ERROR: %s\n", strerror(errno));
1386         }
1387
1388         /* Save it to disk */
1389         newmsgid = send_message(msg, generate_id, network_fp);
1390         if (network_fp != NULL) {
1391                 fclose(network_fp);
1392                 system("exec nohup ./netproc -i >/dev/null 2>&1 &");
1393         }
1394         if (newmsgid <= 0L)
1395                 return;
1396
1397         strcpy(actual_rm, CC->quickroom.QRname);
1398         strcpy(hold_rm, "");
1399
1400         /* If this is being done by the networker delivering a private
1401          * message, we want to BYPASS saving the sender's copy (because there
1402          * is no local sender; it would otherwise go to the Trashcan).
1403          */
1404         if ((!CC->internal_pgm) || (strlen(recipient) == 0)) {
1405                 /* If the user is a twit, move to the twit room for posting */
1406                 if (TWITDETECT)
1407                         if (CC->usersupp.axlevel == 2) {
1408                                 strcpy(hold_rm, actual_rm);
1409                                 strcpy(actual_rm, config.c_twitroom);
1410                         }
1411                 /* ...or if this message is destined for Aide> then go there. */
1412                 if (strlen(force_room) > 0) {
1413                         strcpy(hold_rm, actual_rm);
1414                         strcpy(actual_rm, force_room);
1415                 }
1416                 /* This call to usergoto() changes rooms if necessary.  It also
1417                    * causes the latest message list to be read into memory.
1418                  */
1419                 usergoto(actual_rm, 0);
1420
1421                 /* read in the quickroom record, obtaining a lock... */
1422                 lgetroom(&CC->quickroom, actual_rm);
1423
1424                 /* Fix an obscure bug */
1425                 if (!strcasecmp(CC->quickroom.QRname, AIDEROOM)) {
1426                         CC->quickroom.QRflags =
1427                             CC->quickroom.QRflags & ~QR_MAILBOX;
1428                 }
1429                 /* Add the message pointer to the room */
1430                 CC->quickroom.QRhighest =
1431                     AddMessageToRoom(&CC->quickroom, newmsgid);
1432
1433                 /* update quickroom */
1434                 lputroom(&CC->quickroom);
1435                 ++successful_local_recipients;
1436         }
1437
1438         /* Bump this user's messages posted counter. */
1439         lgetuser(&CC->usersupp, CC->curr_user);
1440         CC->usersupp.posted = CC->usersupp.posted + 1;
1441         lputuser(&CC->usersupp);
1442
1443         /* If this is private, local mail, make a copy in the
1444          * recipient's mailbox and bump the reference count.
1445          */
1446         if ((strlen(recipient) > 0) && (mailtype == MES_LOCAL)) {
1447                 if (getuser(&userbuf, recipient) == 0) {
1448                         MailboxName(actual_rm, &userbuf, MAILROOM);
1449                         if (lgetroom(&qtemp, actual_rm) == 0) {
1450                                 qtemp.QRhighest =
1451                                     AddMessageToRoom(&qtemp, newmsgid);
1452                                 lputroom(&qtemp);
1453                                 ++successful_local_recipients;
1454                         }
1455                 }
1456         }
1457         /* If we've posted in a room other than the current room, then we
1458          * have to now go back to the current room...
1459          */
1460         if (strlen(hold_rm) > 0) {
1461                 usergoto(hold_rm, 0);
1462         }
1463
1464         /* Write a supplemental message info record.  This doesn't have to
1465          * be a critical section because nobody else knows about this message
1466          * yet.
1467          */
1468         memset(&smi, 0, sizeof(struct SuppMsgInfo));
1469         smi.smi_msgnum = newmsgid;
1470         smi.smi_refcount = successful_local_recipients;
1471         safestrncpy(smi.smi_content_type, content_type, 64);
1472         PutSuppMsgInfo(&smi);
1473
1474         /* Perform "after save" hooks */
1475         PerformMessageHooks(msg, EVT_AFTERSAVE);
1476 }
1477
1478
1479
1480 /*
1481  * Convenience function for generating small administrative messages.
1482  */
1483 void quickie_message(char *from, char *to, char *room, char *text)
1484 {
1485         struct CtdlMessage *msg;
1486
1487         msg = mallok(sizeof(struct CtdlMessage));
1488         memset(msg, 0, sizeof(struct CtdlMessage));
1489         msg->cm_magic = CTDLMESSAGE_MAGIC;
1490         msg->cm_anon_type = MES_NORMAL;
1491         msg->cm_format_type = 0;
1492         msg->cm_fields['A'] = strdoop(from);
1493         msg->cm_fields['O'] = strdoop(room);
1494         msg->cm_fields['N'] = strdoop(NODENAME);
1495         if (to != NULL)
1496                 msg->cm_fields['R'] = strdoop(to);
1497         msg->cm_fields['M'] = strdoop(text);
1498
1499         CtdlSaveMsg(msg, "", room, MES_LOCAL, 1);
1500         CtdlFreeMessage(msg);
1501         syslog(LOG_NOTICE, text);
1502 }
1503
1504
1505 /*
1506  * Build a binary message to be saved on disk.
1507  */
1508
1509 struct CtdlMessage *make_message(
1510         struct usersupp *author,        /* author's usersupp structure */
1511         char *recipient,                /* NULL if it's not mail */
1512         char *room,                     /* room where it's going */
1513         int type,                       /* see MES_ types in header file */
1514         int net_type,                   /* see MES_ types in header file */
1515         int format_type,                /* local or remote (see citadel.h) */
1516         char *fake_name)                /* who we're masquerading as */
1517 {
1518
1519         int a;
1520         char dest_node[32];
1521         char buf[256];
1522         size_t message_len = 0;
1523         size_t buffer_len = 0;
1524         char *ptr;
1525         struct CtdlMessage *msg;
1526
1527         msg = mallok(sizeof(struct CtdlMessage));
1528         memset(msg, 0, sizeof(struct CtdlMessage));
1529         msg->cm_magic = CTDLMESSAGE_MAGIC;
1530         msg->cm_anon_type = type;
1531         msg->cm_format_type = format_type;
1532
1533         /* Don't confuse the poor folks if it's not routed mail. */
1534         strcpy(dest_node, "");
1535
1536         /* If net_type is MES_BINARY, split out the destination node. */
1537         if (net_type == MES_BINARY) {
1538                 strcpy(dest_node, NODENAME);
1539                 for (a = 0; a < strlen(recipient); ++a) {
1540                         if (recipient[a] == '@') {
1541                                 recipient[a] = 0;
1542                                 strcpy(dest_node, &recipient[a + 1]);
1543                         }
1544                 }
1545         }
1546
1547         /* if net_type is MES_INTERNET, set the dest node to 'internet' */
1548         if (net_type == MES_INTERNET) {
1549                 strcpy(dest_node, "internet");
1550         }
1551
1552         while (isspace(recipient[strlen(recipient) - 1]))
1553                 recipient[strlen(recipient) - 1] = 0;
1554
1555         sprintf(buf, "cit%ld", author->usernum);                /* Path */
1556         msg->cm_fields['P'] = strdoop(buf);
1557
1558         sprintf(buf, "%ld", time(NULL));                        /* timestamp */
1559         msg->cm_fields['T'] = strdoop(buf);
1560
1561         if (fake_name[0])                                       /* author */
1562                 msg->cm_fields['A'] = strdoop(fake_name);
1563         else
1564                 msg->cm_fields['A'] = strdoop(author->fullname);
1565
1566         if (CC->quickroom.QRflags & QR_MAILBOX)                 /* room */
1567                 msg->cm_fields['O'] = strdoop(&CC->quickroom.QRname[11]);
1568         else
1569                 msg->cm_fields['O'] = strdoop(CC->quickroom.QRname);
1570
1571         msg->cm_fields['N'] = strdoop(NODENAME);                /* nodename */
1572         msg->cm_fields['H'] = strdoop(HUMANNODE);               /* hnodename */
1573
1574         if (recipient[0] != 0)
1575                 msg->cm_fields['R'] = strdoop(recipient);
1576         if (dest_node[0] != 0)
1577                 msg->cm_fields['D'] = strdoop(dest_node);
1578
1579         msg->cm_fields['M'] = mallok(4096);
1580         if (msg->cm_fields['M'] == NULL) {
1581                 while (client_gets(buf), strcmp(buf, "000")) ;; /* flush */
1582                 return(msg);
1583         } else {
1584                 buffer_len = 4096;
1585                 msg->cm_fields['M'][0] = 0;
1586                 message_len = 0;
1587         }
1588
1589         /* read in the lines of message text one by one */
1590         while (client_gets(buf), strcmp(buf, "000")) {
1591
1592                 /* augment the buffer if we have to */
1593                 if ((message_len + strlen(buf) + 2) > buffer_len) {
1594                         ptr = reallok(msg->cm_fields['M'], (buffer_len * 2) );
1595                         if (ptr == NULL) {      /* flush if can't allocate */
1596                                 while (client_gets(buf), strcmp(buf, "000")) ;;
1597                                 return(msg);
1598                         } else {
1599                                 buffer_len = (buffer_len * 2);
1600                                 msg->cm_fields['M'] = ptr;
1601                         }
1602                 }
1603
1604                 strcat(msg->cm_fields['M'], buf);
1605                 strcat(msg->cm_fields['M'], "\n");
1606
1607                 /* if we've hit the max msg length, flush the rest */
1608                 if (message_len >= config.c_maxmsglen) {
1609                         while (client_gets(buf), strcmp(buf, "000")) ;;
1610                         return(msg);
1611                 }
1612         }
1613
1614         return(msg);
1615 }
1616
1617
1618
1619
1620
1621 /*
1622  * message entry  -  mode 0 (normal)
1623  */
1624 void cmd_ent0(char *entargs)
1625 {
1626         int post = 0;
1627         char recipient[256];
1628         int anon_flag = 0;
1629         int format_type = 0;
1630         char newusername[256];
1631         struct CtdlMessage *msg;
1632         int a, b;
1633         int e = 0;
1634         int mtsflag = 0;
1635         struct usersupp tempUS;
1636         char buf[256];
1637
1638         post = extract_int(entargs, 0);
1639         extract(recipient, entargs, 1);
1640         anon_flag = extract_int(entargs, 2);
1641         format_type = extract_int(entargs, 3);
1642
1643         /* first check to make sure the request is valid. */
1644
1645         if (!(CC->logged_in)) {
1646                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
1647                 return;
1648         }
1649         if ((CC->usersupp.axlevel < 2) && ((CC->quickroom.QRflags & QR_MAILBOX) == 0)) {
1650                 cprintf("%d Need to be validated to enter ",
1651                         ERROR + HIGHER_ACCESS_REQUIRED);
1652                 cprintf("(except in %s> to sysop)\n", MAILROOM);
1653                 return;
1654         }
1655         if ((CC->usersupp.axlevel < 4) && (CC->quickroom.QRflags & QR_NETWORK)) {
1656                 cprintf("%d Need net privileges to enter here.\n",
1657                         ERROR + HIGHER_ACCESS_REQUIRED);
1658                 return;
1659         }
1660         if ((CC->usersupp.axlevel < 6) && (CC->quickroom.QRflags & QR_READONLY)) {
1661                 cprintf("%d Sorry, this is a read-only room.\n",
1662                         ERROR + HIGHER_ACCESS_REQUIRED);
1663                 return;
1664         }
1665         mtsflag = 0;
1666
1667
1668         if (post == 2) {
1669                 if (CC->usersupp.axlevel < 6) {
1670                         cprintf("%d You don't have permission to masquerade.\n",
1671                                 ERROR + HIGHER_ACCESS_REQUIRED);
1672                         return;
1673                 }
1674                 extract(newusername, entargs, 4);
1675                 memset(CC->fake_postname, 0, 32);
1676                 strcpy(CC->fake_postname, newusername);
1677                 cprintf("%d Ok\n", OK);
1678                 return;
1679         }
1680         CC->cs_flags |= CS_POSTING;
1681
1682         buf[0] = 0;
1683         if (CC->quickroom.QRflags & QR_MAILBOX) {
1684                 if (CC->usersupp.axlevel >= 2) {
1685                         strcpy(buf, recipient);
1686                 } else
1687                         strcpy(buf, "sysop");
1688                 e = alias(buf); /* alias and mail type */
1689                 if ((buf[0] == 0) || (e == MES_ERROR)) {
1690                         cprintf("%d Unknown address - cannot send message.\n",
1691                                 ERROR + NO_SUCH_USER);
1692                         return;
1693                 }
1694                 if ((e != MES_LOCAL) && (CC->usersupp.axlevel < 4)) {
1695                         cprintf("%d Net privileges required for network mail.\n",
1696                                 ERROR + HIGHER_ACCESS_REQUIRED);
1697                         return;
1698                 }
1699                 if ((RESTRICT_INTERNET == 1) && (e == MES_INTERNET)
1700                     && ((CC->usersupp.flags & US_INTERNET) == 0)
1701                     && (!CC->internal_pgm)) {
1702                         cprintf("%d You don't have access to Internet mail.\n",
1703                                 ERROR + HIGHER_ACCESS_REQUIRED);
1704                         return;
1705                 }
1706                 if (!strcasecmp(buf, "sysop")) {
1707                         mtsflag = 1;
1708                         goto SKFALL;
1709                 }
1710                 if (e != MES_LOCAL)
1711                         goto SKFALL;    /* don't search local file  */
1712                 if (!strcasecmp(buf, CC->usersupp.fullname)) {
1713                         cprintf("%d Can't send mail to yourself!\n",
1714                                 ERROR + NO_SUCH_USER);
1715                         return;
1716                 }
1717                 /* Check to make sure the user exists; also get the correct
1718                  * upper/lower casing of the name. 
1719                  */
1720                 a = getuser(&tempUS, buf);
1721                 if (a != 0) {
1722                         cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1723                         return;
1724                 }
1725                 strcpy(buf, tempUS.fullname);
1726         }
1727
1728 SKFALL: b = MES_NORMAL;
1729         if (CC->quickroom.QRflags & QR_ANONONLY)
1730                 b = MES_ANON;
1731         if (CC->quickroom.QRflags & QR_ANONOPT) {
1732                 if (anon_flag == 1)
1733                         b = MES_AN2;
1734         }
1735         if ((CC->quickroom.QRflags & QR_MAILBOX) == 0)
1736                 buf[0] = 0;
1737
1738         /* If we're only checking the validity of the request, return
1739          * success without creating the message.
1740          */
1741         if (post == 0) {
1742                 cprintf("%d %s\n", OK, buf);
1743                 return;
1744         }
1745
1746         cprintf("%d send message\n", SEND_LISTING);
1747
1748         /* Read in the message from the client. */
1749         if (CC->fake_postname[0])
1750                 msg = make_message(&CC->usersupp, buf,
1751                         CC->quickroom.QRname, b, e, format_type,
1752                         CC->fake_postname);
1753         else if (CC->fake_username[0])
1754                 msg = make_message(&CC->usersupp, buf,
1755                         CC->quickroom.QRname, b, e, format_type,
1756                         CC->fake_username);
1757         else
1758                 msg = make_message(&CC->usersupp, buf,
1759                         CC->quickroom.QRname, b, e, format_type, "");
1760
1761         if (msg != NULL)
1762                 CtdlSaveMsg(msg, buf, (mtsflag ? AIDEROOM : ""), e, 1);
1763                 CtdlFreeMessage(msg);
1764         CC->fake_postname[0] = '\0';
1765         return;
1766 }
1767
1768
1769
1770 /* 
1771  * message entry - mode 3 (raw)
1772  */
1773 void cmd_ent3(char *entargs)
1774 {
1775         char recp[256];
1776         int a;
1777         int e = 0;
1778         unsigned char ch, which_field;
1779         struct usersupp tempUS;
1780         long msglen;
1781         struct CtdlMessage *msg;
1782         char *tempbuf;
1783
1784         if (CC->internal_pgm == 0) {
1785                 cprintf("%d This command is for internal programs only.\n",
1786                         ERROR);
1787                 return;
1788         }
1789
1790         /* See if there's a recipient, but make sure it's a real one */
1791         extract(recp, entargs, 1);
1792         for (a = 0; a < strlen(recp); ++a)
1793                 if (!isprint(recp[a]))
1794                         strcpy(&recp[a], &recp[a + 1]);
1795         while (isspace(recp[0]))
1796                 strcpy(recp, &recp[1]);
1797         while (isspace(recp[strlen(recp) - 1]))
1798                 recp[strlen(recp) - 1] = 0;
1799
1800         /* If we're in Mail, check the recipient */
1801         if (strlen(recp) > 0) {
1802                 e = alias(recp);        /* alias and mail type */
1803                 if ((recp[0] == 0) || (e == MES_ERROR)) {
1804                         cprintf("%d Unknown address - cannot send message.\n",
1805                                 ERROR + NO_SUCH_USER);
1806                         return;
1807                 }
1808                 if (e == MES_LOCAL) {
1809                         a = getuser(&tempUS, recp);
1810                         if (a != 0) {
1811                                 cprintf("%d No such user.\n",
1812                                         ERROR + NO_SUCH_USER);
1813                                 return;
1814                         }
1815                 }
1816         }
1817
1818         /* At this point, message has been approved. */
1819         if (extract_int(entargs, 0) == 0) {
1820                 cprintf("%d OK to send\n", OK);
1821                 return;
1822         }
1823
1824         msglen = extract_long(entargs, 2);
1825         msg = mallok(sizeof(struct CtdlMessage));
1826         if (msg == NULL) {
1827                 cprintf("%d Out of memory\n", ERROR+INTERNAL_ERROR);
1828                 return;
1829         }
1830
1831         memset(msg, 0, sizeof(struct CtdlMessage));
1832         tempbuf = mallok(msglen);
1833         if (tempbuf == NULL) {
1834                 cprintf("%d Out of memory\n", ERROR+INTERNAL_ERROR);
1835                 phree(msg);
1836                 return;
1837         }
1838
1839         cprintf("%d %ld\n", SEND_BINARY, msglen);
1840
1841         client_read(&ch, 1);                            /* 0xFF magic number */
1842         msg->cm_magic = CTDLMESSAGE_MAGIC;
1843         client_read(&ch, 1);                            /* anon type */
1844         msg->cm_anon_type = ch;
1845         client_read(&ch, 1);                            /* format type */
1846         msg->cm_format_type = ch;
1847         msglen = msglen - 3;
1848
1849         while (msglen > 0) {
1850                 client_read(&which_field, 1);
1851                 --msglen;
1852                 tempbuf[0] = 0;
1853                 do {
1854                         client_read(&ch, 1);
1855                         --msglen;
1856                         a = strlen(tempbuf);
1857                         tempbuf[a+1] = 0;
1858                         tempbuf[a] = ch;
1859                 } while ( (ch != 0) && (msglen > 0) );
1860                 msg->cm_fields[which_field] = strdoop(tempbuf);
1861         }
1862
1863         msg->cm_flags = CM_SKIP_HOOKS;
1864         CtdlSaveMsg(msg, recp, "", e, 0);
1865         CtdlFreeMessage(msg);
1866         phree(tempbuf);
1867 }
1868
1869
1870 /*
1871  * API function to delete messages which match a set of criteria
1872  * (returns the actual number of messages deleted)
1873  */
1874 int CtdlDeleteMessages(char *room_name,         /* which room */
1875                        long dmsgnum,            /* or "0" for any */
1876                        char *content_type       /* or NULL for any */
1877 )
1878 {
1879
1880         struct quickroom qrbuf;
1881         struct cdbdata *cdbfr;
1882         long *msglist = NULL;
1883         int num_msgs = 0;
1884         int i;
1885         int num_deleted = 0;
1886         int delete_this;
1887         struct SuppMsgInfo smi;
1888
1889         lprintf(9, "CtdlDeleteMessages(%s, %ld, %s)\n",
1890                 room_name, dmsgnum, content_type);
1891
1892         /* get room record, obtaining a lock... */
1893         if (lgetroom(&qrbuf, room_name) != 0) {
1894                 lprintf(7, "CtdlDeleteMessages(): Room <%s> not found\n",
1895                         room_name);
1896                 return (0);     /* room not found */
1897         }
1898         cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long));
1899
1900         if (cdbfr != NULL) {
1901                 msglist = mallok(cdbfr->len);
1902                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1903                 num_msgs = cdbfr->len / sizeof(long);
1904                 cdb_free(cdbfr);
1905         }
1906         if (num_msgs > 0) {
1907                 for (i = 0; i < num_msgs; ++i) {
1908                         delete_this = 0x00;
1909
1910                         /* Set/clear a bit for each criterion */
1911
1912                         if ((dmsgnum == 0L) || (msglist[i] == dmsgnum)) {
1913                                 delete_this |= 0x01;
1914                         }
1915                         if (content_type == NULL) {
1916                                 delete_this |= 0x02;
1917                         } else {
1918                                 GetSuppMsgInfo(&smi, msglist[i]);
1919                                 if (!strcasecmp(smi.smi_content_type,
1920                                                 content_type)) {
1921                                         delete_this |= 0x02;
1922                                 }
1923                         }
1924
1925                         /* Delete message only if all bits are set */
1926                         if (delete_this == 0x03) {
1927                                 AdjRefCount(msglist[i], -1);
1928                                 msglist[i] = 0L;
1929                                 ++num_deleted;
1930                         }
1931                 }
1932
1933                 num_msgs = sort_msglist(msglist, num_msgs);
1934                 cdb_store(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long),
1935                           msglist, (num_msgs * sizeof(long)));
1936
1937                 qrbuf.QRhighest = msglist[num_msgs - 1];
1938                 phree(msglist);
1939         }
1940         lputroom(&qrbuf);
1941         lprintf(9, "%d message(s) deleted.\n", num_deleted);
1942         return (num_deleted);
1943 }
1944
1945
1946
1947 /*
1948  * Delete message from current room
1949  */
1950 void cmd_dele(char *delstr)
1951 {
1952         long delnum;
1953         int num_deleted;
1954
1955         getuser(&CC->usersupp, CC->curr_user);
1956         if ((CC->usersupp.axlevel < 6)
1957             && (CC->usersupp.usernum != CC->quickroom.QRroomaide)
1958             && ((CC->quickroom.QRflags & QR_MAILBOX) == 0)
1959             && (!(CC->internal_pgm))) {
1960                 cprintf("%d Higher access required.\n",
1961                         ERROR + HIGHER_ACCESS_REQUIRED);
1962                 return;
1963         }
1964         delnum = extract_long(delstr, 0);
1965
1966         num_deleted = CtdlDeleteMessages(CC->quickroom.QRname, delnum, NULL);
1967
1968         if (num_deleted) {
1969                 cprintf("%d %d message%s deleted.\n", OK,
1970                         num_deleted, ((num_deleted != 1) ? "s" : ""));
1971         } else {
1972                 cprintf("%d Message %ld not found.\n", ERROR, delnum);
1973         }
1974 }
1975
1976
1977 /*
1978  * move a message to another room
1979  */
1980 void cmd_move(char *args)
1981 {
1982         long num;
1983         char targ[32];
1984         struct quickroom qtemp;
1985         int foundit;
1986
1987         num = extract_long(args, 0);
1988         extract(targ, args, 1);
1989
1990         getuser(&CC->usersupp, CC->curr_user);
1991         if ((CC->usersupp.axlevel < 6)
1992             && (CC->usersupp.usernum != CC->quickroom.QRroomaide)) {
1993                 cprintf("%d Higher access required.\n",
1994                         ERROR + HIGHER_ACCESS_REQUIRED);
1995                 return;
1996         }
1997         if (getroom(&qtemp, targ) != 0) {
1998                 cprintf("%d '%s' does not exist.\n", ERROR, targ);
1999                 return;
2000         }
2001         /* Bump the reference count, otherwise the message will be deleted
2002          * from disk when we remove it from the source room.
2003          */
2004         AdjRefCount(num, 1);
2005
2006         /* yank the message out of the current room... */
2007         foundit = CtdlDeleteMessages(CC->quickroom.QRname, num, NULL);
2008
2009         if (foundit) {
2010                 /* put the message into the target room */
2011                 lgetroom(&qtemp, targ);
2012                 qtemp.QRhighest = AddMessageToRoom(&qtemp, num);
2013                 lputroom(&qtemp);
2014                 cprintf("%d Message moved.\n", OK);
2015         } else {
2016                 AdjRefCount(num, (-1));         /* oops */
2017                 cprintf("%d msg %ld does not exist.\n", ERROR, num);
2018         }
2019 }
2020
2021
2022
2023 /*
2024  * GetSuppMsgInfo()  -  Get the supplementary record for a message
2025  */
2026 void GetSuppMsgInfo(struct SuppMsgInfo *smibuf, long msgnum)
2027 {
2028
2029         struct cdbdata *cdbsmi;
2030         long TheIndex;
2031
2032         memset(smibuf, 0, sizeof(struct SuppMsgInfo));
2033         smibuf->smi_msgnum = msgnum;
2034         smibuf->smi_refcount = 1;       /* Default reference count is 1 */
2035
2036         /* Use the negative of the message number for its supp record index */
2037         TheIndex = (0L - msgnum);
2038
2039         cdbsmi = cdb_fetch(CDB_MSGMAIN, &TheIndex, sizeof(long));
2040         if (cdbsmi == NULL) {
2041                 return;         /* record not found; go with defaults */
2042         }
2043         memcpy(smibuf, cdbsmi->ptr,
2044                ((cdbsmi->len > sizeof(struct SuppMsgInfo)) ?
2045                 sizeof(struct SuppMsgInfo) : cdbsmi->len));
2046         cdb_free(cdbsmi);
2047         return;
2048 }
2049
2050
2051 /*
2052  * PutSuppMsgInfo()  -  (re)write supplementary record for a message
2053  */
2054 void PutSuppMsgInfo(struct SuppMsgInfo *smibuf)
2055 {
2056         long TheIndex;
2057
2058         /* Use the negative of the message number for its supp record index */
2059         TheIndex = (0L - smibuf->smi_msgnum);
2060
2061         lprintf(9, "PuttSuppMsgInfo(%ld) - ref count is %d\n",
2062                 smibuf->smi_msgnum, smibuf->smi_refcount);
2063
2064         cdb_store(CDB_MSGMAIN,
2065                   &TheIndex, sizeof(long),
2066                   smibuf, sizeof(struct SuppMsgInfo));
2067
2068 }
2069
2070 /*
2071  * AdjRefCount  -  change the reference count for a message;
2072  *                 delete the message if it reaches zero
2073  */
2074 void AdjRefCount(long msgnum, int incr)
2075 {
2076
2077         struct SuppMsgInfo smi;
2078         long delnum;
2079
2080         /* This is a *tight* critical section; please keep it that way, as
2081          * it may get called while nested in other critical sections.  
2082          * Complicating this any further will surely cause deadlock!
2083          */
2084         begin_critical_section(S_SUPPMSGMAIN);
2085         GetSuppMsgInfo(&smi, msgnum);
2086         smi.smi_refcount += incr;
2087         PutSuppMsgInfo(&smi);
2088         end_critical_section(S_SUPPMSGMAIN);
2089
2090         lprintf(9, "Ref count for message <%ld> after write is <%d>\n",
2091                 msgnum, smi.smi_refcount);
2092
2093         /* If the reference count is now zero, delete the message
2094          * (and its supplementary record as well).
2095          */
2096         if (smi.smi_refcount == 0) {
2097                 lprintf(9, "Deleting message <%ld>\n", msgnum);
2098                 delnum = msgnum;
2099                 cdb_delete(CDB_MSGMAIN, &delnum, sizeof(long));
2100                 delnum = (0L - msgnum);
2101                 cdb_delete(CDB_MSGMAIN, &delnum, sizeof(long));
2102         }
2103 }
2104
2105 /*
2106  * Write a generic object to this room
2107  *
2108  * Note: this could be much more efficient.  Right now we use two temporary
2109  * files, and still pull the message into memory as with all others.
2110  */
2111 void CtdlWriteObject(char *req_room,            /* Room to stuff it in */
2112                         char *content_type,     /* MIME type of this object */
2113                         char *tempfilename,     /* Where to fetch it from */
2114                         struct usersupp *is_mailbox,    /* Mailbox room? */
2115                         int is_binary,          /* Is encoding necessary? */
2116                         int is_unique,          /* Del others of this type? */
2117                         unsigned int flags      /* Internal save flags */
2118                         )
2119 {
2120
2121         FILE *fp, *tempfp;
2122         char filename[PATH_MAX];
2123         char cmdbuf[256];
2124         int ch;
2125         struct quickroom qrbuf;
2126         char roomname[ROOMNAMELEN];
2127         struct CtdlMessage *msg;
2128         size_t len;
2129
2130         if (is_mailbox != NULL)
2131                 MailboxName(roomname, is_mailbox, req_room);
2132         else
2133                 safestrncpy(roomname, req_room, sizeof(roomname));
2134         lprintf(9, "CtdlWriteObject() to <%s> (flags=%d)\n", roomname, flags);
2135
2136         strcpy(filename, tmpnam(NULL));
2137         fp = fopen(filename, "w");
2138         if (fp == NULL)
2139                 return;
2140
2141         tempfp = fopen(tempfilename, "r");
2142         if (tempfp == NULL) {
2143                 fclose(fp);
2144                 unlink(filename);
2145                 return;
2146         }
2147
2148         fprintf(fp, "Content-type: %s\n", content_type);
2149         lprintf(9, "Content-type: %s\n", content_type);
2150
2151         if (is_binary == 0) {
2152                 fprintf(fp, "Content-transfer-encoding: 7bit\n\n");
2153                 while (ch = getc(tempfp), ch > 0)
2154                         putc(ch, fp);
2155                 fclose(tempfp);
2156                 putc(0, fp);
2157                 fclose(fp);
2158         } else {
2159                 fprintf(fp, "Content-transfer-encoding: base64\n\n");
2160                 fclose(tempfp);
2161                 fclose(fp);
2162                 sprintf(cmdbuf, "./base64 -e <%s >>%s",
2163                         tempfilename, filename);
2164                 system(cmdbuf);
2165         }
2166
2167         lprintf(9, "Allocating\n");
2168         msg = mallok(sizeof(struct CtdlMessage));
2169         memset(msg, 0, sizeof(struct CtdlMessage));
2170         msg->cm_magic = CTDLMESSAGE_MAGIC;
2171         msg->cm_anon_type = MES_NORMAL;
2172         msg->cm_format_type = 4;
2173         msg->cm_fields['A'] = strdoop(CC->usersupp.fullname);
2174         msg->cm_fields['O'] = strdoop(req_room);
2175         msg->cm_fields['N'] = strdoop(config.c_nodename);
2176         msg->cm_fields['H'] = strdoop(config.c_humannode);
2177         msg->cm_flags = flags;
2178         
2179         lprintf(9, "Loading\n");
2180         fp = fopen(filename, "rb");
2181         fseek(fp, 0L, SEEK_END);
2182         len = ftell(fp);
2183         rewind(fp);
2184         msg->cm_fields['M'] = mallok(len);
2185         fread(msg->cm_fields['M'], len, 1, fp);
2186         fclose(fp);
2187         unlink(filename);
2188
2189         /* Create the requested room if we have to. */
2190         if (getroom(&qrbuf, roomname) != 0) {
2191                 create_room(roomname, 4, "", 0);
2192         }
2193         /* If the caller specified this object as unique, delete all
2194          * other objects of this type that are currently in the room.
2195          */
2196         if (is_unique) {
2197                 lprintf(9, "Deleted %d other msgs of this type\n",
2198                         CtdlDeleteMessages(roomname, 0L, content_type));
2199         }
2200         /* Now write the data */
2201         CtdlSaveMsg(msg, "", roomname, MES_LOCAL, 1);
2202         CtdlFreeMessage(msg);
2203 }