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