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