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