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