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