]>
diplodocus.org Git - nmh/blob - uip/mhbuildsbr.c
3 * mhbuildsbr.c -- routines to expand/translate MIME composition files
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
11 * This code was originally part of mhn.c. I split it into
12 * a separate program (mhbuild.c) and then later split it
13 * again (mhbuildsbr.c). But the code still has some of
14 * the mhn.c code in it. This program needs additional
15 * streamlining and removal of unneeded code.
20 #include <h/signals.h>
25 #include <h/mhparse.h>
28 #ifdef HAVE_SYS_TIME_H
29 # include <sys/time.h>
38 extern int contentidsw
;
41 extern int rcachesw
; /* mhcachesbr.c */
42 extern int wcachesw
; /* mhcachesbr.c */
44 static char prefix
[] = "----- =_aaaaaaaaaa";
48 struct attach_list
*next
;
52 * Maximum size of URL token in message/external-body
55 #define MAXURLTOKEN 40
59 void content_error (char *, CT
, char *, ...);
62 int find_cache (CT
, int, int *, char *, char *, int);
65 void free_ctinfo (CT
);
66 void free_encoding (CT
, int);
71 static int init_decoded_content (CT
, const char *);
72 static void setup_attach_content(CT
, char *);
73 static char *fgetstr (char *, int, FILE *);
74 static int user_content (FILE *, char *, CT
*, const char *infilename
);
75 static void set_id (CT
, int);
76 static int compose_content (CT
, int);
77 static int scan_content (CT
, size_t);
78 static int build_headers (CT
, int);
79 static char *calculate_digest (CT
, int);
82 static unsigned char directives_stack
[32];
83 static unsigned int directives_index
;
85 static int do_direct(void)
87 return directives_stack
[directives_index
];
90 static void directive_onoff(int onoff
)
92 if (directives_index
>= sizeof(directives_stack
) - 1) {
93 fprintf(stderr
, "mhbuild: #on/off overflow, continuing\n");
96 directives_stack
[++directives_index
] = onoff
;
99 static void directive_init(int onoff
)
101 directives_index
= 0;
102 directives_stack
[0] = onoff
;
105 static void directive_pop(void)
107 if (directives_index
> 0)
110 fprintf(stderr
, "mhbuild: #pop underflow, continuing\n");
114 * Main routine for translating composition file
115 * into valid MIME message. It translates the draft
116 * into a content structure (actually a tree of content
117 * structures). This message then can be manipulated
118 * in various ways, including being output via
123 build_mime (char *infile
, int autobuild
, int dist
, int directives
,
124 int header_encoding
, size_t maxunencoded
, int verbose
)
127 char buf
[BUFSIZ
], name
[NAMESZ
];
134 m_getfld_state_t gstate
= 0;
135 struct attach_list
*attach_head
= NULL
, *attach_tail
= NULL
, *at_entry
;
137 directive_init(directives
);
139 umask (~m_gmprot ());
141 /* open the composition draft */
142 if ((in
= fopen (infile
, "r")) == NULL
)
143 adios (infile
, "unable to open for reading");
146 * Allocate space for primary (outside) content
148 if ((ct
= (CT
) calloc (1, sizeof(*ct
))) == NULL
)
149 adios (NULL
, "out of memory");
152 * Allocate structure for handling decoded content
153 * for this part. We don't really need this, but
154 * allocate it to remain consistent.
156 init_decoded_content (ct
, infile
);
159 * Parse some of the header fields in the composition
160 * draft into the linked list of header fields for
161 * the new MIME message.
163 m_getfld_track_filepos (&gstate
, in
);
164 for (compnum
= 1;;) {
165 int bufsz
= sizeof buf
;
166 switch (state
= m_getfld (&gstate
, name
, buf
, &bufsz
, in
)) {
171 /* abort if draft has Mime-Version or C-T-E header field */
172 if (strcasecmp (name
, VRSN_FIELD
) == 0 ||
173 strcasecmp (name
, ENCODING_FIELD
) == 0) {
178 adios (NULL
, "draft shouldn't contain %s: field", name
);
182 /* ignore any Content-Type fields in the header */
183 if (!strcasecmp (name
, TYPE_FIELD
)) {
184 while (state
== FLDPLUS
) {
186 state
= m_getfld (&gstate
, name
, buf
, &bufsz
, in
);
191 /* get copies of the buffers */
192 np
= add (name
, NULL
);
193 vp
= add (buf
, NULL
);
195 /* if necessary, get rest of field */
196 while (state
== FLDPLUS
) {
198 state
= m_getfld (&gstate
, name
, buf
, &bufsz
, in
);
199 vp
= add (buf
, vp
); /* add to previous value */
203 * Now add the header data to the list, unless it's an attach
204 * header; in that case, add it to our attach list
207 if (strcasecmp(ATTACH_FIELD
, np
) == 0) {
208 struct attach_list
*entry
;
209 char *s
= vp
, *e
= vp
+ strlen(vp
) - 1;
213 * Make sure we can find the start of this filename.
214 * If it's blank, we skip completely. Otherwise, strip
215 * off any leading spaces and trailing newlines.
218 while (isspace((unsigned char) *s
))
221 while (e
> s
&& *e
== '\n')
229 entry
= mh_xmalloc(sizeof(*entry
));
230 entry
->filename
= getcpy(s
);
235 attach_tail
->next
= entry
;
238 attach_head
= attach_tail
= entry
;
241 add_header (ct
, np
, vp
);
245 /* if this wasn't the last header field, then continue */
249 fseek (in
, (long) (-strlen (buf
)), SEEK_CUR
);
256 adios (NULL
, "message format error in component #%d", compnum
);
259 adios (NULL
, "getfld() returned %d", state
);
263 m_getfld_state_destroy (&gstate
);
266 * Iterate through the list of headers and call the function to MIME-ify
270 for (hp
= ct
->c_first_hf
; hp
!= NULL
; hp
= hp
->next
) {
271 if (encode_rfc2047(hp
->name
, &hp
->value
, header_encoding
, NULL
)) {
272 adios(NULL
, "Unable to encode header \"%s\"", hp
->name
);
277 * Now add the MIME-Version header field
278 * to the list of header fields.
282 np
= add (VRSN_FIELD
, NULL
);
283 vp
= concat (" ", VRSN_VALUE
, "\n", NULL
);
284 add_header (ct
, np
, vp
);
288 * We initally assume we will find multiple contents in the
289 * draft. So create a multipart/mixed content to hold everything.
290 * We can remove this later, if it is not needed.
292 if (get_ctinfo ("multipart/mixed", ct
, 0) == NOTOK
)
294 ct
->c_type
= CT_MULTIPART
;
295 ct
->c_subtype
= MULTI_MIXED
;
297 if ((m
= (struct multipart
*) calloc (1, sizeof(*m
))) == NULL
)
298 adios (NULL
, "out of memory");
299 ct
->c_ctparams
= (void *) m
;
303 * read and parse the composition file
304 * and the directives it contains.
306 while (fgetstr (buf
, sizeof(buf
) - 1, in
)) {
310 if (user_content (in
, buf
, &p
, infile
) == DONE
) {
311 admonish (NULL
, "ignoring spurious #end");
317 if ((part
= (struct part
*) calloc (1, sizeof(*part
))) == NULL
)
318 adios (NULL
, "out of memory");
325 * Add any Attach headers to the list of MIME parts at the end of the
329 for (at_entry
= attach_head
; at_entry
; ) {
330 struct attach_list
*at_prev
= at_entry
;
334 if (access(at_entry
->filename
, R_OK
) != 0) {
335 adios("reading", "Unable to open %s for", at_entry
->filename
);
338 if ((p
= (CT
) calloc (1, sizeof(*p
))) == NULL
)
339 adios(NULL
, "out of memory");
341 init_decoded_content(p
, infile
);
344 * Initialize our content structure based on the filename,
345 * and fill in all of the relevant fields. Also place MIME
346 * parameters in the attributes array.
349 setup_attach_content(p
, at_entry
->filename
);
351 if ((part
= (struct part
*) calloc (1, sizeof(*part
))) == NULL
)
352 adios (NULL
, "out of memory");
357 at_entry
= at_entry
->next
;
358 free(at_prev
->filename
);
363 * To allow for empty message bodies, if we've found NO content at all
364 * yet cook up an empty text/plain part.
372 if ((p
= (CT
) calloc (1, sizeof(*p
))) == NULL
)
373 adios(NULL
, "out of memory");
375 init_decoded_content(p
, infile
);
377 if (get_ctinfo ("text/plain", p
, 0) == NOTOK
)
381 p
->c_subtype
= TEXT_PLAIN
;
382 p
->c_encoding
= CE_7BIT
;
384 * Sigh. ce_file contains the "decoded" contents of this part.
385 * So this seems like the best option available since we're going
386 * to call scan_content() on this.
388 p
->c_cefile
.ce_file
= getcpy("/dev/null");
389 p
->c_begin
= ftell(in
);
390 p
->c_end
= ftell(in
);
392 if ((t
= (struct text
*) calloc (1, sizeof (*t
))) == NULL
)
393 adios (NULL
, "out of memory");
395 t
->tx_charset
= CHARSET_SPECIFIED
;
398 if ((part
= (struct part
*) calloc (1, sizeof(*part
))) == NULL
)
399 adios (NULL
, "out of memory");
406 * close the composition draft since
407 * it's not needed any longer.
412 * If only one content was found, then remove and
413 * free the outer multipart content.
415 if (!m
->mp_parts
->mp_next
) {
418 p
= m
->mp_parts
->mp_part
;
419 m
->mp_parts
->mp_part
= NULL
;
421 /* move header fields */
422 p
->c_first_hf
= ct
->c_first_hf
;
423 p
->c_last_hf
= ct
->c_last_hf
;
424 ct
->c_first_hf
= NULL
;
425 ct
->c_last_hf
= NULL
;
434 * Fill out, or expand directives. Parse and execute
435 * commands specified by profile composition strings.
437 compose_content (ct
, verbose
);
439 if ((cp
= strchr(prefix
, 'a')) == NULL
)
440 adios (NULL
, "internal error(4)");
443 * Scan the contents. Choose a transfer encoding, and
444 * check if prefix for multipart boundary clashes with
445 * any of the contents.
447 while (scan_content (ct
, maxunencoded
) == NOTOK
) {
452 adios (NULL
, "giving up trying to find a unique delimiter string");
458 /* Build the rest of the header field structures */
460 build_headers (ct
, header_encoding
);
467 * Set up structures for placing unencoded
468 * content when building parts.
472 init_decoded_content (CT ct
, const char *filename
)
474 ct
->c_ceopenfnx
= open7Bit
; /* since unencoded */
475 ct
->c_ceclosefnx
= close_encoding
;
476 ct
->c_cesizefnx
= NULL
; /* since unencoded */
477 ct
->c_encoding
= CE_7BIT
; /* Seems like a reasonable default */
478 ct
->c_file
= add(filename
, NULL
);
485 fgetstr (char *s
, int n
, FILE *stream
)
491 for (ep
= (cp
= s
) + o_n
; cp
< ep
; ) {
494 if (!fgets (cp
, n
, stream
))
495 return (cp
!= s
? s
: NULL
);
497 if (cp
== s
&& *cp
!= '#')
500 cp
+= (i
= strlen (cp
)) - 1;
501 if (i
<= 1 || *cp
-- != '\n' || *cp
!= '\\')
507 if (strcmp(s
, "#on\n") == 0) {
509 } else if (strcmp(s
, "#off\n") == 0) {
511 } else if (strcmp(s
, "#pop\n") == 0) {
523 * Parse the composition draft for text and directives.
524 * Do initial setup of Content structure.
528 user_content (FILE *in
, char *buf
, CT
*ctp
, const char *infilename
)
536 struct str2init
*s2i
;
541 if (buf
[0] == '\n' || (do_direct() && strcmp (buf
, "#\n") == 0)) {
546 /* allocate basic Content structure */
547 if ((ct
= (CT
) calloc (1, sizeof(*ct
))) == NULL
)
548 adios (NULL
, "out of memory");
551 /* allocate basic structure for handling decoded content */
552 init_decoded_content (ct
, infilename
);
559 * Handle inline text. Check if line
560 * is one of the following forms:
562 * 1) doesn't begin with '#' (implicit directive)
563 * 2) begins with "##" (implicit directive)
564 * 3) begins with "#<"
566 if (!do_direct() || buf
[0] != '#' || buf
[1] == '#' || buf
[1] == '<') {
570 char content
[BUFSIZ
];
574 if ((cp
= m_mktemp2(NULL
, invo_name
, NULL
, &out
)) == NULL
) {
575 adios("mhbuildsbr", "unable to create temporary file in %s",
579 /* use a temp file to collect the plain text lines */
580 ce
->ce_file
= add (cp
, NULL
);
583 if (do_direct() && (buf
[0] == '#' && buf
[1] == '<')) {
584 strncpy (content
, buf
+ 2, sizeof(content
));
591 /* the directive is implicit */
592 strncpy (content
, "text/plain", sizeof(content
));
594 strncpy (buffer
, (!do_direct() || buf
[0] != '#') ? buf
: buf
+ 1, sizeof(buffer
));
598 if (headers
>= 0 && do_direct() && uprf (buffer
, DESCR_FIELD
)
599 && buffer
[i
= strlen (DESCR_FIELD
)] == ':') {
603 ct
->c_descr
= add (buffer
+ i
+ 1, ct
->c_descr
);
604 if (!fgetstr (buffer
, sizeof(buffer
) - 1, in
))
605 adios (NULL
, "end-of-file after %s: field in plaintext", DESCR_FIELD
);
613 adios (NULL
, "#-directive after %s: field in plaintext", DESCR_FIELD
);
621 if (headers
>= 0 && do_direct() && uprf (buffer
, DISPO_FIELD
)
622 && buffer
[i
= strlen (DISPO_FIELD
)] == ':') {
626 ct
->c_dispo
= add (buffer
+ i
+ 1, ct
->c_dispo
);
627 if (!fgetstr (buffer
, sizeof(buffer
) - 1, in
))
628 adios (NULL
, "end-of-file after %s: field in plaintext", DISPO_FIELD
);
636 adios (NULL
, "#-directive after %s: field in plaintext", DISPO_FIELD
);
644 if (headers
!= 1 || buffer
[0] != '\n')
650 if ((cp
= fgetstr (buffer
, sizeof(buffer
) - 1, in
)) == NULL
)
652 if (do_direct() && buffer
[0] == '#') {
655 if (buffer
[1] != '#')
657 for (cp
= (bp
= buffer
) + 1; *cp
; cp
++)
664 ct
->c_end
= ftell (out
);
667 /* parse content type */
668 if (get_ctinfo (content
, ct
, inlineD
) == NOTOK
)
671 for (s2i
= str2cts
; s2i
->si_key
; s2i
++)
672 if (!strcasecmp (ci
->ci_type
, s2i
->si_key
))
674 if (!s2i
->si_key
&& !uprf (ci
->ci_type
, "X-"))
678 * check type specified (possibly implicitly)
680 switch (ct
->c_type
= s2i
->si_val
) {
682 if (!strcasecmp (ci
->ci_subtype
, "rfc822")) {
683 ct
->c_encoding
= CE_7BIT
;
688 adios (NULL
, "it doesn't make sense to define an in-line %s content",
689 ct
->c_type
== CT_MESSAGE
? "message" : "multipart");
694 if ((ct
->c_ctinitfnx
= s2i
->si_init
))
695 (*ct
->c_ctinitfnx
) (ct
);
700 fseek (in
, pos
, SEEK_SET
);
705 * If we've reached this point, the next line
706 * must be some type of explicit directive.
709 /* check if directive is external-type */
710 extrnal
= (buf
[1] == '@');
712 /* parse directive */
713 if (get_ctinfo (buf
+ (extrnal
? 2 : 1), ct
, 1) == NOTOK
)
716 /* check directive against the list of MIME types */
717 for (s2i
= str2cts
; s2i
->si_key
; s2i
++)
718 if (!strcasecmp (ci
->ci_type
, s2i
->si_key
))
722 * Check if the directive specified a valid type.
723 * This will happen if it was one of the following forms:
730 adios (NULL
, "missing subtype in \"#%s\"", ci
->ci_type
);
732 switch (ct
->c_type
= s2i
->si_val
) {
734 adios (NULL
, "use \"#begin ... #end\" instead of \"#%s/%s\"",
735 ci
->ci_type
, ci
->ci_subtype
);
739 if (!strcasecmp (ci
->ci_subtype
, "partial"))
740 adios (NULL
, "sorry, \"#%s/%s\" isn't supported",
741 ci
->ci_type
, ci
->ci_subtype
);
742 if (!strcasecmp (ci
->ci_subtype
, "external-body"))
743 adios (NULL
, "use \"#@type/subtype ... [] ...\" instead of \"#%s/%s\"",
744 ci
->ci_type
, ci
->ci_subtype
);
747 "use \"#forw [+folder] [msgs]\" instead of \"#%s/%s\"",
748 ci
->ci_type
, ci
->ci_subtype
);
752 if ((ct
->c_ctinitfnx
= s2i
->si_init
))
753 (*ct
->c_ctinitfnx
) (ct
);
758 * #@type/subtype (external types directive)
765 adios (NULL
, "need external information for \"#@%s/%s\"",
766 ci
->ci_type
, ci
->ci_subtype
);
769 snprintf (buffer
, sizeof(buffer
), "message/external-body; %s", ci
->ci_magic
);
774 * Since we are using the current Content structure to
775 * hold information about the type of the external
776 * reference, we need to create another Content structure
777 * for the message/external-body to wrap it in.
779 if ((ct
= (CT
) calloc (1, sizeof(*ct
))) == NULL
)
780 adios (NULL
, "out of memory");
781 init_decoded_content(ct
, infilename
);
784 if (get_ctinfo (buffer
, ct
, 0) == NOTOK
)
786 ct
->c_type
= CT_MESSAGE
;
787 ct
->c_subtype
= MESSAGE_EXTERNAL
;
789 if ((e
= (struct exbody
*) calloc (1, sizeof(*e
))) == NULL
)
790 adios (NULL
, "out of memory");
791 ct
->c_ctparams
= (void *) e
;
797 if (params_external (ct
, 1) == NOTOK
)
803 /* Handle [file] argument */
805 /* check if specifies command to execute */
806 if (*ci
->ci_magic
== '|' || *ci
->ci_magic
== '!') {
807 for (cp
= ci
->ci_magic
+ 1; isspace ((unsigned char) *cp
); cp
++)
810 adios (NULL
, "empty pipe command for #%s directive", ci
->ci_type
);
815 /* record filename of decoded contents */
816 ce
->ce_file
= ci
->ci_magic
;
817 if (access (ce
->ce_file
, R_OK
) == NOTOK
)
818 adios ("reading", "unable to access %s for", ce
->ce_file
);
819 if (listsw
&& stat (ce
->ce_file
, &st
) != NOTOK
)
820 ct
->c_end
= (long) st
.st_size
;
827 * No [file] argument, so check profile for
828 * method to compose content.
830 snprintf (buffer
, sizeof(buffer
), "%s-compose-%s/%s",
831 invo_name
, ci
->ci_type
, ci
->ci_subtype
);
832 if ((cp
= context_find (buffer
)) == NULL
|| *cp
== '\0') {
833 snprintf (buffer
, sizeof(buffer
), "%s-compose-%s", invo_name
, ci
->ci_type
);
834 if ((cp
= context_find (buffer
)) == NULL
|| *cp
== '\0') {
835 content_error (NULL
, ct
, "don't know how to compose content");
839 ci
->ci_magic
= add (cp
, NULL
);
844 adios (NULL
, "external definition not allowed for \"#%s\"", ci
->ci_type
);
848 * #forw [+folder] [msgs]
850 if (!strcasecmp (ci
->ci_type
, "forw")) {
852 char *folder
, *arguments
[MAXARGS
];
856 ap
= brkstring (ci
->ci_magic
, " ", "\n");
857 copyip (ap
, arguments
, MAXARGS
);
859 arguments
[0] = "cur";
864 /* search the arguments for a folder name */
865 for (ap
= arguments
; *ap
; ap
++) {
867 if (*cp
== '+' || *cp
== '@') {
869 adios (NULL
, "only one folder per #forw directive");
871 folder
= pluspath (cp
);
875 /* else, use the current folder */
877 folder
= add (getfolder (1), NULL
);
879 if (!(mp
= folder_read (folder
, 0)))
880 adios (NULL
, "unable to read folder %s", folder
);
881 for (ap
= arguments
; *ap
; ap
++) {
883 if (*cp
!= '+' && *cp
!= '@')
884 if (!m_convert (mp
, cp
))
891 * If there is more than one message to include, make this
892 * a content of type "multipart/digest" and insert each message
893 * as a subpart. If there is only one message, then make this
894 * a content of type "message/rfc822".
896 if (mp
->numsel
> 1) {
897 /* we are forwarding multiple messages */
898 if (get_ctinfo ("multipart/digest", ct
, 0) == NOTOK
)
900 ct
->c_type
= CT_MULTIPART
;
901 ct
->c_subtype
= MULTI_DIGEST
;
903 if ((m
= (struct multipart
*) calloc (1, sizeof(*m
))) == NULL
)
904 adios (NULL
, "out of memory");
905 ct
->c_ctparams
= (void *) m
;
908 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
909 if (is_selected(mp
, msgnum
)) {
914 if ((p
= (CT
) calloc (1, sizeof(*p
))) == NULL
)
915 adios (NULL
, "out of memory");
916 init_decoded_content (p
, infilename
);
918 if (get_ctinfo ("message/rfc822", p
, 0) == NOTOK
)
920 p
->c_type
= CT_MESSAGE
;
921 p
->c_subtype
= MESSAGE_RFC822
;
923 snprintf (buffer
, sizeof(buffer
), "%s/%d", mp
->foldpath
, msgnum
);
924 pe
->ce_file
= add (buffer
, NULL
);
925 if (listsw
&& stat (pe
->ce_file
, &st
) != NOTOK
)
926 p
->c_end
= (long) st
.st_size
;
928 if ((part
= (struct part
*) calloc (1, sizeof(*part
))) == NULL
)
929 adios (NULL
, "out of memory");
936 /* we are forwarding one message */
937 if (get_ctinfo ("message/rfc822", ct
, 0) == NOTOK
)
939 ct
->c_type
= CT_MESSAGE
;
940 ct
->c_subtype
= MESSAGE_RFC822
;
943 snprintf (buffer
, sizeof(buffer
), "%s/%d", mp
->foldpath
, msgnum
);
944 ce
->ce_file
= add (buffer
, NULL
);
945 if (listsw
&& stat (ce
->ce_file
, &st
) != NOTOK
)
946 ct
->c_end
= (long) st
.st_size
;
949 folder_free (mp
); /* free folder/message structure */
956 if (!strcasecmp (ci
->ci_type
, "end")) {
963 * #begin [ alternative | parallel ]
965 if (!strcasecmp (ci
->ci_type
, "begin")) {
968 cp
= SubMultiPart
[vrsn
- 1].kv_key
;
969 } else if (!strcasecmp (ci
->ci_magic
, "alternative")) {
970 vrsn
= MULTI_ALTERNATE
;
971 cp
= SubMultiPart
[vrsn
- 1].kv_key
;
972 } else if (!strcasecmp (ci
->ci_magic
, "parallel")) {
973 vrsn
= MULTI_PARALLEL
;
974 cp
= SubMultiPart
[vrsn
- 1].kv_key
;
975 } else if (uprf (ci
->ci_magic
, "digest")) {
978 vrsn
= MULTI_UNKNOWN
;
983 snprintf (buffer
, sizeof(buffer
), "multipart/%s", cp
);
984 if (get_ctinfo (buffer
, ct
, 0) == NOTOK
)
986 ct
->c_type
= CT_MULTIPART
;
987 ct
->c_subtype
= vrsn
;
989 if ((m
= (struct multipart
*) calloc (1, sizeof(*m
))) == NULL
)
990 adios (NULL
, "out of memory");
991 ct
->c_ctparams
= (void *) m
;
994 while (fgetstr (buffer
, sizeof(buffer
) - 1, in
)) {
998 if (user_content (in
, buffer
, &p
, infilename
) == DONE
) {
1000 adios (NULL
, "empty \"#begin ... #end\" sequence");
1006 if ((part
= (struct part
*) calloc (1, sizeof(*part
))) == NULL
)
1007 adios (NULL
, "out of memory");
1009 pp
= &part
->mp_next
;
1012 admonish (NULL
, "premature end-of-file, missing #end");
1019 adios (NULL
, "unknown directive \"#%s\"", ci
->ci_type
);
1020 return NOTOK
; /* NOT REACHED */
1025 set_id (CT ct
, int top
)
1027 char contentid
[BUFSIZ
];
1029 static time_t clock
= 0;
1030 static char *msgfmt
;
1034 snprintf (contentid
, sizeof(contentid
), "%s\n", message_id (clock
, 1));
1036 msgfmt
= getcpy(contentid
);
1038 snprintf (contentid
, sizeof(contentid
), msgfmt
, top
? 0 : ++partno
);
1039 ct
->c_id
= getcpy (contentid
);
1044 * Fill out, or expand the various contents in the composition
1045 * draft. Read-in any necessary files. Parse and execute any
1046 * commands specified by profile composition strings.
1050 compose_content (CT ct
, int verbose
)
1052 CE ce
= &ct
->c_cefile
;
1054 switch (ct
->c_type
) {
1059 char partnam
[BUFSIZ
];
1060 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
1064 snprintf (partnam
, sizeof(partnam
), "%s.", ct
->c_partno
);
1065 pp
= partnam
+ strlen (partnam
);
1070 /* first, we call compose_content on all the subparts */
1071 for (part
= m
->mp_parts
, partnum
= 1; part
; part
= part
->mp_next
, partnum
++) {
1072 CT p
= part
->mp_part
;
1074 sprintf (pp
, "%d", partnum
);
1075 p
->c_partno
= add (partnam
, NULL
);
1076 if (compose_content (p
, verbose
) == NOTOK
)
1081 * If the -rfc934mode switch is given, then check all
1082 * the subparts of a multipart/digest. If they are all
1083 * message/rfc822, then mark this content and all
1084 * subparts with the rfc934 compatibility mode flag.
1086 if (rfc934sw
&& ct
->c_subtype
== MULTI_DIGEST
) {
1089 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
1090 CT p
= part
->mp_part
;
1092 if (p
->c_subtype
!= MESSAGE_RFC822
) {
1097 ct
->c_rfc934
= is934
;
1098 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
1099 CT p
= part
->mp_part
;
1101 if ((p
->c_rfc934
= is934
))
1107 ct
->c_end
= (partnum
= strlen (prefix
) + 2) + 2;
1111 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
)
1112 ct
->c_end
+= part
->mp_part
->c_end
+ partnum
;
1118 /* Nothing to do for type message */
1122 * Discrete types (text/application/audio/image/video)
1127 int i
, xstdout
, len
, buflen
;
1129 char *vec
[4], buffer
[BUFSIZ
];
1131 CI ci
= &ct
->c_ctinfo
;
1134 if (!(cp
= ci
->ci_magic
))
1135 adios (NULL
, "internal error(5)");
1137 if ((tfile
= m_mktemp2(NULL
, invo_name
, NULL
, NULL
)) == NULL
) {
1138 adios("mhbuildsbr", "unable to create temporary file in %s",
1141 ce
->ce_file
= add (tfile
, NULL
);
1146 /* Get buffer ready to go */
1149 buflen
= sizeof(buffer
);
1152 * Parse composition string into buffer
1154 for ( ; *cp
; cp
++) {
1159 /* insert parameters from directive */
1163 for (pm
= ci
->ci_first_pm
; pm
; pm
= pm
->pm_next
) {
1164 snprintf (bp
, buflen
, "%s%s=\"%s\"", s
,
1165 pm
->pm_name
, get_param_value(pm
, '?'));
1175 /* %f, and stdout is not-redirected */
1181 * insert temporary filename where
1182 * content should be written
1184 snprintf (bp
, buflen
, "%s", ce
->ce_file
);
1188 /* insert content subtype */
1189 strncpy (bp
, ci
->ci_subtype
, buflen
);
1193 /* insert character % */
1214 printf ("composing content %s/%s from command\n\t%s\n",
1215 ci
->ci_type
, ci
->ci_subtype
, buffer
);
1217 fflush (stdout
); /* not sure if need for -noverbose */
1224 if ((out
= fopen (ce
->ce_file
, "w")) == NULL
)
1225 adios (ce
->ce_file
, "unable to open for writing");
1227 for (i
= 0; (child_id
= fork()) == NOTOK
&& i
> 5; i
++)
1231 adios ("fork", "unable to fork");
1236 dup2 (fileno (out
), 1);
1237 close (fileno (out
));
1238 execvp ("/bin/sh", vec
);
1239 fprintf (stderr
, "unable to exec ");
1246 if (pidXwait(child_id
, NULL
))
1252 /* Check size of file */
1253 if (listsw
&& ct
->c_end
== 0L) {
1256 if (stat (ce
->ce_file
, &st
) != NOTOK
)
1257 ct
->c_end
= (long) st
.st_size
;
1269 * 1) choose a transfer encoding.
1270 * 2) check for clashes with multipart boundary string.
1271 * 3) for text content, figure out which character set is being used.
1273 * If there is a clash with one of the contents and the multipart boundary,
1274 * this function will exit with NOTOK. This will cause the scanning process
1275 * to be repeated with a different multipart boundary. It is possible
1276 * (although highly unlikely) that this scan will be repeated multiple times.
1280 scan_content (CT ct
, size_t maxunencoded
)
1283 int check8bit
= 0, contains8bit
= 0; /* check if contains 8bit data */
1284 int checknul
= 0, containsnul
= 0; /* check if contains NULs */
1285 int checklinelen
= 0, linelen
= 0; /* check for long lines */
1286 int checkllinelen
= 0; /* check for extra-long lines */
1287 int checkboundary
= 0, boundaryclash
= 0; /* check if clashes with multipart boundary */
1288 int checklinespace
= 0, linespace
= 0; /* check if any line ends with space */
1293 struct text
*t
= NULL
;
1295 CE ce
= &ct
->c_cefile
;
1298 * handle multipart by scanning all subparts
1299 * and then checking their encoding.
1301 if (ct
->c_type
== CT_MULTIPART
) {
1302 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
1305 /* initially mark the domain of enclosing multipart as 7bit */
1306 ct
->c_encoding
= CE_7BIT
;
1308 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
1309 CT p
= part
->mp_part
;
1311 if (scan_content (p
, maxunencoded
) == NOTOK
) /* choose encoding for subpart */
1314 /* if necessary, enlarge encoding for enclosing multipart */
1315 if (p
->c_encoding
== CE_BINARY
)
1316 ct
->c_encoding
= CE_BINARY
;
1317 if (p
->c_encoding
== CE_8BIT
&& ct
->c_encoding
!= CE_BINARY
)
1318 ct
->c_encoding
= CE_8BIT
;
1325 * Decide what to check while scanning this content. Note that
1326 * for text content we always check for 8bit characters if the
1327 * charset is unspecified, because that controls whether or not the
1328 * character set is us-ascii or retrieved from the locale.
1331 if (ct
->c_type
== CT_TEXT
) {
1332 t
= (struct text
*) ct
->c_ctparams
;
1333 if (t
->tx_charset
== CHARSET_UNSPECIFIED
) {
1339 switch (ct
->c_reqencoding
) {
1350 /* Use the default rules based on content-type */
1351 switch (ct
->c_type
) {
1355 if (ct
->c_subtype
== TEXT_PLAIN
) {
1362 case CT_APPLICATION
:
1374 /* don't check anything for message/external */
1375 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
1388 * Don't check anything for these types,
1389 * since we are forcing use of base64, unless
1390 * the content-type was specified by a mhbuild directive.
1401 * Scan the unencoded content
1403 if (check8bit
|| checklinelen
|| checklinespace
|| checkboundary
||
1404 checkllinelen
|| checknul
) {
1405 if ((in
= fopen (ce
->ce_file
, "r")) == NULL
)
1406 adios (ce
->ce_file
, "unable to open for reading");
1407 prefix_len
= strlen (prefix
);
1409 while ((gotlen
= getline(&bufp
, &buflen
, in
)) != -1) {
1411 * Check for 8bit and NUL data.
1413 for (cp
= bufp
; (check8bit
|| checknul
) &&
1414 cp
< bufp
+ gotlen
; cp
++) {
1415 if (!isascii ((unsigned char) *cp
)) {
1417 check8bit
= 0; /* no need to keep checking */
1421 checknul
= 0; /* no need to keep checking */
1426 * Check line length.
1428 if (checklinelen
&& ((size_t)gotlen
> maxunencoded
+ 1)) {
1430 checklinelen
= 0; /* no need to keep checking */
1434 * RFC 5322 specifies that a message cannot contain a line
1435 * greater than 998 characters (excluding the CRLF). If we
1436 * get one of those lines and linelen is NOT set, then abort.
1439 if (checkllinelen
&& !linelen
&&
1440 (gotlen
> MAXLONGLINE
+ 1)) {
1441 adios(NULL
, "Line in content exceeds maximum line limit (%d)",
1446 * Check if line ends with a space.
1448 if (checklinespace
&& (cp
= bufp
+ gotlen
- 2) > bufp
&&
1449 isspace ((unsigned char) *cp
)) {
1451 checklinespace
= 0; /* no need to keep checking */
1455 * Check if content contains a line that clashes
1456 * with our standard boundary for multipart messages.
1458 if (checkboundary
&& bufp
[0] == '-' && bufp
[1] == '-') {
1459 for (cp
= bufp
+ gotlen
- 1; cp
>= bufp
; cp
--)
1460 if (!isspace ((unsigned char) *cp
))
1463 if (!strncmp(bufp
+ 2, prefix
, prefix_len
) &&
1464 isdigit((unsigned char) bufp
[2 + prefix_len
])) {
1466 checkboundary
= 0; /* no need to keep checking */
1475 * If the content is text and didn't specify a character set,
1476 * we need to figure out which one was used.
1479 if (ct
->c_type
== CT_TEXT
) {
1480 t
= (struct text
*) ct
->c_ctparams
;
1481 if (t
->tx_charset
== CHARSET_UNSPECIFIED
) {
1482 CI ci
= &ct
->c_ctinfo
;
1484 add_param(&ci
->ci_first_pm
, &ci
->ci_last_pm
, "charset",
1485 contains8bit
? write_charset_8bit() : "us-ascii", 0);
1486 t
->tx_charset
= CHARSET_SPECIFIED
;
1491 * Decide which transfer encoding to use.
1494 if (ct
->c_reqencoding
!= CE_UNKNOWN
)
1495 ct
->c_encoding
= ct
->c_reqencoding
;
1497 switch (ct
->c_type
) {
1499 if (contains8bit
&& !containsnul
&& !linelen
&& !linespace
&& !checksw
)
1500 ct
->c_encoding
= CE_8BIT
;
1501 else if (contains8bit
|| containsnul
|| linelen
|| linespace
|| checksw
)
1502 ct
->c_encoding
= CE_QUOTED
;
1504 ct
->c_encoding
= CE_7BIT
;
1507 case CT_APPLICATION
:
1508 /* For application type, use base64, except when postscript */
1509 if (containsnul
|| contains8bit
|| linelen
|| linespace
|| checksw
)
1510 ct
->c_encoding
= (ct
->c_subtype
== APPLICATION_POSTSCRIPT
)
1511 ? CE_QUOTED
: CE_BASE64
;
1513 ct
->c_encoding
= CE_7BIT
;
1517 ct
->c_encoding
= contains8bit
? CE_8BIT
: CE_7BIT
;
1523 /* For audio, image, and video contents, just use base64 */
1524 ct
->c_encoding
= CE_BASE64
;
1528 return (boundaryclash
? NOTOK
: OK
);
1533 * Scan the content structures, and build header
1534 * fields that will need to be output into the
1539 build_headers (CT ct
, int header_encoding
)
1541 int cc
, mailbody
, extbody
, len
;
1542 char *np
, *vp
, buffer
[BUFSIZ
];
1543 CI ci
= &ct
->c_ctinfo
;
1546 * If message is type multipart, then add the multipart
1547 * boundary to the list of attribute/value pairs.
1549 if (ct
->c_type
== CT_MULTIPART
) {
1550 static int level
= 0; /* store nesting level */
1552 snprintf (buffer
, sizeof(buffer
), "%s%d", prefix
, level
++);
1553 add_param(&ci
->ci_first_pm
, &ci
->ci_last_pm
, "boundary", buffer
, 0);
1557 * Skip the output of Content-Type, parameters, content
1558 * description and disposition, and Content-ID if the
1559 * content is of type "message" and the rfc934 compatibility
1560 * flag is set (which means we are inside multipart/digest
1561 * and the switch -rfc934mode was given).
1563 if (ct
->c_type
== CT_MESSAGE
&& ct
->c_rfc934
)
1567 * output the content type and subtype
1569 np
= add (TYPE_FIELD
, NULL
);
1570 vp
= concat (" ", ci
->ci_type
, "/", ci
->ci_subtype
, NULL
);
1572 /* keep track of length of line */
1573 len
= strlen (TYPE_FIELD
) + strlen (ci
->ci_type
)
1574 + strlen (ci
->ci_subtype
) + 3;
1576 extbody
= ct
->c_type
== CT_MESSAGE
&& ct
->c_subtype
== MESSAGE_EXTERNAL
;
1577 mailbody
= extbody
&& ((struct exbody
*) ct
->c_ctparams
)->eb_body
;
1580 * Append the attribute/value pairs to
1581 * the end of the Content-Type line.
1584 if (ci
->ci_first_pm
) {
1585 char *s
= output_params(len
, ci
->ci_first_pm
, &len
, mailbody
);
1588 adios(NULL
, "Internal error: failed outputting Content-Type "
1596 * Append any RFC-822 comment to the end of
1597 * the Content-Type line.
1599 if (ci
->ci_comment
) {
1600 snprintf (buffer
, sizeof(buffer
), "(%s)", ci
->ci_comment
);
1601 if (len
+ 1 + (cc
= 2 + strlen (ci
->ci_comment
)) >= CPERLIN
) {
1602 vp
= add ("\n\t", vp
);
1608 vp
= add (buffer
, vp
);
1611 vp
= add ("\n", vp
);
1612 add_header (ct
, np
, vp
);
1615 * output the Content-ID, unless disabled by -nocontentid
1617 if (contentidsw
&& ct
->c_id
) {
1618 np
= add (ID_FIELD
, NULL
);
1619 vp
= concat (" ", ct
->c_id
, NULL
);
1620 add_header (ct
, np
, vp
);
1623 * output the Content-Description
1626 np
= add (DESCR_FIELD
, NULL
);
1627 vp
= concat (" ", ct
->c_descr
, NULL
);
1628 if (encode_rfc2047(DESCR_FIELD
, &vp
, header_encoding
, NULL
))
1629 adios(NULL
, "Unable to encode %s header", DESCR_FIELD
);
1630 add_header (ct
, np
, vp
);
1634 * output the Content-Disposition. If it's NULL but c_dispo_type is
1635 * set, then we need to build it.
1638 np
= add (DISPO_FIELD
, NULL
);
1639 vp
= concat (" ", ct
->c_dispo
, NULL
);
1640 add_header (ct
, np
, vp
);
1641 } else if (ct
->c_dispo_type
) {
1642 vp
= concat (" ", ct
->c_dispo_type
, NULL
);
1643 len
= strlen(DISPO_FIELD
) + strlen(vp
) + 1;
1644 np
= output_params(len
, ct
->c_dispo_first
, NULL
, 0);
1649 add_header (ct
, getcpy(DISPO_FIELD
), vp
);
1654 * If this is the internal content structure for a
1655 * "message/external", then we are done with the
1656 * headers (since it has no body).
1662 * output the Content-MD5
1665 np
= add (MD5_FIELD
, NULL
);
1666 vp
= calculate_digest (ct
, (ct
->c_encoding
== CE_QUOTED
) ? 1 : 0);
1667 add_header (ct
, np
, vp
);
1671 * output the Content-Transfer-Encoding
1673 switch (ct
->c_encoding
) {
1675 /* Nothing to output */
1679 np
= add (ENCODING_FIELD
, NULL
);
1680 vp
= concat (" ", "8bit", "\n", NULL
);
1681 add_header (ct
, np
, vp
);
1685 if (ct
->c_type
== CT_MESSAGE
|| ct
->c_type
== CT_MULTIPART
)
1686 adios (NULL
, "internal error, invalid encoding");
1688 np
= add (ENCODING_FIELD
, NULL
);
1689 vp
= concat (" ", "quoted-printable", "\n", NULL
);
1690 add_header (ct
, np
, vp
);
1694 if (ct
->c_type
== CT_MESSAGE
|| ct
->c_type
== CT_MULTIPART
)
1695 adios (NULL
, "internal error, invalid encoding");
1697 np
= add (ENCODING_FIELD
, NULL
);
1698 vp
= concat (" ", "base64", "\n", NULL
);
1699 add_header (ct
, np
, vp
);
1703 if (ct
->c_type
== CT_MESSAGE
)
1704 adios (NULL
, "internal error, invalid encoding");
1706 np
= add (ENCODING_FIELD
, NULL
);
1707 vp
= concat (" ", "binary", "\n", NULL
);
1708 add_header (ct
, np
, vp
);
1712 adios (NULL
, "unknown transfer encoding in content");
1717 * Additional content specific header processing
1719 switch (ct
->c_type
) {
1722 struct multipart
*m
;
1725 m
= (struct multipart
*) ct
->c_ctparams
;
1726 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
1730 build_headers (p
, header_encoding
);
1736 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
1739 e
= (struct exbody
*) ct
->c_ctparams
;
1740 build_headers (e
->eb_content
, header_encoding
);
1753 static char nib2b64
[0x40+1] =
1754 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
1757 calculate_digest (CT ct
, int asciiP
)
1762 unsigned char digest
[16];
1763 unsigned char outbuf
[25];
1765 CE ce
= &ct
->c_cefile
;
1766 char *infilename
= ce
->ce_file
? ce
->ce_file
: ct
->c_file
;
1770 if ((in
= fopen (infilename
, "r")) == NULL
)
1771 adios (infilename
, "unable to open for reading");
1773 /* Initialize md5 context */
1774 MD5Init (&mdContext
);
1776 /* calculate md5 message digest */
1781 while ((gotlen
= getline(&bufp
, &buflen
, in
)) != -1) {
1784 cp
= bufp
+ gotlen
- 1;
1785 if ((c
= *cp
) == '\n')
1788 MD5Update (&mdContext
, (unsigned char *) bufp
,
1789 (unsigned int) gotlen
);
1792 MD5Update (&mdContext
, (unsigned char *) "\r\n", 2);
1795 char buffer
[BUFSIZ
];
1796 while ((cc
= fread (buffer
, sizeof(*buffer
), sizeof(buffer
), in
)) > 0)
1797 MD5Update (&mdContext
, (unsigned char *) buffer
, (unsigned int) cc
);
1800 /* md5 finalization. Write digest and zero md5 context */
1801 MD5Final (digest
, &mdContext
);
1806 /* print debugging info */
1810 fprintf (stderr
, "MD5 digest=");
1811 for (ep
= (dp
= digest
) + sizeof(digest
) / sizeof(digest
[0]);
1813 fprintf (stderr
, "%02x", *dp
& 0xff);
1814 fprintf (stderr
, "\n");
1817 /* encode the digest using base64 */
1818 for (dp
= digest
, op
= (char *) outbuf
,
1819 cc
= sizeof(digest
) / sizeof(digest
[0]);
1820 cc
> 0; cc
-= 3, op
+= 4) {
1824 bits
= (*dp
++ & 0xff) << 16;
1826 bits
|= (*dp
++ & 0xff) << 8;
1828 bits
|= *dp
++ & 0xff;
1831 for (bp
= op
+ 4; bp
> op
; bits
>>= 6)
1832 *--bp
= nib2b64
[bits
& 0x3f];
1840 /* null terminate string */
1843 /* now make copy and return string */
1844 vp
= concat (" ", outbuf
, "\n", NULL
);
1849 * Set things up for the content structure for file "filename" that
1854 setup_attach_content(CT ct
, char *filename
)
1856 char *type
, *simplename
= r1bindex(filename
, '/');
1857 struct str2init
*s2i
;
1860 if (! (type
= mime_type(filename
))) {
1861 adios(NULL
, "Unable to determine MIME type of \"%s\"", filename
);
1865 * Parse the Content-Type. get_ctinfo() parses MIME parameters, but
1866 * since we're just feeding it a MIME type we have to add those ourself.
1867 * Map that to a valid content-type label and call any initialization
1871 if (get_ctinfo(type
, ct
, 0) == NOTOK
)
1876 for (s2i
= str2cts
; s2i
->si_key
; s2i
++)
1877 if (strcasecmp(ct
->c_ctinfo
.ci_type
, s2i
->si_key
) == 0)
1879 if (!s2i
->si_key
&& !uprf(ct
->c_ctinfo
.ci_type
, "X-"))
1883 * Make sure the type isn't incompatible with what we can handle
1886 switch (ct
->c_type
= s2i
->si_val
) {
1888 adios (NULL
, "multipart types must be specified by mhbuild directives");
1892 if (strcasecmp(ct
->c_ctinfo
.ci_subtype
, "partial") == 0)
1893 adios(NULL
, "Sorry, %s/%s isn't supported", ct
->c_ctinfo
.ci_type
,
1894 ct
->c_ctinfo
.ci_subtype
);
1895 if (strcasecmp(ct
->c_ctinfo
.ci_subtype
, "external-body") == 0)
1896 adios(NULL
, "external-body messages must be specified "
1897 "by mhbuild directives");
1902 * This sets the subtype, if it's significant
1904 if ((ct
->c_ctinitfnx
= s2i
->si_init
))
1905 (*ct
->c_ctinitfnx
)(ct
);
1910 * Feed in a few attributes; specifically, the name attribute, the
1911 * content-description, and the content-disposition.
1914 for (pm
= ct
->c_ctinfo
.ci_first_pm
; pm
; pm
= pm
->pm_next
) {
1915 if (strcasecmp(pm
->pm_name
, "name") == 0) {
1918 pm
->pm_value
= getcpy(simplename
);
1924 add_param(&ct
->c_ctinfo
.ci_first_pm
, &ct
->c_ctinfo
.ci_last_pm
,
1925 "name", simplename
, 0);
1927 ct
->c_descr
= getcpy(simplename
);
1928 ct
->c_descr
= add("\n", ct
->c_descr
);
1929 ct
->c_cefile
.ce_file
= getcpy(filename
);
1932 * If it's a text/calendar, we need to make sure it's an inline,
1933 * otherwise it won't work with some calendar programs. Otherwise
1937 if (strcasecmp(ct
->c_ctinfo
.ci_type
, "text") == 0 &&
1938 strcasecmp(ct
->c_ctinfo
.ci_subtype
, "calendar") == 0) {
1939 ct
->c_dispo_type
= getcpy("inline");
1941 ct
->c_dispo_type
= getcpy("attachment");
1944 add_param(&ct
->c_dispo_first
, &ct
->c_dispo_last
, "filename", simplename
, 0);