Remove verbosity for -noverbose; cleanup in code layout and message texts
[mmh] / uip / send.c
1 /*
2 ** send.c -- send a composed message
3 **
4 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
7 */
8
9 #include <h/mh.h>
10 #include <fcntl.h>
11 #include <errno.h>
12 #include <signal.h>
13 #include <h/signals.h>
14 #include <setjmp.h>
15 #include <h/mime.h>
16 #include <h/tws.h>
17 #include <h/utils.h>
18 #include <sysexits.h>
19 #include <sys/wait.h>
20
21 #ifdef HAVE_SYS_TIME_H
22 # include <sys/time.h>
23 #endif
24 #include <time.h>
25
26 int debugsw = 0;  /* global */
27 char *altmsg = NULL;
28 char *annotext = NULL;
29 char *distfile = NULL;
30
31 static jmp_buf env;
32
33 /* name of temp file for body content */
34 static char body_file_name[MAXPATHLEN + 1];
35 /* name of mhbuild composition temporary file */
36 static char composition_file_name[MAXPATHLEN + 1]; 
37 static int field_size;  /* size of header field buffer */
38 static char *field;  /* header field buffer */
39 static FILE *draft_file;  /* draft file pointer */
40 static FILE *body_file;  /* body file pointer */
41 static FILE *composition_file;  /* composition file pointer */
42
43 /*
44 ** static prototypes
45 */
46 static int sendsbr(char **, int, char *, struct stat *);
47 static void armed_done(int) NORETURN;
48 static void anno(struct stat *);
49 static int sendaux(char **, int, char *, struct stat *);
50 static int attach(char *);
51 static int signandenc(char *);
52 static void clean_up_temporary_files(void);
53 static int get_line(void);
54 static void make_mime_composition_file_entry(char *);
55 static char* strexit(int status);
56
57
58 static struct swit switches[] = {
59 #define DEBUGSW  0
60         { "debug", -5 },
61 #define VERBSW  1
62         { "verbose", 0 },
63 #define NVERBSW  2
64         { "noverbose", 2 },
65 #define VERSIONSW  3
66         { "Version", 0 },
67 #define HELPSW  4
68         { "help", 0 },
69         { NULL, 0 }
70 };
71
72
73 int
74 main(int argc, char **argv)
75 {
76         int nmsgs = 0, nfiles = 0, distsw = 0, vecp = 1;
77         int msgnum, status;
78         int in, out;
79         int n;
80         char *cp, *maildir = NULL;
81         char buf[BUFSIZ], **argp, **arguments;
82         char *msgs[MAXARGS], *vec[MAXARGS];
83         char *files[MAXARGS];
84         struct msgs *mp;
85         struct stat st;
86         struct stat st2;
87
88         setlocale(LC_ALL, "");
89         invo_name = mhbasename(argv[0]);
90
91         /* read user profile/context */
92         context_read();
93
94         arguments = getarguments(invo_name, argc, argv, 1);
95         argp = arguments;
96
97         while ((cp = *argp++)) {
98                 if (*cp == '-') {
99                         switch (smatch(++cp, switches)) {
100                         case AMBIGSW:
101                                 ambigsw(cp, switches);
102                                 done(1);
103                         case UNKWNSW:
104                                 adios(NULL, "-%s unknown\n", cp);
105
106                         case HELPSW:
107                                 snprintf(buf, sizeof(buf),
108                                                 "%s [file] [switches]",
109                                                 invo_name);
110                                 print_help(buf, switches, 1);
111                                 done(1);
112                         case VERSIONSW:
113                                 print_version(invo_name);
114                                 done(1);
115
116                         case DEBUGSW:
117                                 debugsw++;
118                                 /* fall */
119                         case VERBSW:
120                         case NVERBSW:
121                                 vec[vecp++] = --cp;
122                                 continue;
123                         }
124                 } else {
125                         if (*cp == '/') {
126                                 files[nfiles++] = cp;
127                         } else {
128                                 msgs[nmsgs++] = cp;
129                         }
130                 }
131         }
132
133         if (!nmsgs && !nfiles) {
134                 msgs[nmsgs++] = seq_cur;
135         }
136
137         if (nmsgs) {
138                 maildir = toabsdir(draftfolder);
139                 if (chdir(maildir) == NOTOK) {
140                         adios(maildir, "unable to change directory to");
141                 }
142                 if (!(mp = folder_read(draftfolder))) {
143                         adios(NULL, "unable to read draft folder %s",
144                                         draftfolder);
145                 }
146                 if (mp->nummsg == 0) {
147                         adios(NULL, "no messages in draft folder %s",
148                                         draftfolder);
149                 }
150                 /* parse all the msgranges/sequences and set SELECTED */
151                 for (msgnum = 0; msgnum < nmsgs; msgnum++) {
152                         if (!m_convert(mp, msgs[msgnum])) {
153                                 done(1);
154                         }
155                 }
156                 seq_setprev(mp);
157
158                 for (nmsgs = 0, msgnum = mp->lowsel;
159                                 msgnum <= mp->hghsel; msgnum++) {
160                         if (is_selected(mp, msgnum)) {
161                                 files[nfiles++] = getcpy(m_name(msgnum));
162                                 unset_exists(mp, msgnum);
163                         }
164                 }
165
166                 mp->msgflags |= SEQMOD;
167                 seq_save(mp);
168         }
169
170         if (!(cp = getenv("SIGNATURE")) || !*cp) {
171                 if ((cp = context_find("signature")) && *cp) {
172                         m_putenv("SIGNATURE", cp);
173                 }
174         }
175
176         for (n = 0; n < nfiles; n++) {
177                 if (stat(files[n], &st) == NOTOK) {
178                         adios(files[n], "unable to stat draft file");
179                 }
180         }
181
182         if (!(annotext = getenv("mhannotate")) || !*annotext) {
183                 annotext = NULL;
184         }
185         if (!(altmsg = getenv("mhaltmsg")) || !*altmsg) {
186                 altmsg = NULL;  /* used by dist interface - see below */
187         }
188
189         if ((cp = getenv("mhdist")) && *cp && (distsw = atoi(cp)) && altmsg) {
190                 vec[vecp++] = "-dist";
191                 if ((in = open(altmsg, O_RDONLY)) == NOTOK) {
192                         adios(altmsg, "unable to open for reading");
193                 }
194                 fstat(in, &st2);
195                 distfile = getcpy(m_mktemp2(NULL, invo_name, NULL, NULL));
196                 if ((out = creat(distfile, (int)st2.st_mode & 0777))==NOTOK) {
197                         adios(distfile, "unable to open for writing");
198                 }
199                 cpydata(in, out, altmsg, distfile);
200                 close(in);
201                 close(out);
202         } else {
203                 distfile = NULL;
204         }
205
206         if (!altmsg || stat(altmsg, &st) == NOTOK) {
207                 st.st_mtime = 0;
208                 st.st_dev = 0;
209                 st.st_ino = 0;
210         }
211         status = 0;
212         vec[0] = "spost";
213         for (n=3; n<OPEN_MAX; n++) {
214                 close(n);
215         }
216
217         for (n = 0; n < nfiles; n++) {
218                 switch (sendsbr(vec, vecp, files[n], &st)) {
219                 case DONE:
220                         done(++status);
221                 case NOTOK:
222                         status++;  /* fall */
223                 case OK:
224                         break;
225                 }
226         }
227
228         context_save();
229         done(status);
230         return 1;
231 }
232
233
234 /*
235 ** message sending back-end
236 */
237 static int
238 sendsbr(char **vec, int vecp, char *drft, struct stat *st)
239 {
240         int status;
241         char buffer[BUFSIZ];
242         char *original_draft;
243
244         /*
245         ** Save the original name of the draft file.  The name of the
246         ** draft file is changed to a temporary file containing the built
247         ** MIME message if there are attachments.  We need the original
248         ** name so that it can be renamed after the message is sent.
249         */
250         original_draft = drft;
251
252         /*
253         ** Convert the draft to a MIME message.
254         ** Use the mhbuild composition file for the draft if there was
255         ** a successful conversion because that now contains the MIME
256         ** message.  A nice side effect of this is that it leaves the
257         ** original draft file untouched so that it can be retrieved
258         ** and modified if desired.
259         */
260         switch (attach(drft)) {
261         case OK:
262                 drft = composition_file_name;
263                 break;
264
265         case NOTOK:
266                 return (NOTOK);
267
268         case DONE:
269                 break;
270         }
271
272         /*
273         ** Sign and encrypt the message as needed.
274         ** Use the mhbuild composition file for the draft if there was
275         ** a successful conversion because that now contains the MIME
276         ** message.  A nice side effect of this is that it leaves the
277         ** original draft file untouched so that it can be retrieved
278         ** and modified if desired.
279         */
280         switch (signandenc(drft)) {
281         case OK:
282                 drft = composition_file_name;
283                 break;
284
285         case NOTOK:
286                 return (NOTOK);
287
288         case DONE:
289                 break;
290         }
291
292         done=armed_done;
293         switch (setjmp(env)) {
294         case OK:
295                 status = sendaux(vec, vecp, drft, st) ? NOTOK : OK;
296                 if (status == OK) {
297                         /* move original draft to +trash folder */
298                         snprintf(buffer, sizeof buffer,
299                                         "</dev/null refile -file %s +trash",
300                                         original_draft);
301                         if (system(buffer) != 0) {
302                                 advise(NULL, "unable to trash the draft");
303                         }
304                 }
305                 break;
306
307         default:
308                 status = DONE;
309                 break;
310         }
311
312         done=exit;
313         if (distfile) {
314                 unlink(distfile);
315         }
316
317         /* Get rid of temporary files that we created for attachments. */
318         if (drft == composition_file_name) {
319                 clean_up_temporary_files();
320         }
321
322         return status;
323 }
324
325 static int
326 attach(char *draft_file_name)
327 {
328         char buf[MAXPATHLEN + 6];
329         int c;
330         int has_attachment;
331         int has_body;
332         int non_ascii; /* msg body contains non-ASCII chars */
333         int length;  /* length of attachment header field name */
334         char *p;
335
336         if (!(draft_file = fopen(draft_file_name, "r"))) {
337                 adios(NULL, "can't open draft file `%s'.", draft_file_name);
338         }
339
340         /* We'll grow the buffer as needed. */
341         field = (char *)mh_xmalloc(field_size = 256);
342
343         /*
344         ** Scan the draft file for an attachment header field name.
345         */
346         length = strlen(attach_hdr);
347         has_attachment = 0;
348         while (get_line() != EOF && *field != '\0' && *field != '-') {
349                 if (strncasecmp(field, attach_hdr, length)==0 &&
350                                 field[length] == ':') {
351                         has_attachment = 1;
352                 }
353         }
354
355         /*
356         ** Look for at least one non-blank line in the body of the
357         ** message which indicates content in the body.
358         ** Check if body contains at least one non-blank (= not empty)
359         ** and if it contains any non-ASCII chars (= need MIME).
360         */
361         has_body = 0;
362         non_ascii = 0;
363         while (get_line() != EOF) {
364                 for (p = field; *p != '\0'; p++) {
365                         if (*p != ' ' && *p != '\t') {
366                                 has_body = 1;
367                         }
368                         if (*p > 127 || *p < 0) {
369                                 non_ascii = 1;
370                         }
371                 }
372                 if (has_body && non_ascii) {
373                         break;  /* that's been already enough information */
374                 }
375         }
376
377         if (!has_attachment && non_ascii==0) {
378                 /* We don't need to convert it to MIME. */
379                 return DONE;
380         }
381
382         /*
383         ** Else: mimify
384         */
385
386         /* Make names for the temporary files.  */
387         strncpy(body_file_name,
388                         m_mktemp(toabsdir(invo_name), NULL, NULL),
389                         sizeof (body_file_name));
390         strncpy(composition_file_name,
391                         m_mktemp(toabsdir(invo_name), NULL, NULL),
392                         sizeof (composition_file_name));
393
394         if (has_body) {
395                 body_file = fopen(body_file_name, "w");
396         }
397         composition_file = fopen(composition_file_name, "w");
398
399         if ((has_body && !body_file) || !composition_file) {
400                 clean_up_temporary_files();
401                 adios(NULL, "unable to open all of the temporary files.");
402         }
403
404         /* Copy non-attachment header fields to the temp composition file. */
405         rewind(draft_file);
406         while (get_line() != EOF && *field && *field != '-') {
407                 if (strncasecmp(field, attach_hdr, length) != 0 ||
408                                 field[length] != ':') {
409                         fprintf(composition_file, "%s\n", field);
410                 }
411         }
412         fputs("--------\n", composition_file);
413
414         if (has_body) {
415                 /* Copy the message body to the temporary file. */
416                 while ((c = getc(draft_file)) != EOF) {
417                         putc(c, body_file);
418                 }
419                 fclose(body_file);
420
421                 /* Add a mhbuild MIME composition file line for the body */
422                 /* charset will be discovered/guessed by mhbuild */
423                 fprintf(composition_file, "#text/plain %s\n", body_file_name);
424         }
425
426         /*
427         ** Now, go back to the beginning of the draft file and look for
428         ** header fields that specify attachments.  Add a mhbuild MIME
429         ** composition file for each.
430         */
431         rewind(draft_file);
432         while (get_line() != EOF && *field && *field != '-') {
433                 if (strncasecmp(field, attach_hdr, length) == 0 &&
434                                 field[length] == ':') {
435                         p = trim(field+length+1);
436                         if (*p == '+') {
437                                 /* forwarded message */
438                                 fprintf(composition_file, "#forw [forwarded message(s)] %s\n", p);
439                         } else {
440                                 /* regular attachment */
441                                 make_mime_composition_file_entry(p);
442                         }
443                 }
444         }
445         fclose(composition_file);
446
447         /* We're ready to roll! */
448         if (execprogl("mhbuild", "mhbuild", composition_file_name,
449                         (char *)NULL) != 0) {
450                 /* some problem */
451                 clean_up_temporary_files();
452                 return (NOTOK);
453         }
454         /* Remove the automatically created backup of mhbuild. */
455         snprintf(buf, sizeof buf, "%s.orig", composition_file_name);
456         if (unlink(buf) == -1) {
457                 advise(NULL, "unable to remove original composition file.");
458         }
459
460         return (OK);
461 }
462
463 static int
464 signandenc(char *draft_file_name)
465 {
466         char buf[BUFSIZ];
467         int dosign = 0;
468         int doenc = 0;
469         int ret;
470
471         if (!(draft_file = fopen(draft_file_name, "r"))) {
472                 adios(NULL, "can't open draft file `%s'.", draft_file_name);
473         }
474
475         /* We'll grow the buffer as needed. */
476         field = (char *)mh_xmalloc(field_size = 256);
477
478         /* Scan the draft file for an attachment header field name. */
479         while (get_line() != EOF && *field != '\0' && *field != '-') {
480                 if (strncasecmp(field, sign_hdr, strlen(sign_hdr))==0 &&
481                                 field[strlen(sign_hdr)] == ':') {
482                         dosign = 1;
483                 }
484                 if (strncasecmp(field, enc_hdr, strlen(enc_hdr))==0 &&
485                                 field[strlen(enc_hdr)] == ':') {
486                         doenc = 1;
487                 }
488         }
489         if (!dosign && !doenc) {
490                 return DONE;
491         }
492
493         strcpy(composition_file_name, draft_file_name);
494
495         /* We're ready to roll! */
496         if (doenc) {
497                 ret = execprogl("mhsign", "mhsign", "-m", "-e",
498                                 draft_file_name, (char *)NULL);
499         } else {
500                 ret = execprogl("mhsign", "mhsign", "-m",
501                                 draft_file_name, (char *)NULL);
502         }
503         if (ret != 0) {
504                 /* some problem */
505                 return (NOTOK);
506         }
507         /* Remove the automatically created backup of mhsign. */
508         snprintf(buf, sizeof buf, "%s.orig", draft_file_name);
509         if (unlink(buf) == -1) {
510                 advise(NULL, "unable to remove original draft file.");
511         }
512
513         return (OK);
514 }
515
516 static void
517 clean_up_temporary_files(void)
518 {
519         unlink(body_file_name);
520         unlink(composition_file_name);
521
522         return;
523 }
524
525 static int
526 get_line(void)
527 {
528         int c;  /* current character */
529         int n;  /* number of bytes in buffer */
530         char *p;
531
532         /*
533         ** Get a line from the input file, growing the field buffer as
534         ** needed.  We do this so that we can fit an entire line in the
535         ** buffer making it easy to do a string comparison on both the
536         ** field name and the field body which might be a long path name.
537         */
538         for (n = 0, p = field; (c = getc(draft_file)) != EOF; *p++ = c) {
539                 if (c == '\n' && (c = getc(draft_file)) != ' ' && c != '\t') {
540                         ungetc(c, draft_file);
541                         c = '\n';
542                         break;
543                 }
544                 if (++n >= field_size - 1) {
545                         field = (char *)mh_xrealloc(field, field_size += 256);
546                         p = field + n - 1;
547                 }
548         }
549         *p = '\0';
550
551         return (c);
552 }
553
554 static void
555 make_mime_composition_file_entry(char *file_name)
556 {
557         FILE *fp;
558         struct node *np;
559         char *cp;
560         char content_type[BUFSIZ];
561         char cmdbuf[BUFSIZ];
562         char *cmd = mimetypequeryproc;
563         int semicolon = 0;
564
565         for (np = m_defs; np; np = np->n_next) {
566                 if (strcasecmp(np->n_name, mimetypequery)==0) {
567                         cmd = np->n_field;
568                         break;
569                 }
570         }
571         snprintf(cmdbuf, sizeof cmdbuf, "%s %s", cmd, file_name);
572
573         if (!(fp = popen(cmdbuf, "r"))) {
574                 clean_up_temporary_files();
575                 adios(NULL, "unable to determine content type with `%s'",
576                                 cmdbuf);
577         }
578         if (fgets(content_type, sizeof content_type, fp) &&
579                         (cp = strrchr(content_type, '\n'))) {
580                 *cp = '\0';
581         } else {
582                 strcpy(content_type, "application/octet-stream");
583                 admonish(NULL, "problems with `%s', using fall back type `%s'",
584                                 cmdbuf, content_type);
585         }
586         pclose(fp);
587
588         /* TODO: don't use access(2) because it checks for ruid, not euid */
589         if (access(file_name, R_OK) != 0) {
590                 clean_up_temporary_files();
591                 adios(NULL, "unable to access file `%s'", file_name);
592         }
593
594         /* Check for broken file(1). See man page mh-profile(5). */
595         for (cp=content_type; *cp; cp++) {
596                 if (isspace(*cp)) {
597                         if (!semicolon) {
598                                 adios(NULL, "Sorry, your Mime-Type-Query command (%s) is broken.\n\tThe output misses a semicolon before the whitespace.\n\tOutput was: %s", cmd, content_type);
599                         }
600                 } else if (*cp == ';') {
601                         semicolon = 1;
602                 } else {
603                         semicolon = 0;
604                 }
605         }
606
607         cp = (!(cp = strrchr(file_name, '/'))) ? file_name : cp + 1;
608         fprintf(composition_file,
609                         "#%s; name=\"%s\" <> [%s] {attachment} %s\n",
610                         content_type, cp, cp, file_name);
611
612         return;
613 }
614
615 /*
616 ** The back-end of the message sending back-end.
617 ** Annotate original message, and call `spost' to send message.
618 */
619 static int
620 sendaux(char **vec, int vecp, char *drft, struct stat *st)
621 {
622         pid_t child_id;
623         int status;
624         char backup[BUFSIZ];
625
626         vec[vecp++] = drft;
627         if (distfile && distout(drft, distfile, backup) == NOTOK) {
628                 done(1);
629         }
630         vec[vecp] = NULL;
631
632         switch (child_id = fork()) {
633         case -1:
634                 /* oops -- fork error */
635                 adios("fork", "unable to");
636                 break;  /* NOT REACHED */
637
638         case 0:
639                 /* child process -- send it */
640                 execvp(*vec, vec);
641                 fprintf(stderr, "unable to exec ");
642                 perror(*vec);
643                 _exit(-1);
644                 break;  /* NOT REACHED */
645
646         default:
647                 /* parent process -- wait for it */
648                 status = pidwait(child_id, NOTOK);
649                 if (WIFEXITED(status) && WEXITSTATUS(status) == EX_OK) {
650                         if (annotext) {
651                                 anno(st);
652                         }
653                 } else {
654                         /* spost failed */
655                         advise(NULL, "%s", strexit(status));
656                         if (distfile) {
657                                 unlink(drft);
658                                 if (rename(backup, drft) == NOTOK) {
659                                         advise(drft, "unable to rename %s to",
660                                                         backup);
661                                 }
662                         }
663                 }
664         }
665
666
667         return status;
668 }
669
670
671 static void
672 anno(struct stat *st)
673 {
674         struct stat st2;
675         char *msgs, *folder;
676         char buf[BUFSIZ];
677
678         if (altmsg && (stat(altmsg, &st2) == NOTOK ||
679                         st->st_mtime != st2.st_mtime ||
680                         st->st_dev != st2.st_dev ||
681                         st->st_ino != st2.st_ino)) {
682                 if (debugsw) {
683                         admonish(NULL, "$mhaltmsg mismatch");
684                 }
685                 return;
686         }
687
688         if (!(folder = getenv("mhfolder")) || !*folder) {
689                 if (debugsw) {
690                         admonish(NULL, "$mhfolder not set");
691                 }
692                 return;
693         }
694         if (!(msgs = getenv("mhmessages")) || !*msgs) {
695                 if (debugsw) {
696                         admonish(NULL, "$mhmessages not set");
697                 }
698                 return;
699         }
700         if (debugsw) {
701                 advise(NULL, "annotate as `%s': %s %s", annotext,
702                                 folder, msgs);
703         }
704         snprintf(buf, sizeof buf, "anno -comp '%s' '+%s' %s",
705                         annotext, folder, msgs);
706         if (system(buf) != 0) {
707                 advise(NULL, "unable to annotate");
708         }
709 }
710
711
712 char*
713 strexit(int status)
714 {
715         if (WIFSIGNALED(status)) {
716                 return "spost or sendmail killed by signal";
717         }
718         if (!WIFEXITED(status)) {
719                 return "message not delivered to anyone";
720         }
721         switch (WEXITSTATUS(status)) {
722         case EX_TEMPFAIL:
723                 return "Temporary error, maybe the MTA has queued the message";
724         default:
725                 return "message not delivered to anyone";
726         }
727 }
728
729
730 static void
731 armed_done(int status)
732 {
733         longjmp(env, status ? status : NOTOK);
734
735         exit(status);
736 }