]> code.citadel.org Git - citadel.git/blob - citadel/msgbase.c
* When parsing incoming Date fields, replace with the current date/time if
[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                 omprintf("X-UIDL: %ld%s", msg_num, nl);
990                 for (i = 0; i < 256; ++i) {
991                         if (TheMessage->cm_fields[i]) {
992                                 mptr = TheMessage->cm_fields[i];
993
994                                 if (i == 'A') {
995                                         strcpy(luser, mptr);
996                                 } else if (i == 'P') {
997                                         omprintf("Path: %s%s", mptr, nl);
998                                         for (a = 0; a < strlen(mptr); ++a) {
999                                                 if (mptr[a] == '!') {
1000                                                         strcpy(mptr, &mptr[a + 1]);
1001                                                         a = 0;
1002                                                 }
1003                                         }
1004                                         strcpy(suser, mptr);
1005                                 } else if (i == 'U')
1006                                         omprintf("Subject: %s%s", mptr, nl);
1007                                 else if (i == 'I')
1008                                         strcpy(mid, mptr);
1009                                 else if (i == 'H')
1010                                         strcpy(lnode, mptr);
1011                                 else if (i == 'O')
1012                                         omprintf("X-Citadel-Room: %s%s",
1013                                                 mptr, nl);
1014                                 else if (i == 'N')
1015                                         strcpy(snode, mptr);
1016                                 else if (i == 'R')
1017                                         omprintf("To: %s%s", mptr, nl);
1018                                 else if (i == 'T') {
1019                                         xtime = atol(mptr);
1020                                         omprintf("Date: %s", asctime(localtime(&xtime)));
1021                                 }
1022                         }
1023                 }
1024         }
1025
1026         if (mode == MT_RFC822) {
1027                 if (!strcasecmp(snode, NODENAME)) {
1028                         strcpy(snode, FQDN);
1029                 }
1030                 omprintf("Message-ID: <%s@%s>%s", mid, snode, nl);
1031                 PerformUserHooks(luser, (-1L), EVT_OUTPUTMSG);
1032                 omprintf("From: %s@%s (%s)%s", suser, snode, luser, nl);
1033                 omprintf("Organization: %s%s", lnode, nl);
1034         }
1035
1036         /* end header processing loop ... at this point, we're in the text */
1037
1038         mptr = TheMessage->cm_fields['M'];
1039
1040         /* Tell the client about the MIME parts in this message */
1041         if (TheMessage->cm_format_type == FMT_RFC822) {
1042                 if (mode == MT_CITADEL) {
1043                         mime_parser(mptr, NULL, *list_this_part);
1044                 }
1045                 else if (mode == MT_MIME) {     /* list parts only */
1046                         mime_parser(mptr, NULL, *list_this_part);
1047                         if (do_proto) cprintf("000\n");
1048                         CtdlFreeMessage(TheMessage);
1049                         return(om_ok);
1050                 }
1051                 else if (mode == MT_RFC822) {   /* unparsed RFC822 dump */
1052                         /* FIX ... we have to put some code in here to avoid
1053                          * printing duplicate header information when both
1054                          * Citadel and RFC822 headers exist.  Preference should
1055                          * probably be given to the RFC822 headers.
1056                          */
1057                         while (ch=*(mptr++), ch!=0) {
1058                                 if (ch==13) ;
1059                                 else if (ch==10) omprintf("%s", nl);
1060                                 else omprintf("%c", ch);
1061                         }
1062                         if (do_proto) cprintf("000\n");
1063                         CtdlFreeMessage(TheMessage);
1064                         return(om_ok);
1065                 }
1066         }
1067
1068         if (headers_only) {
1069                 if (do_proto) cprintf("000\n");
1070                 CtdlFreeMessage(TheMessage);
1071                 return(om_ok);
1072         }
1073
1074         /* signify start of msg text */
1075         if (mode == MT_CITADEL)
1076                 if (do_proto) cprintf("text\n");
1077         if (mode == MT_RFC822) {
1078                 omprintf("%s", nl);
1079         }
1080
1081         /* If the format type on disk is 1 (fixed-format), then we want
1082          * everything to be output completely literally ... regardless of
1083          * what message transfer format is in use.
1084          */
1085         if (TheMessage->cm_format_type == FMT_FIXED) {
1086                 strcpy(buf, "");
1087                 while (ch = *mptr++, ch > 0) {
1088                         if (ch == 13)
1089                                 ch = 10;
1090                         if ((ch == 10) || (strlen(buf) > 250)) {
1091                                 omprintf("%s%s", buf, nl);
1092                                 strcpy(buf, "");
1093                         } else {
1094                                 buf[strlen(buf) + 1] = 0;
1095                                 buf[strlen(buf)] = ch;
1096                         }
1097                 }
1098                 if (strlen(buf) > 0)
1099                         omprintf("%s%s", buf, nl);
1100         }
1101
1102         /* If the message on disk is format 0 (Citadel vari-format), we
1103          * output using the formatter at 80 columns.  This is the final output
1104          * form if the transfer format is RFC822, but if the transfer format
1105          * is Citadel proprietary, it'll still work, because the indentation
1106          * for new paragraphs is correct and the client will reformat the
1107          * message to the reader's screen width.
1108          */
1109         if (TheMessage->cm_format_type == FMT_CITADEL) {
1110                 omfmout(mptr);
1111         }
1112
1113         /* If the message on disk is format 4 (MIME), we've gotta hand it
1114          * off to the MIME parser.  The client has already been told that
1115          * this message is format 1 (fixed format), so the callback function
1116          * we use will display those parts as-is.
1117          */
1118         if (TheMessage->cm_format_type == FMT_RFC822) {
1119                 CtdlAllocUserData(SYM_MA_INFO, sizeof(struct ma_info));
1120                 memset(ma, 0, sizeof(struct ma_info));
1121                 mime_parser(mptr, NULL, *fixed_output);
1122         }
1123
1124         /* now we're done */
1125         if (do_proto) cprintf("000\n");
1126         CtdlFreeMessage(TheMessage);
1127         return(om_ok);
1128 }
1129
1130
1131
1132 /*
1133  * display a message (mode 0 - Citadel proprietary)
1134  */
1135 void cmd_msg0(char *cmdbuf)
1136 {
1137         long msgid;
1138         int headers_only = 0;
1139
1140         msgid = extract_long(cmdbuf, 0);
1141         headers_only = extract_int(cmdbuf, 1);
1142
1143         CtdlOutputMsg(msgid, MT_CITADEL, headers_only, 1, NULL, -1, 0);
1144         return;
1145 }
1146
1147
1148 /*
1149  * display a message (mode 2 - RFC822)
1150  */
1151 void cmd_msg2(char *cmdbuf)
1152 {
1153         long msgid;
1154         int headers_only = 0;
1155
1156         msgid = extract_long(cmdbuf, 0);
1157         headers_only = extract_int(cmdbuf, 1);
1158
1159         CtdlOutputMsg(msgid, MT_RFC822, headers_only, 1, NULL, -1, 1);
1160 }
1161
1162
1163
1164 /* 
1165  * display a message (mode 3 - IGnet raw format - internal programs only)
1166  */
1167 void cmd_msg3(char *cmdbuf)
1168 {
1169         long msgnum;
1170         struct CtdlMessage *msg;
1171         struct ser_ret smr;
1172
1173         if (CC->internal_pgm == 0) {
1174                 cprintf("%d This command is for internal programs only.\n",
1175                         ERROR);
1176                 return;
1177         }
1178
1179         msgnum = extract_long(cmdbuf, 0);
1180         msg = CtdlFetchMessage(msgnum);
1181         if (msg == NULL) {
1182                 cprintf("%d Message %ld not found.\n", 
1183                         ERROR, msgnum);
1184                 return;
1185         }
1186
1187         serialize_message(&smr, msg);
1188         CtdlFreeMessage(msg);
1189
1190         if (smr.len == 0) {
1191                 cprintf("%d Unable to serialize message\n",
1192                         ERROR+INTERNAL_ERROR);
1193                 return;
1194         }
1195
1196         cprintf("%d %ld\n", BINARY_FOLLOWS, smr.len);
1197         client_write(smr.ser, smr.len);
1198         phree(smr.ser);
1199 }
1200
1201
1202
1203 /* 
1204  * display a message (mode 4 - MIME) (FIX ... still evolving, not complete)
1205  */
1206 void cmd_msg4(char *cmdbuf)
1207 {
1208         long msgid;
1209
1210         msgid = extract_long(cmdbuf, 0);
1211         CtdlOutputMsg(msgid, MT_MIME, 0, 1, NULL, -1, 0);
1212 }
1213
1214 /*
1215  * Open a component of a MIME message as a download file 
1216  */
1217 void cmd_opna(char *cmdbuf)
1218 {
1219         long msgid;
1220
1221         CtdlAllocUserData(SYM_DESIRED_SECTION, 64);
1222
1223         msgid = extract_long(cmdbuf, 0);
1224         extract(desired_section, cmdbuf, 1);
1225
1226         CtdlOutputMsg(msgid, MT_DOWNLOAD, 0, 1, NULL, -1, 1);
1227 }                       
1228
1229
1230 /*
1231  * Save a message pointer into a specified room
1232  * (Returns 0 for success, nonzero for failure)
1233  * roomname may be NULL to use the current room
1234  */
1235 int CtdlSaveMsgPointerInRoom(char *roomname, long msgid, int flags) {
1236         int i;
1237         char hold_rm[ROOMNAMELEN];
1238         struct cdbdata *cdbfr;
1239         int num_msgs;
1240         long *msglist;
1241         long highest_msg = 0L;
1242         struct CtdlMessage *msg = NULL;
1243
1244         lprintf(9, "CtdlSaveMsgPointerInRoom(%s, %ld, %d)\n",
1245                 roomname, msgid, flags);
1246
1247         strcpy(hold_rm, CC->quickroom.QRname);
1248
1249         /* We may need to check to see if this message is real */
1250         if (  (flags & SM_VERIFY_GOODNESS)
1251            || (flags & SM_DO_REPL_CHECK)
1252            ) {
1253                 msg = CtdlFetchMessage(msgid);
1254                 if (msg == NULL) return(ERROR + ILLEGAL_VALUE);
1255         }
1256
1257         /* Perform replication checks if necessary */
1258         if ( (flags & SM_DO_REPL_CHECK) && (msg != NULL) ) {
1259
1260                 if (getroom(&CC->quickroom,
1261                    ((roomname != NULL) ? roomname : CC->quickroom.QRname) )
1262                    != 0) {
1263                         lprintf(9, "No such room <%s>\n", roomname);
1264                         if (msg != NULL) CtdlFreeMessage(msg);
1265                         return(ERROR + ROOM_NOT_FOUND);
1266                 }
1267
1268                 if (ReplicationChecks(msg) != 0) {
1269                         getroom(&CC->quickroom, hold_rm);
1270                         if (msg != NULL) CtdlFreeMessage(msg);
1271                         lprintf(9, "Did replication, and newer exists\n");
1272                         return(0);
1273                 }
1274         }
1275
1276         /* Now the regular stuff */
1277         if (lgetroom(&CC->quickroom,
1278            ((roomname != NULL) ? roomname : CC->quickroom.QRname) )
1279            != 0) {
1280                 lprintf(9, "No such room <%s>\n", roomname);
1281                 if (msg != NULL) CtdlFreeMessage(msg);
1282                 return(ERROR + ROOM_NOT_FOUND);
1283         }
1284
1285         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->quickroom.QRnumber, sizeof(long));
1286         if (cdbfr == NULL) {
1287                 msglist = NULL;
1288                 num_msgs = 0;
1289         } else {
1290                 msglist = mallok(cdbfr->len);
1291                 if (msglist == NULL)
1292                         lprintf(3, "ERROR malloc msglist!\n");
1293                 num_msgs = cdbfr->len / sizeof(long);
1294                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1295                 cdb_free(cdbfr);
1296         }
1297
1298
1299         /* Make sure the message doesn't already exist in this room.  It
1300          * is absolutely taboo to have more than one reference to the same
1301          * message in a room.
1302          */
1303         if (num_msgs > 0) for (i=0; i<num_msgs; ++i) {
1304                 if (msglist[i] == msgid) {
1305                         lputroom(&CC->quickroom);       /* unlock the room */
1306                         getroom(&CC->quickroom, hold_rm);
1307                         if (msg != NULL) CtdlFreeMessage(msg);
1308                         return(ERROR + ALREADY_EXISTS);
1309                 }
1310         }
1311
1312         /* Now add the new message */
1313         ++num_msgs;
1314         msglist = reallok(msglist,
1315                           (num_msgs * sizeof(long)));
1316
1317         if (msglist == NULL) {
1318                 lprintf(3, "ERROR: can't realloc message list!\n");
1319         }
1320         msglist[num_msgs - 1] = msgid;
1321
1322         /* Sort the message list, so all the msgid's are in order */
1323         num_msgs = sort_msglist(msglist, num_msgs);
1324
1325         /* Determine the highest message number */
1326         highest_msg = msglist[num_msgs - 1];
1327
1328         /* Write it back to disk. */
1329         cdb_store(CDB_MSGLISTS, &CC->quickroom.QRnumber, sizeof(long),
1330                   msglist, num_msgs * sizeof(long));
1331
1332         /* Free up the memory we used. */
1333         phree(msglist);
1334
1335         /* Update the highest-message pointer and unlock the room. */
1336         CC->quickroom.QRhighest = highest_msg;
1337         lputroom(&CC->quickroom);
1338         getroom(&CC->quickroom, hold_rm);
1339
1340         /* Bump the reference count for this message. */
1341         if ((flags & SM_DONT_BUMP_REF)==0) {
1342                 AdjRefCount(msgid, +1);
1343         }
1344
1345         /* Return success. */
1346         if (msg != NULL) CtdlFreeMessage(msg);
1347         return (0);
1348 }
1349
1350
1351
1352 /*
1353  * Message base operation to send a message to the master file
1354  * (returns new message number)
1355  *
1356  * This is the back end for CtdlSaveMsg() and should not be directly
1357  * called by server-side modules.
1358  *
1359  */
1360 long send_message(struct CtdlMessage *msg,      /* pointer to buffer */
1361                 int generate_id,                /* generate 'I' field? */
1362                 FILE *save_a_copy)              /* save a copy to disk? */
1363 {
1364         long newmsgid;
1365         long retval;
1366         char msgidbuf[32];
1367         struct ser_ret smr;
1368
1369         /* Get a new message number */
1370         newmsgid = get_new_message_number();
1371         sprintf(msgidbuf, "%ld", newmsgid);
1372
1373         if (generate_id) {
1374                 msg->cm_fields['I'] = strdoop(msgidbuf);
1375         }
1376         
1377         serialize_message(&smr, msg);
1378
1379         if (smr.len == 0) {
1380                 cprintf("%d Unable to serialize message\n",
1381                         ERROR+INTERNAL_ERROR);
1382                 return (-1L);
1383         }
1384
1385         /* Write our little bundle of joy into the message base */
1386         begin_critical_section(S_MSGMAIN);
1387         if (cdb_store(CDB_MSGMAIN, &newmsgid, sizeof(long),
1388                       smr.ser, smr.len) < 0) {
1389                 lprintf(2, "Can't store message\n");
1390                 retval = 0L;
1391         } else {
1392                 retval = newmsgid;
1393         }
1394         end_critical_section(S_MSGMAIN);
1395
1396         /* If the caller specified that a copy should be saved to a particular
1397          * file handle, do that now too.
1398          */
1399         if (save_a_copy != NULL) {
1400                 fwrite(smr.ser, smr.len, 1, save_a_copy);
1401         }
1402
1403         /* Free the memory we used for the serialized message */
1404         phree(smr.ser);
1405
1406         /* Return the *local* message ID to the caller
1407          * (even if we're storing an incoming network message)
1408          */
1409         return(retval);
1410 }
1411
1412
1413
1414 /*
1415  * Serialize a struct CtdlMessage into the format used on disk and network.
1416  * 
1417  * This function loads up a "struct ser_ret" (defined in server.h) which
1418  * contains the length of the serialized message and a pointer to the
1419  * serialized message in memory.  THE LATTER MUST BE FREED BY THE CALLER.
1420  */
1421 void serialize_message(struct ser_ret *ret,             /* return values */
1422                         struct CtdlMessage *msg)        /* unserialized msg */
1423 {
1424         size_t wlen;
1425         int i;
1426         static char *forder = FORDER;
1427
1428         if (is_valid_message(msg) == 0) return;         /* self check */
1429
1430         ret->len = 3;
1431         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL)
1432                 ret->len = ret->len +
1433                         strlen(msg->cm_fields[(int)forder[i]]) + 2;
1434
1435         lprintf(9, "calling malloc\n");
1436         ret->ser = mallok(ret->len);
1437         if (ret->ser == NULL) {
1438                 ret->len = 0;
1439                 return;
1440         }
1441
1442         ret->ser[0] = 0xFF;
1443         ret->ser[1] = msg->cm_anon_type;
1444         ret->ser[2] = msg->cm_format_type;
1445         wlen = 3;
1446
1447         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL) {
1448                 ret->ser[wlen++] = (char)forder[i];
1449                 strcpy(&ret->ser[wlen], msg->cm_fields[(int)forder[i]]);
1450                 wlen = wlen + strlen(msg->cm_fields[(int)forder[i]]) + 1;
1451         }
1452         if (ret->len != wlen) lprintf(3, "ERROR: len=%d wlen=%d\n",
1453                 ret->len, wlen);
1454
1455         return;
1456 }
1457
1458
1459
1460 /*
1461  * Back end for the ReplicationChecks() function
1462  */
1463 void check_repl(long msgnum) {
1464         struct CtdlMessage *msg;
1465         time_t timestamp = (-1L);
1466
1467         lprintf(9, "check_repl() found message %ld\n", msgnum);
1468         msg = CtdlFetchMessage(msgnum);
1469         if (msg == NULL) return;
1470         if (msg->cm_fields['T'] != NULL) {
1471                 timestamp = atol(msg->cm_fields['T']);
1472         }
1473         CtdlFreeMessage(msg);
1474
1475         if (timestamp > msg_repl->highest) {
1476                 msg_repl->highest = timestamp;  /* newer! */
1477                 lprintf(9, "newer!\n");
1478                 return;
1479         }
1480         lprintf(9, "older!\n");
1481
1482         /* Existing isn't newer?  Then delete the old one(s). */
1483         CtdlDeleteMessages(CC->quickroom.QRname, msgnum, NULL);
1484 }
1485
1486
1487 /*
1488  * Check to see if any messages already exist which carry the same Extended ID
1489  * as this one.  
1490  *
1491  * If any are found:
1492  * -> With older timestamps: delete them and return 0.  Message will be saved.
1493  * -> With newer timestamps: return 1.  Message save will be aborted.
1494  */
1495 int ReplicationChecks(struct CtdlMessage *msg) {
1496         struct CtdlMessage *template;
1497         int abort_this = 0;
1498
1499         lprintf(9, "ReplicationChecks() started\n");
1500         /* No extended id?  Don't do anything. */
1501         if (msg->cm_fields['E'] == NULL) return 0;
1502         if (strlen(msg->cm_fields['E']) == 0) return 0;
1503         lprintf(9, "Extended ID: <%s>\n", msg->cm_fields['E']);
1504
1505         CtdlAllocUserData(SYM_REPL, sizeof(struct repl));
1506         strcpy(msg_repl->extended_id, msg->cm_fields['E']);
1507         msg_repl->highest = atol(msg->cm_fields['T']);
1508
1509         template = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
1510         memset(template, 0, sizeof(struct CtdlMessage));
1511         template->cm_fields['E'] = strdoop(msg->cm_fields['E']);
1512
1513         CtdlForEachMessage(MSGS_ALL, 0L, NULL, template, check_repl);
1514
1515         /* If a newer message exists with the same Extended ID, abort
1516          * this save.
1517          */
1518         if (msg_repl->highest > atol(msg->cm_fields['T']) ) {
1519                 abort_this = 1;
1520                 }
1521
1522         CtdlFreeMessage(template);
1523         lprintf(9, "ReplicationChecks() returning %d\n", abort_this);
1524         return(abort_this);
1525 }
1526
1527
1528
1529
1530 /*
1531  * Save a message to disk
1532  */
1533 long CtdlSaveMsg(struct CtdlMessage *msg,       /* message to save */
1534                 char *rec,                      /* Recipient (mail) */
1535                 char *force,                    /* force a particular room? */
1536                 int mailtype,                   /* local or remote type */
1537                 int generate_id)                /* 1 = generate 'I' field */
1538 {
1539         char aaa[100];
1540         char hold_rm[ROOMNAMELEN];
1541         char actual_rm[ROOMNAMELEN];
1542         char force_room[ROOMNAMELEN];
1543         char content_type[256];                 /* We have to learn this */
1544         char recipient[256];
1545         long newmsgid;
1546         char *mptr = NULL;
1547         struct usersupp userbuf;
1548         int a;
1549         struct SuppMsgInfo smi;
1550         FILE *network_fp = NULL;
1551         static int seqnum = 1;
1552         struct CtdlMessage *imsg;
1553         char *instr;
1554
1555         lprintf(9, "CtdlSaveMsg() called\n");
1556         if (is_valid_message(msg) == 0) return(-1);     /* self check */
1557
1558         /* If this message has no timestamp, we take the liberty of
1559          * giving it one, right now.
1560          */
1561         if (msg->cm_fields['T'] == NULL) {
1562                 lprintf(9, "Generating timestamp\n");
1563                 sprintf(aaa, "%ld", time(NULL));
1564                 msg->cm_fields['T'] = strdoop(aaa);
1565         }
1566
1567         /* If this message has no path, we generate one.
1568          */
1569         if (msg->cm_fields['P'] == NULL) {
1570                 lprintf(9, "Generating path\n");
1571                 if (msg->cm_fields['A'] != NULL) {
1572                         msg->cm_fields['P'] = strdoop(msg->cm_fields['A']);
1573                         for (a=0; a<strlen(msg->cm_fields['P']); ++a) {
1574                                 if (isspace(msg->cm_fields['P'][a])) {
1575                                         msg->cm_fields['P'][a] = ' ';
1576                                 }
1577                         }
1578                 }
1579                 else {
1580                         msg->cm_fields['P'] = strdoop("unknown");
1581                 }
1582         }
1583
1584         strcpy(force_room, force);
1585
1586         /* Strip non-printable characters out of the recipient name */
1587         strcpy(recipient, rec);
1588         for (a = 0; a < strlen(recipient); ++a)
1589                 if (!isprint(recipient[a]))
1590                         strcpy(&recipient[a], &recipient[a + 1]);
1591
1592         /* Learn about what's inside, because it's what's inside that counts */
1593         lprintf(9, "Learning what's inside\n");
1594         if (msg->cm_fields['M'] == NULL) {
1595                 lprintf(1, "ERROR: attempt to save message with NULL body\n");
1596         }
1597
1598         switch (msg->cm_format_type) {
1599         case 0:
1600                 strcpy(content_type, "text/x-citadel-variformat");
1601                 break;
1602         case 1:
1603                 strcpy(content_type, "text/plain");
1604                 break;
1605         case 4:
1606                 strcpy(content_type, "text/plain");
1607                 /* advance past header fields */
1608                 mptr = msg->cm_fields['M'];
1609                 a = strlen(mptr);
1610                 while (--a) {
1611                         if (!strncasecmp(mptr, "Content-type: ", 14)) {
1612                                 safestrncpy(content_type, mptr,
1613                                             sizeof(content_type));
1614                                 strcpy(content_type, &content_type[14]);
1615                                 for (a = 0; a < strlen(content_type); ++a)
1616                                         if ((content_type[a] == ';')
1617                                             || (content_type[a] == ' ')
1618                                             || (content_type[a] == 13)
1619                                             || (content_type[a] == 10))
1620                                                 content_type[a] = 0;
1621                                 break;
1622                         }
1623                         ++mptr;
1624                 }
1625         }
1626
1627         /* Goto the correct room */
1628         lprintf(9, "Switching rooms\n");
1629         strcpy(hold_rm, CC->quickroom.QRname);
1630         strcpy(actual_rm, CC->quickroom.QRname);
1631
1632         /* If the user is a twit, move to the twit room for posting */
1633         lprintf(9, "Handling twit stuff\n");
1634         if (TWITDETECT) {
1635                 if (CC->usersupp.axlevel == 2) {
1636                         strcpy(hold_rm, actual_rm);
1637                         strcpy(actual_rm, config.c_twitroom);
1638                 }
1639         }
1640
1641         /* ...or if this message is destined for Aide> then go there. */
1642         if (strlen(force_room) > 0) {
1643                 strcpy(actual_rm, force_room);
1644         }
1645
1646         lprintf(9, "Possibly relocating\n");
1647         if (strcasecmp(actual_rm, CC->quickroom.QRname)) {
1648                 getroom(&CC->quickroom, actual_rm);
1649         }
1650
1651         /*
1652          * If this message has no O (room) field, generate one.
1653          */
1654         if (msg->cm_fields['O'] == NULL) {
1655                 msg->cm_fields['O'] = strdoop(CC->quickroom.QRname);
1656         }
1657
1658         /* Perform "before save" hooks (aborting if any return nonzero) */
1659         lprintf(9, "Performing before-save hooks\n");
1660         if (PerformMessageHooks(msg, EVT_BEFORESAVE) > 0) return(-1);
1661
1662         /* If this message has an Extended ID, perform replication checks */
1663         lprintf(9, "Performing replication checks\n");
1664         if (ReplicationChecks(msg) > 0) return(-1);
1665
1666         /* Network mail - send a copy to the network program. */
1667         if ((strlen(recipient) > 0) && (mailtype == MES_BINARY)) {
1668                 lprintf(9, "Sending network spool\n");
1669                 sprintf(aaa, "./network/spoolin/netmail.%04lx.%04x.%04x",
1670                         (long) getpid(), CC->cs_pid, ++seqnum);
1671                 lprintf(9, "Saving a copy to %s\n", aaa);
1672                 network_fp = fopen(aaa, "ab+");
1673                 if (network_fp == NULL)
1674                         lprintf(2, "ERROR: %s\n", strerror(errno));
1675         }
1676
1677         /* Save it to disk */
1678         lprintf(9, "Saving to disk\n");
1679         newmsgid = send_message(msg, generate_id, network_fp);
1680         if (network_fp != NULL) {
1681                 fclose(network_fp);
1682                 system("exec nohup ./netproc -i >/dev/null 2>&1 &");
1683         }
1684
1685         if (newmsgid <= 0L) return(-1);
1686
1687         /* Write a supplemental message info record.  This doesn't have to
1688          * be a critical section because nobody else knows about this message
1689          * yet.
1690          */
1691         lprintf(9, "Creating SuppMsgInfo record\n");
1692         memset(&smi, 0, sizeof(struct SuppMsgInfo));
1693         smi.smi_msgnum = newmsgid;
1694         smi.smi_refcount = 0;
1695         safestrncpy(smi.smi_content_type, content_type, 64);
1696         PutSuppMsgInfo(&smi);
1697
1698         /* Now figure out where to store the pointers */
1699         lprintf(9, "Storing pointers\n");
1700
1701         /* If this is being done by the networker delivering a private
1702          * message, we want to BYPASS saving the sender's copy (because there
1703          * is no local sender; it would otherwise go to the Trashcan).
1704          */
1705         if ((!CC->internal_pgm) || (strlen(recipient) == 0)) {
1706                 CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0);
1707         }
1708
1709         /* For internet mail, drop a copy in the outbound queue room */
1710         if (mailtype == MES_INTERNET) {
1711                 CtdlSaveMsgPointerInRoom(SMTP_SPOOLOUT_ROOM, newmsgid, 0);
1712         }
1713
1714         /* Bump this user's messages posted counter. */
1715         lprintf(9, "Updating user\n");
1716         lgetuser(&CC->usersupp, CC->curr_user);
1717         CC->usersupp.posted = CC->usersupp.posted + 1;
1718         lputuser(&CC->usersupp);
1719
1720         /* If this is private, local mail, make a copy in the
1721          * recipient's mailbox and bump the reference count.
1722          */
1723         if ((strlen(recipient) > 0) && (mailtype == MES_LOCAL)) {
1724                 if (getuser(&userbuf, recipient) == 0) {
1725                         lprintf(9, "Delivering private mail\n");
1726                         MailboxName(actual_rm, &userbuf, MAILROOM);
1727                         CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0);
1728                 }
1729         }
1730
1731         /* Perform "after save" hooks */
1732         lprintf(9, "Performing after-save hooks\n");
1733         PerformMessageHooks(msg, EVT_AFTERSAVE);
1734
1735         /* */
1736         lprintf(9, "Returning to original room\n");
1737         if (strcasecmp(hold_rm, CC->quickroom.QRname))
1738                 getroom(&CC->quickroom, hold_rm);
1739
1740         /* For internet mail, generate delivery instructions 
1741          * (Yes, this is recursive!   Deal with it!)
1742          */
1743         if (mailtype == MES_INTERNET) {
1744                 lprintf(9, "Generating delivery instructions\n");
1745                 instr = mallok(2048);
1746                 sprintf(instr,
1747                         "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n"
1748                         "remote|%s|0||\n",
1749                         SPOOLMIME, newmsgid, time(NULL), recipient );
1750
1751                 imsg = mallok(sizeof(struct CtdlMessage));
1752                 memset(imsg, 0, sizeof(struct CtdlMessage));
1753                 imsg->cm_magic = CTDLMESSAGE_MAGIC;
1754                 imsg->cm_anon_type = MES_NORMAL;
1755                 imsg->cm_format_type = FMT_RFC822;
1756                 imsg->cm_fields['A'] = strdoop("Citadel");
1757                 imsg->cm_fields['M'] = instr;
1758                 CtdlSaveMsg(imsg, "", SMTP_SPOOLOUT_ROOM, MES_LOCAL, 1);
1759                 CtdlFreeMessage(imsg);
1760         }
1761
1762         return(newmsgid);
1763 }
1764
1765
1766
1767 /*
1768  * Convenience function for generating small administrative messages.
1769  */
1770 void quickie_message(char *from, char *to, char *room, char *text)
1771 {
1772         struct CtdlMessage *msg;
1773
1774         msg = mallok(sizeof(struct CtdlMessage));
1775         memset(msg, 0, sizeof(struct CtdlMessage));
1776         msg->cm_magic = CTDLMESSAGE_MAGIC;
1777         msg->cm_anon_type = MES_NORMAL;
1778         msg->cm_format_type = 0;
1779         msg->cm_fields['A'] = strdoop(from);
1780         msg->cm_fields['O'] = strdoop(room);
1781         msg->cm_fields['N'] = strdoop(NODENAME);
1782         if (to != NULL)
1783                 msg->cm_fields['R'] = strdoop(to);
1784         msg->cm_fields['M'] = strdoop(text);
1785
1786         CtdlSaveMsg(msg, "", room, MES_LOCAL, 1);
1787         CtdlFreeMessage(msg);
1788         syslog(LOG_NOTICE, text);
1789 }
1790
1791
1792
1793 /*
1794  * Back end function used by make_message() and similar functions
1795  */
1796 char *CtdlReadMessageBody(char *terminator,     /* token signalling EOT */
1797                         size_t maxlen,          /* maximum message length */
1798                         char *exist             /* if non-null, append to it;
1799                                                    exist is ALWAYS freed  */
1800                         ) {
1801         char buf[256];
1802         size_t message_len = 0;
1803         size_t buffer_len = 0;
1804         char *ptr, *append;
1805         char *m;
1806
1807         if (exist == NULL) {
1808                 m = mallok(4096);
1809         }
1810         else {
1811                 m = reallok(exist, strlen(exist) + 4096);
1812                 if (m == NULL) phree(exist);
1813         }
1814         if (m == NULL) {
1815                 while ( (client_gets(buf)>0) && strcmp(buf, terminator) ) ;;
1816                 return(NULL);
1817         } else {
1818                 buffer_len = 4096;
1819                 m[0] = 0;
1820                 message_len = 0;
1821         }
1822         /* read in the lines of message text one by one */
1823         append = NULL;
1824         while ( (client_gets(buf)>0) && strcmp(buf, terminator) ) {
1825
1826                 /* augment the buffer if we have to */
1827                 if ((message_len + strlen(buf) + 2) > buffer_len) {
1828                         lprintf(9, "realloking\n");
1829                         ptr = reallok(m, (buffer_len * 2) );
1830                         if (ptr == NULL) {      /* flush if can't allocate */
1831                                 while ( (client_gets(buf)>0) &&
1832                                         strcmp(buf, terminator)) ;;
1833                                 return(m);
1834                         } else {
1835                                 buffer_len = (buffer_len * 2);
1836                                 m = ptr;
1837                                 append = NULL;
1838                                 lprintf(9, "buffer_len is %d\n", buffer_len);
1839                         }
1840                 }
1841
1842                 if (append == NULL) append = m;
1843                 while (strlen(append) > 0) ++append;
1844                 strcpy(append, buf);
1845                 strcat(append, "\n");
1846                 message_len = message_len + strlen(buf) + 1;
1847
1848                 /* if we've hit the max msg length, flush the rest */
1849                 if (message_len >= maxlen) {
1850                         while ( (client_gets(buf)>0) && strcmp(buf, terminator)) ;;
1851                         return(m);
1852                 }
1853         }
1854         return(m);
1855 }
1856
1857
1858
1859
1860 /*
1861  * Build a binary message to be saved on disk.
1862  */
1863
1864 struct CtdlMessage *make_message(
1865         struct usersupp *author,        /* author's usersupp structure */
1866         char *recipient,                /* NULL if it's not mail */
1867         char *room,                     /* room where it's going */
1868         int type,                       /* see MES_ types in header file */
1869         int net_type,                   /* see MES_ types in header file */
1870         int format_type,                /* local or remote (see citadel.h) */
1871         char *fake_name)                /* who we're masquerading as */
1872 {
1873
1874         int a;
1875         char dest_node[32];
1876         char buf[256];
1877         struct CtdlMessage *msg;
1878
1879         msg = mallok(sizeof(struct CtdlMessage));
1880         memset(msg, 0, sizeof(struct CtdlMessage));
1881         msg->cm_magic = CTDLMESSAGE_MAGIC;
1882         msg->cm_anon_type = type;
1883         msg->cm_format_type = format_type;
1884
1885         /* Don't confuse the poor folks if it's not routed mail. */
1886         strcpy(dest_node, "");
1887
1888         /* If net_type is MES_BINARY, split out the destination node. */
1889         if (net_type == MES_BINARY) {
1890                 strcpy(dest_node, NODENAME);
1891                 for (a = 0; a < strlen(recipient); ++a) {
1892                         if (recipient[a] == '@') {
1893                                 recipient[a] = 0;
1894                                 strcpy(dest_node, &recipient[a + 1]);
1895                         }
1896                 }
1897         }
1898
1899         /* if net_type is MES_INTERNET, set the dest node to 'internet' */
1900         if (net_type == MES_INTERNET) {
1901                 strcpy(dest_node, "internet");
1902         }
1903
1904         while (isspace(recipient[strlen(recipient) - 1]))
1905                 recipient[strlen(recipient) - 1] = 0;
1906
1907         sprintf(buf, "cit%ld", author->usernum);                /* Path */
1908         msg->cm_fields['P'] = strdoop(buf);
1909
1910         sprintf(buf, "%ld", time(NULL));                        /* timestamp */
1911         msg->cm_fields['T'] = strdoop(buf);
1912
1913         if (fake_name[0])                                       /* author */
1914                 msg->cm_fields['A'] = strdoop(fake_name);
1915         else
1916                 msg->cm_fields['A'] = strdoop(author->fullname);
1917
1918         if (CC->quickroom.QRflags & QR_MAILBOX)                 /* room */
1919                 msg->cm_fields['O'] = strdoop(&CC->quickroom.QRname[11]);
1920         else
1921                 msg->cm_fields['O'] = strdoop(CC->quickroom.QRname);
1922
1923         msg->cm_fields['N'] = strdoop(NODENAME);                /* nodename */
1924         msg->cm_fields['H'] = strdoop(HUMANNODE);               /* hnodename */
1925
1926         if (recipient[0] != 0)
1927                 msg->cm_fields['R'] = strdoop(recipient);
1928         if (dest_node[0] != 0)
1929                 msg->cm_fields['D'] = strdoop(dest_node);
1930
1931
1932         msg->cm_fields['M'] = CtdlReadMessageBody("000",
1933                                                 config.c_maxmsglen, NULL);
1934
1935
1936         return(msg);
1937 }
1938
1939
1940
1941
1942
1943 /*
1944  * message entry  -  mode 0 (normal)
1945  */
1946 void cmd_ent0(char *entargs)
1947 {
1948         int post = 0;
1949         char recipient[256];
1950         int anon_flag = 0;
1951         int format_type = 0;
1952         char newusername[256];
1953         struct CtdlMessage *msg;
1954         int a, b;
1955         int e = 0;
1956         int mtsflag = 0;
1957         struct usersupp tempUS;
1958         char buf[256];
1959
1960         post = extract_int(entargs, 0);
1961         extract(recipient, entargs, 1);
1962         anon_flag = extract_int(entargs, 2);
1963         format_type = extract_int(entargs, 3);
1964
1965         /* first check to make sure the request is valid. */
1966
1967         if (!(CC->logged_in)) {
1968                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
1969                 return;
1970         }
1971         if ((CC->usersupp.axlevel < 2) && ((CC->quickroom.QRflags & QR_MAILBOX) == 0)) {
1972                 cprintf("%d Need to be validated to enter ",
1973                         ERROR + HIGHER_ACCESS_REQUIRED);
1974                 cprintf("(except in %s> to sysop)\n", MAILROOM);
1975                 return;
1976         }
1977         if ((CC->usersupp.axlevel < 4) && (CC->quickroom.QRflags & QR_NETWORK)) {
1978                 cprintf("%d Need net privileges to enter here.\n",
1979                         ERROR + HIGHER_ACCESS_REQUIRED);
1980                 return;
1981         }
1982         if ((CC->usersupp.axlevel < 6) && (CC->quickroom.QRflags & QR_READONLY)) {
1983                 cprintf("%d Sorry, this is a read-only room.\n",
1984                         ERROR + HIGHER_ACCESS_REQUIRED);
1985                 return;
1986         }
1987         mtsflag = 0;
1988
1989
1990         if (post == 2) {
1991                 if (CC->usersupp.axlevel < 6) {
1992                         cprintf("%d You don't have permission to masquerade.\n",
1993                                 ERROR + HIGHER_ACCESS_REQUIRED);
1994                         return;
1995                 }
1996                 extract(newusername, entargs, 4);
1997                 memset(CC->fake_postname, 0, 32);
1998                 strcpy(CC->fake_postname, newusername);
1999                 cprintf("%d Ok\n", OK);
2000                 return;
2001         }
2002         CC->cs_flags |= CS_POSTING;
2003
2004         buf[0] = 0;
2005         if (CC->quickroom.QRflags & QR_MAILBOX) {
2006                 if (CC->usersupp.axlevel >= 2) {
2007                         strcpy(buf, recipient);
2008                 } else
2009                         strcpy(buf, "sysop");
2010                 e = alias(buf); /* alias and mail type */
2011                 if ((buf[0] == 0) || (e == MES_ERROR)) {
2012                         cprintf("%d Unknown address - cannot send message.\n",
2013                                 ERROR + NO_SUCH_USER);
2014                         return;
2015                 }
2016                 if ((e != MES_LOCAL) && (CC->usersupp.axlevel < 4)) {
2017                         cprintf("%d Net privileges required for network mail.\n",
2018                                 ERROR + HIGHER_ACCESS_REQUIRED);
2019                         return;
2020                 }
2021                 if ((RESTRICT_INTERNET == 1) && (e == MES_INTERNET)
2022                     && ((CC->usersupp.flags & US_INTERNET) == 0)
2023                     && (!CC->internal_pgm)) {
2024                         cprintf("%d You don't have access to Internet mail.\n",
2025                                 ERROR + HIGHER_ACCESS_REQUIRED);
2026                         return;
2027                 }
2028                 if (!strcasecmp(buf, "sysop")) {
2029                         mtsflag = 1;
2030                         goto SKFALL;
2031                 }
2032                 if (e != MES_LOCAL)
2033                         goto SKFALL;    /* don't search local file  */
2034                 if (!strcasecmp(buf, CC->usersupp.fullname)) {
2035                         cprintf("%d Can't send mail to yourself!\n",
2036                                 ERROR + NO_SUCH_USER);
2037                         return;
2038                 }
2039                 /* Check to make sure the user exists; also get the correct
2040                  * upper/lower casing of the name. 
2041                  */
2042                 a = getuser(&tempUS, buf);
2043                 if (a != 0) {
2044                         cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
2045                         return;
2046                 }
2047                 strcpy(buf, tempUS.fullname);
2048         }
2049
2050 SKFALL: b = MES_NORMAL;
2051         if (CC->quickroom.QRflags & QR_ANONONLY)
2052                 b = MES_ANON;
2053         if (CC->quickroom.QRflags & QR_ANONOPT) {
2054                 if (anon_flag == 1)
2055                         b = MES_AN2;
2056         }
2057         if ((CC->quickroom.QRflags & QR_MAILBOX) == 0)
2058                 buf[0] = 0;
2059
2060         /* If we're only checking the validity of the request, return
2061          * success without creating the message.
2062          */
2063         if (post == 0) {
2064                 cprintf("%d %s\n", OK, buf);
2065                 return;
2066         }
2067
2068         cprintf("%d send message\n", SEND_LISTING);
2069
2070         /* Read in the message from the client. */
2071         if (CC->fake_postname[0])
2072                 msg = make_message(&CC->usersupp, buf,
2073                         CC->quickroom.QRname, b, e, format_type,
2074                         CC->fake_postname);
2075         else if (CC->fake_username[0])
2076                 msg = make_message(&CC->usersupp, buf,
2077                         CC->quickroom.QRname, b, e, format_type,
2078                         CC->fake_username);
2079         else
2080                 msg = make_message(&CC->usersupp, buf,
2081                         CC->quickroom.QRname, b, e, format_type, "");
2082
2083         if (msg != NULL)
2084                 CtdlSaveMsg(msg, buf, (mtsflag ? AIDEROOM : ""), e, 1);
2085                 CtdlFreeMessage(msg);
2086         CC->fake_postname[0] = '\0';
2087         return;
2088 }
2089
2090
2091
2092 /* 
2093  * message entry - mode 3 (raw)
2094  */
2095 void cmd_ent3(char *entargs)
2096 {
2097         char recp[256];
2098         int a;
2099         int e = 0;
2100         int valid_msg = 1;
2101         unsigned char ch, which_field;
2102         struct usersupp tempUS;
2103         long msglen;
2104         struct CtdlMessage *msg;
2105         char *tempbuf;
2106
2107         if (CC->internal_pgm == 0) {
2108                 cprintf("%d This command is for internal programs only.\n",
2109                         ERROR);
2110                 return;
2111         }
2112
2113         /* See if there's a recipient, but make sure it's a real one */
2114         extract(recp, entargs, 1);
2115         for (a = 0; a < strlen(recp); ++a)
2116                 if (!isprint(recp[a]))
2117                         strcpy(&recp[a], &recp[a + 1]);
2118         while (isspace(recp[0]))
2119                 strcpy(recp, &recp[1]);
2120         while (isspace(recp[strlen(recp) - 1]))
2121                 recp[strlen(recp) - 1] = 0;
2122
2123         /* If we're in Mail, check the recipient */
2124         if (strlen(recp) > 0) {
2125                 e = alias(recp);        /* alias and mail type */
2126                 if ((recp[0] == 0) || (e == MES_ERROR)) {
2127                         cprintf("%d Unknown address - cannot send message.\n",
2128                                 ERROR + NO_SUCH_USER);
2129                         return;
2130                 }
2131                 if (e == MES_LOCAL) {
2132                         a = getuser(&tempUS, recp);
2133                         if (a != 0) {
2134                                 cprintf("%d No such user.\n",
2135                                         ERROR + NO_SUCH_USER);
2136                                 return;
2137                         }
2138                 }
2139         }
2140
2141         /* At this point, message has been approved. */
2142         if (extract_int(entargs, 0) == 0) {
2143                 cprintf("%d OK to send\n", OK);
2144                 return;
2145         }
2146
2147         msglen = extract_long(entargs, 2);
2148         msg = mallok(sizeof(struct CtdlMessage));
2149         if (msg == NULL) {
2150                 cprintf("%d Out of memory\n", ERROR+INTERNAL_ERROR);
2151                 return;
2152         }
2153
2154         memset(msg, 0, sizeof(struct CtdlMessage));
2155         tempbuf = mallok(msglen);
2156         if (tempbuf == NULL) {
2157                 cprintf("%d Out of memory\n", ERROR+INTERNAL_ERROR);
2158                 phree(msg);
2159                 return;
2160         }
2161
2162         cprintf("%d %ld\n", SEND_BINARY, msglen);
2163
2164         client_read(&ch, 1);                            /* 0xFF magic number */
2165         msg->cm_magic = CTDLMESSAGE_MAGIC;
2166         client_read(&ch, 1);                            /* anon type */
2167         msg->cm_anon_type = ch;
2168         client_read(&ch, 1);                            /* format type */
2169         msg->cm_format_type = ch;
2170         msglen = msglen - 3;
2171
2172         while (msglen > 0) {
2173                 client_read(&which_field, 1);
2174                 if (!isalpha(which_field)) valid_msg = 0;
2175                 --msglen;
2176                 tempbuf[0] = 0;
2177                 do {
2178                         client_read(&ch, 1);
2179                         --msglen;
2180                         a = strlen(tempbuf);
2181                         tempbuf[a+1] = 0;
2182                         tempbuf[a] = ch;
2183                 } while ( (ch != 0) && (msglen > 0) );
2184                 if (valid_msg)
2185                         msg->cm_fields[which_field] = strdoop(tempbuf);
2186         }
2187
2188         msg->cm_flags = CM_SKIP_HOOKS;
2189         if (valid_msg) CtdlSaveMsg(msg, recp, "", e, 0);
2190         CtdlFreeMessage(msg);
2191         phree(tempbuf);
2192 }
2193
2194
2195 /*
2196  * API function to delete messages which match a set of criteria
2197  * (returns the actual number of messages deleted)
2198  */
2199 int CtdlDeleteMessages(char *room_name,         /* which room */
2200                        long dmsgnum,            /* or "0" for any */
2201                        char *content_type       /* or NULL for any */
2202 )
2203 {
2204
2205         struct quickroom qrbuf;
2206         struct cdbdata *cdbfr;
2207         long *msglist = NULL;
2208         int num_msgs = 0;
2209         int i;
2210         int num_deleted = 0;
2211         int delete_this;
2212         struct SuppMsgInfo smi;
2213
2214         lprintf(9, "CtdlDeleteMessages(%s, %ld, %s)\n",
2215                 room_name, dmsgnum, content_type);
2216
2217         /* get room record, obtaining a lock... */
2218         if (lgetroom(&qrbuf, room_name) != 0) {
2219                 lprintf(7, "CtdlDeleteMessages(): Room <%s> not found\n",
2220                         room_name);
2221                 return (0);     /* room not found */
2222         }
2223         cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long));
2224
2225         if (cdbfr != NULL) {
2226                 msglist = mallok(cdbfr->len);
2227                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
2228                 num_msgs = cdbfr->len / sizeof(long);
2229                 cdb_free(cdbfr);
2230         }
2231         if (num_msgs > 0) {
2232                 for (i = 0; i < num_msgs; ++i) {
2233                         delete_this = 0x00;
2234
2235                         /* Set/clear a bit for each criterion */
2236
2237                         if ((dmsgnum == 0L) || (msglist[i] == dmsgnum)) {
2238                                 delete_this |= 0x01;
2239                         }
2240                         if (content_type == NULL) {
2241                                 delete_this |= 0x02;
2242                         } else {
2243                                 GetSuppMsgInfo(&smi, msglist[i]);
2244                                 if (!strcasecmp(smi.smi_content_type,
2245                                                 content_type)) {
2246                                         delete_this |= 0x02;
2247                                 }
2248                         }
2249
2250                         /* Delete message only if all bits are set */
2251                         if (delete_this == 0x03) {
2252                                 AdjRefCount(msglist[i], -1);
2253                                 msglist[i] = 0L;
2254                                 ++num_deleted;
2255                         }
2256                 }
2257
2258                 num_msgs = sort_msglist(msglist, num_msgs);
2259                 cdb_store(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long),
2260                           msglist, (num_msgs * sizeof(long)));
2261
2262                 qrbuf.QRhighest = msglist[num_msgs - 1];
2263                 phree(msglist);
2264         }
2265         lputroom(&qrbuf);
2266         lprintf(9, "%d message(s) deleted.\n", num_deleted);
2267         return (num_deleted);
2268 }
2269
2270
2271
2272 /*
2273  * Delete message from current room
2274  */
2275 void cmd_dele(char *delstr)
2276 {
2277         long delnum;
2278         int num_deleted;
2279
2280         getuser(&CC->usersupp, CC->curr_user);
2281         if ((CC->usersupp.axlevel < 6)
2282             && (CC->usersupp.usernum != CC->quickroom.QRroomaide)
2283             && ((CC->quickroom.QRflags & QR_MAILBOX) == 0)
2284             && (!(CC->internal_pgm))) {
2285                 cprintf("%d Higher access required.\n",
2286                         ERROR + HIGHER_ACCESS_REQUIRED);
2287                 return;
2288         }
2289         delnum = extract_long(delstr, 0);
2290
2291         num_deleted = CtdlDeleteMessages(CC->quickroom.QRname, delnum, NULL);
2292
2293         if (num_deleted) {
2294                 cprintf("%d %d message%s deleted.\n", OK,
2295                         num_deleted, ((num_deleted != 1) ? "s" : ""));
2296         } else {
2297                 cprintf("%d Message %ld not found.\n", ERROR, delnum);
2298         }
2299 }
2300
2301
2302 /*
2303  * move or copy a message to another room
2304  */
2305 void cmd_move(char *args)
2306 {
2307         long num;
2308         char targ[256];
2309         struct quickroom qtemp;
2310         int err;
2311         int is_copy = 0;
2312
2313         num = extract_long(args, 0);
2314         extract(targ, args, 1);
2315         targ[ROOMNAMELEN - 1] = 0;
2316         is_copy = extract_int(args, 2);
2317
2318         getuser(&CC->usersupp, CC->curr_user);
2319         if ((CC->usersupp.axlevel < 6)
2320             && (CC->usersupp.usernum != CC->quickroom.QRroomaide)) {
2321                 cprintf("%d Higher access required.\n",
2322                         ERROR + HIGHER_ACCESS_REQUIRED);
2323                 return;
2324         }
2325
2326         if (getroom(&qtemp, targ) != 0) {
2327                 cprintf("%d '%s' does not exist.\n", ERROR, targ);
2328                 return;
2329         }
2330
2331         err = CtdlSaveMsgPointerInRoom(targ, num,
2332                 (SM_VERIFY_GOODNESS | SM_DO_REPL_CHECK) );
2333         if (err != 0) {
2334                 cprintf("%d Cannot store message in %s: error %d\n",
2335                         err, targ, err);
2336                 return;
2337         }
2338
2339         /* Now delete the message from the source room,
2340          * if this is a 'move' rather than a 'copy' operation.
2341          */
2342         if (is_copy == 0) CtdlDeleteMessages(CC->quickroom.QRname, num, NULL);
2343
2344         cprintf("%d Message %s.\n", OK, (is_copy ? "copied" : "moved") );
2345 }
2346
2347
2348
2349 /*
2350  * GetSuppMsgInfo()  -  Get the supplementary record for a message
2351  */
2352 void GetSuppMsgInfo(struct SuppMsgInfo *smibuf, long msgnum)
2353 {
2354
2355         struct cdbdata *cdbsmi;
2356         long TheIndex;
2357
2358         memset(smibuf, 0, sizeof(struct SuppMsgInfo));
2359         smibuf->smi_msgnum = msgnum;
2360         smibuf->smi_refcount = 1;       /* Default reference count is 1 */
2361
2362         /* Use the negative of the message number for its supp record index */
2363         TheIndex = (0L - msgnum);
2364
2365         cdbsmi = cdb_fetch(CDB_MSGMAIN, &TheIndex, sizeof(long));
2366         if (cdbsmi == NULL) {
2367                 return;         /* record not found; go with defaults */
2368         }
2369         memcpy(smibuf, cdbsmi->ptr,
2370                ((cdbsmi->len > sizeof(struct SuppMsgInfo)) ?
2371                 sizeof(struct SuppMsgInfo) : cdbsmi->len));
2372         cdb_free(cdbsmi);
2373         return;
2374 }
2375
2376
2377 /*
2378  * PutSuppMsgInfo()  -  (re)write supplementary record for a message
2379  */
2380 void PutSuppMsgInfo(struct SuppMsgInfo *smibuf)
2381 {
2382         long TheIndex;
2383
2384         /* Use the negative of the message number for its supp record index */
2385         TheIndex = (0L - smibuf->smi_msgnum);
2386
2387         lprintf(9, "PuttSuppMsgInfo(%ld) - ref count is %d\n",
2388                 smibuf->smi_msgnum, smibuf->smi_refcount);
2389
2390         cdb_store(CDB_MSGMAIN,
2391                   &TheIndex, sizeof(long),
2392                   smibuf, sizeof(struct SuppMsgInfo));
2393
2394 }
2395
2396 /*
2397  * AdjRefCount  -  change the reference count for a message;
2398  *                 delete the message if it reaches zero
2399  */
2400 void AdjRefCount(long msgnum, int incr)
2401 {
2402
2403         struct SuppMsgInfo smi;
2404         long delnum;
2405
2406         /* This is a *tight* critical section; please keep it that way, as
2407          * it may get called while nested in other critical sections.  
2408          * Complicating this any further will surely cause deadlock!
2409          */
2410         begin_critical_section(S_SUPPMSGMAIN);
2411         GetSuppMsgInfo(&smi, msgnum);
2412         lprintf(9, "Ref count for message <%ld> before write is <%d>\n",
2413                 msgnum, smi.smi_refcount);
2414         smi.smi_refcount += incr;
2415         PutSuppMsgInfo(&smi);
2416         end_critical_section(S_SUPPMSGMAIN);
2417         lprintf(9, "Ref count for message <%ld> after write is <%d>\n",
2418                 msgnum, smi.smi_refcount);
2419
2420         /* If the reference count is now zero, delete the message
2421          * (and its supplementary record as well).
2422          */
2423         if (smi.smi_refcount == 0) {
2424                 lprintf(9, "Deleting message <%ld>\n", msgnum);
2425                 delnum = msgnum;
2426                 cdb_delete(CDB_MSGMAIN, &delnum, sizeof(long));
2427                 delnum = (0L - msgnum);
2428                 cdb_delete(CDB_MSGMAIN, &delnum, sizeof(long));
2429         }
2430 }
2431
2432 /*
2433  * Write a generic object to this room
2434  *
2435  * Note: this could be much more efficient.  Right now we use two temporary
2436  * files, and still pull the message into memory as with all others.
2437  */
2438 void CtdlWriteObject(char *req_room,            /* Room to stuff it in */
2439                         char *content_type,     /* MIME type of this object */
2440                         char *tempfilename,     /* Where to fetch it from */
2441                         struct usersupp *is_mailbox,    /* Mailbox room? */
2442                         int is_binary,          /* Is encoding necessary? */
2443                         int is_unique,          /* Del others of this type? */
2444                         unsigned int flags      /* Internal save flags */
2445                         )
2446 {
2447
2448         FILE *fp, *tempfp;
2449         char filename[PATH_MAX];
2450         char cmdbuf[256];
2451         int ch;
2452         struct quickroom qrbuf;
2453         char roomname[ROOMNAMELEN];
2454         struct CtdlMessage *msg;
2455         size_t len;
2456
2457         if (is_mailbox != NULL)
2458                 MailboxName(roomname, is_mailbox, req_room);
2459         else
2460                 safestrncpy(roomname, req_room, sizeof(roomname));
2461         lprintf(9, "CtdlWriteObject() to <%s> (flags=%d)\n", roomname, flags);
2462
2463         strcpy(filename, tmpnam(NULL));
2464         fp = fopen(filename, "w");
2465         if (fp == NULL)
2466                 return;
2467
2468         tempfp = fopen(tempfilename, "r");
2469         if (tempfp == NULL) {
2470                 fclose(fp);
2471                 unlink(filename);
2472                 return;
2473         }
2474
2475         fprintf(fp, "Content-type: %s\n", content_type);
2476         lprintf(9, "Content-type: %s\n", content_type);
2477
2478         if (is_binary == 0) {
2479                 fprintf(fp, "Content-transfer-encoding: 7bit\n\n");
2480                 while (ch = getc(tempfp), ch > 0)
2481                         putc(ch, fp);
2482                 fclose(tempfp);
2483                 putc(0, fp);
2484                 fclose(fp);
2485         } else {
2486                 fprintf(fp, "Content-transfer-encoding: base64\n\n");
2487                 fclose(tempfp);
2488                 fclose(fp);
2489                 sprintf(cmdbuf, "./base64 -e <%s >>%s",
2490                         tempfilename, filename);
2491                 system(cmdbuf);
2492         }
2493
2494         lprintf(9, "Allocating\n");
2495         msg = mallok(sizeof(struct CtdlMessage));
2496         memset(msg, 0, sizeof(struct CtdlMessage));
2497         msg->cm_magic = CTDLMESSAGE_MAGIC;
2498         msg->cm_anon_type = MES_NORMAL;
2499         msg->cm_format_type = 4;
2500         msg->cm_fields['A'] = strdoop(CC->usersupp.fullname);
2501         msg->cm_fields['O'] = strdoop(req_room);
2502         msg->cm_fields['N'] = strdoop(config.c_nodename);
2503         msg->cm_fields['H'] = strdoop(config.c_humannode);
2504         msg->cm_flags = flags;
2505         
2506         lprintf(9, "Loading\n");
2507         fp = fopen(filename, "rb");
2508         fseek(fp, 0L, SEEK_END);
2509         len = ftell(fp);
2510         rewind(fp);
2511         msg->cm_fields['M'] = mallok(len);
2512         fread(msg->cm_fields['M'], len, 1, fp);
2513         fclose(fp);
2514         unlink(filename);
2515
2516         /* Create the requested room if we have to. */
2517         if (getroom(&qrbuf, roomname) != 0) {
2518                 create_room(roomname, 
2519                         ( (is_mailbox != NULL) ? 4 : 3 ),
2520                         "", 0);
2521         }
2522         /* If the caller specified this object as unique, delete all
2523          * other objects of this type that are currently in the room.
2524          */
2525         if (is_unique) {
2526                 lprintf(9, "Deleted %d other msgs of this type\n",
2527                         CtdlDeleteMessages(roomname, 0L, content_type));
2528         }
2529         /* Now write the data */
2530         CtdlSaveMsg(msg, "", roomname, MES_LOCAL, 1);
2531         CtdlFreeMessage(msg);
2532 }
2533
2534
2535
2536
2537
2538
2539 void CtdlGetSysConfigBackend(long msgnum) {
2540         config_msgnum = msgnum;
2541 }
2542
2543
2544 char *CtdlGetSysConfig(char *sysconfname) {
2545         char hold_rm[ROOMNAMELEN];
2546         long msgnum;
2547         char *conf;
2548         struct CtdlMessage *msg;
2549         char buf[256];
2550         
2551         strcpy(hold_rm, CC->quickroom.QRname);
2552         if (getroom(&CC->quickroom, SYSCONFIGROOM) != 0) {
2553                 getroom(&CC->quickroom, hold_rm);
2554                 return NULL;
2555         }
2556
2557
2558         /* We want the last (and probably only) config in this room */
2559         begin_critical_section(S_CONFIG);
2560         config_msgnum = (-1L);
2561         CtdlForEachMessage(MSGS_LAST, 1, sysconfname, NULL,
2562                 CtdlGetSysConfigBackend);
2563         msgnum = config_msgnum;
2564         end_critical_section(S_CONFIG);
2565
2566         if (msgnum < 0L) {
2567                 conf = NULL;
2568         }
2569         else {
2570                 msg = CtdlFetchMessage(msgnum);
2571                 if (msg != NULL) {
2572                         conf = strdoop(msg->cm_fields['M']);
2573                         CtdlFreeMessage(msg);
2574                 }
2575                 else {
2576                         conf = NULL;
2577                 }
2578         }
2579
2580         getroom(&CC->quickroom, hold_rm);
2581
2582         lprintf(9, "eggstracting...\n");
2583         if (conf != NULL) do {
2584                 extract_token(buf, conf, 0, '\n');
2585                 lprintf(9, "eggstracted <%s>\n", buf);
2586                 strcpy(conf, &conf[strlen(buf)+1]);
2587         } while ( (strlen(conf)>0) && (strlen(buf)>0) );
2588
2589         return(conf);
2590 }
2591
2592 void CtdlPutSysConfig(char *sysconfname, char *sysconfdata) {
2593         char temp[PATH_MAX];
2594         FILE *fp;
2595
2596         strcpy(temp, tmpnam(NULL));
2597
2598         fp = fopen(temp, "w");
2599         if (fp == NULL) return;
2600         fprintf(fp, "%s", sysconfdata);
2601         fclose(fp);
2602
2603         /* this handy API function does all the work for us */
2604         CtdlWriteObject(SYSCONFIGROOM, sysconfname, temp, NULL, 0, 1, 0);
2605         unlink(temp);
2606 }