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