]> Pileus Git - ~andy/fetchmail/blob - unmime.c
Fix various compiler warnings.
[~andy/fetchmail] / unmime.c
1 /*
2  * MIME mail decoding.
3  *
4  * This module contains decoding routines for converting
5  * quoted-printable data into pure 8-bit data, in MIME
6  * formatted messages.
7  *
8  * By Henrik Storner <storner@image.dk>
9  *
10  * Configuration file support for fetchmail 4.3.8 by 
11  * Frank Damgaard <frda@post3.tele.dk>
12  * 
13  * For license terms, see the file COPYING in this directory.
14  */
15
16 #include "config.h"
17 #include <string.h>
18 #include <stdlib.h>
19 #include <stdio.h>
20 #include <ctype.h>
21 #include "fetchmail.h"
22 #include "i18n.h"
23
24 static unsigned char unhex(unsigned char c)
25 {
26   if ((c >= '0') && (c <= '9'))
27     return (c - '0');
28   else if ((c >= 'A') && (c <= 'F'))
29     return (c - 'A' + 10);
30   else if ((c >= 'a') && (c <= 'f'))
31     return (c - 'a' + 10);
32   else
33       return 16;        /* invalid hex character */
34 }
35
36 static int qp_char(unsigned char c1, unsigned char c2, unsigned char *c_out)
37 {
38   c1 = unhex(c1);
39   c2 = unhex(c2);
40
41   if ((c1 > 15) || (c2 > 15)) 
42     return 1;
43   else {
44     *c_out = 16*c1+c2;
45     return 0;
46   }
47 }
48
49
50 /*
51  * Routines to decode MIME QP-encoded headers, as per RFC 2047.
52  */
53
54 /* States of the decoding state machine */
55 #define S_COPY_PLAIN        0   /* Just copy, but watch for the QP flag */
56 #define S_SKIP_MIMEINIT     1   /* Get the encoding, and skip header */
57 #define S_COPY_MIME         2   /* Decode a sequence of coded characters */
58
59 static const char MIMEHDR_INIT[]  = "=?";       /* Start of coded sequence */
60 static const char MIMEHDR_END[]   = "?=";       /* End of coded sequence */
61
62 void UnMimeHeader(unsigned char *hdr)
63 {
64   /* Decode a buffer containing data encoded according to RFC
65    * 2047. This only handles content-transfer-encoding; conversion
66    * between character sets is not implemented.  In other words: We
67    * assume the charsets used can be displayed by your mail program
68    * without problems. 
69    */
70
71   /* Note: Decoding is done "in-situ", i.e. without using an
72    * additional buffer for temp. storage. This is possible, since the
73    * decoded string will always be shorter than the encoded string,
74    * due to the encoding scheme.
75    */
76
77   int  state = S_COPY_PLAIN;
78   unsigned char *p_in, *p_out, *p;
79   unsigned char enc = '\0';             /* initialization pacifies -Wall */
80   int  i;
81
82   /* Speed up in case this is not a MIME-encoded header */
83   p = strstr(hdr, MIMEHDR_INIT);
84   if (p == NULL)
85     return;   /* No MIME header */
86
87   /* Loop through the buffer.
88    *  p_in : Next char to be processed.
89    *  p_out: Where to put the next processed char
90    *  enc  : Encoding used (usually, 'q' = quoted-printable)
91    */
92   for (p_out = p_in = hdr; (*p_in); ) {
93     switch (state) {
94     case S_COPY_PLAIN:
95       p = strstr(p_in, MIMEHDR_INIT);
96       if (p == NULL) {
97         /* 
98          * No more coded data in buffer, 
99          * just move remainder into place. 
100          */
101         i = strlen(p_in);   /* How much left */
102         memmove(p_out, p_in, i);
103         p_in += i; p_out += i;
104       }
105       else {
106         /* MIME header init found at location p */
107         if (p > p_in) {
108           /* There are some uncoded chars at the beginning. */
109           i = (p - p_in);
110           memmove(p_out, p_in, i);
111           p_out += i;
112         }
113         p_in = (p + 2);
114         state = S_SKIP_MIMEINIT;
115       }
116       break;
117
118     case S_SKIP_MIMEINIT:
119       /* Mime type definition: "charset?encoding?" */
120       p = strchr(p_in, '?');
121       if (p != NULL) {
122         /* p_in .. (p-1) holds the charset */
123
124         /* *(p+1) is the transfer encoding, *(p+2) must be a '?' */
125         if (*(p+2) == '?') {
126           enc = tolower(*(p+1));
127           p_in = p+3;
128           state = S_COPY_MIME;
129         }
130         else
131           state = S_COPY_PLAIN;
132       }
133       else
134         state = S_COPY_PLAIN;   /* Invalid data */
135       break;
136
137     case S_COPY_MIME:
138       p = strstr(p_in, MIMEHDR_END);  /* Find end of coded data */
139       if (p == NULL) p = p_in + strlen(p_in);
140       for (; (p_in < p); ) {
141         /* Decode all encoded data */
142         if (enc == 'q') {
143           if (*p_in == '=') {
144             /* Decode one char qp-coded at (p_in+1) and (p_in+2) */
145             if (qp_char(*(p_in+1), *(p_in+2), p_out) == 0)
146               p_in += 3;
147             else {
148               /* Invalid QP data - pass through unchanged. */
149               *p_out = *p_in;
150               p_in++;
151             }
152           }
153           else if (*p_in == '_') {
154             /* 
155              * RFC 2047: '_' inside encoded word represents 0x20.
156              * NOT a space - always the value 0x20.
157              */
158             *p_out = 0x20;
159             p_in++;
160           }
161           else {
162             /* Copy unchanged */
163             *p_out = *p_in;
164             p_in++;
165           }
166           p_out++;
167         }
168         else if (enc == 'b') {
169           /* Decode base64 encoded data */
170           char delimsave;
171           int decoded_count;
172
173           delimsave = *p; *p = '\r';
174           decoded_count = from64tobits(p_out, p_in, 0);
175           *p = delimsave;
176           if (decoded_count > 0) 
177             p_out += decoded_count;            
178           p_in = p;
179         }
180         else {
181           /* Copy unchanged */
182           *p_out = *p_in;
183           p_in++;
184           p_out++;
185         }
186       }
187       if (*p_in)
188         p_in += 2;   /* Skip the MIMEHDR_END delimiter */
189
190       /* 
191        * We've completed decoding one encoded sequence. But another
192        * may follow immediately, in which case whitespace before the
193        * new MIMEHDR_INIT delimiter must be discarded.
194        * See if that is the case 
195        */
196       p = strstr(p_in, MIMEHDR_INIT);
197       state = S_COPY_PLAIN;
198       if (p != NULL) {
199         /*
200          * There is more MIME data later on. Is there
201          * whitespace  only before the delimiter? 
202          */
203         unsigned char *q;
204         int  wsp_only = 1;
205
206         for (q=p_in; (wsp_only && (q < p)); q++)
207           wsp_only = isspace(*q);
208
209         if (wsp_only) {
210           /* 
211            * Whitespace-only before the MIME delimiter. OK,
212            * just advance p_in to past the new MIMEHDR_INIT,
213            * and prepare to process the new MIME charset/encoding
214            * header.
215            */
216           p_in = p + sizeof(MIMEHDR_INIT) - 1;
217           state = S_SKIP_MIMEINIT;
218         }
219       }
220       break;
221     }
222   }
223
224   *p_out = '\0';
225 }
226
227
228
229 /*
230  * Routines for decoding body-parts of a message.
231  *
232  * Since the "fetch" part of fetchmail gets a message body
233  * one line at a time, we need to maintain some state variables
234  * across multiple invokations of the UnMimeBodyline() routine.
235  * The driver routine should call MimeBodyType() when all
236  * headers have been received, and then UnMimeBodyline() for
237  * every line in the message body.
238  *
239  */
240 #define S_BODY_DATA 0
241 #define S_BODY_HDR  1
242
243 /* 
244  * Flag indicating if we are currently processing 
245  * the headers or the body of a (multipart) message.
246  */
247 static int  BodyState = S_BODY_DATA;
248
249 /* 
250  * Flag indicating if we are in the process of decoding
251  * a quoted-printable body part.
252  */
253 static int  CurrEncodingIsQP = 0;
254 static int  CurrTypeNeedsDecode = 0;
255
256 /* 
257  * Delimiter for multipart messages. RFC 2046 states that this must
258  * NEVER be longer than 70 characters. Add 3 for the two hyphens
259  * at the beginning, and a terminating null.
260  */
261 #define MAX_DELIM_LEN 70
262 static unsigned char MultipartDelimiter[MAX_DELIM_LEN+3];
263
264
265 /* This string replaces the "Content-Transfer-Encoding: quoted-printable"
266  * string in all headers, including those in body-parts. The replacement
267  * must be no longer than the original string.
268  */
269 static const char ENC8BIT[] = "Content-Transfer-Encoding: 8bit";
270 static void SetEncoding8bit(unsigned char *XferEncOfs)
271 {
272   unsigned char *p;
273
274   if (XferEncOfs != NULL) {
275      memcpy(XferEncOfs, ENC8BIT, sizeof(ENC8BIT) - 1);
276
277      /* If anything left, in this header, replace with whitespace */
278      for (p=XferEncOfs+sizeof(ENC8BIT)-1; (*p >= ' '); p++) *p=' ';
279   }
280 }
281
282 static char *GetBoundary(char *CntType)
283 {
284   char *p1, *p2;
285   int flag;
286
287   /* Find the "boundary" delimiter. It must be preceded with a ';'
288    * and optionally some whitespace.
289    */
290   p1 = CntType;
291   do {
292     p2 = strchr(p1, ';'); 
293     if (p2)
294       for (p2++; isspace(*p2); p2++);
295
296     p1 = p2;
297   } while ((p1) && (strncasecmp(p1, "boundary", 8) != 0));
298
299   if (p1 == NULL)
300     /* No boundary delimiter */
301     return NULL;
302
303   /* Skip "boundary", whitespace and '='; check that we do have a '=' */
304   for (p1+=8, flag=0; (isspace(*p1) || (*p1 == '=')); p1++)
305     flag |= (*p1 == '=');
306   if (!flag)
307     return NULL;
308
309   /* Find end of boundary delimiter string */
310   if (*p1 == '\"') {
311     /* The delimiter is inside quotes */
312     p1++;
313     p2 = strchr(p1, '\"');
314     if (p2 == NULL)
315       return NULL;  /* No closing '"' !?! */
316   }
317   else {
318     /* There might be more text after the "boundary" string. */
319     p2 = strchr(p1, ';');  /* Safe - delimiter with ';' must be in quotes */
320   }
321
322   /* Zero-terminate the boundary string */
323   if (p2 != NULL)
324     *p2 = '\0';
325
326   return (p1 && strlen(p1)) ? p1 : NULL;
327 }
328
329
330 static int CheckContentType(char *CntType)
331 {
332   /*
333    * Static array of Content-Type's for which we will do
334    * quoted-printable decoding, if requested. 
335    * It is probably wise to do this only on known text-only types;
336    * be really careful if you change this.
337    */
338
339   static char *DecodedTypes[] = {
340     "text/",        /* Will match ALL content-type's starting with 'text/' */
341     "message/rfc822", 
342     NULL
343   };
344
345   char *p = CntType;
346   int i;
347
348   /* If no Content-Type header, it isn't MIME - don't touch it */
349   if (CntType == NULL) return 0;
350
351   /* Skip whitespace, if any */
352   for (; isspace(*p); p++) ;
353
354   for (i=0; 
355        (DecodedTypes[i] && 
356         (strncasecmp(p, DecodedTypes[i], strlen(DecodedTypes[i])))); 
357        i++) ;
358
359   return (DecodedTypes[i] != NULL);
360 }
361
362
363 /*
364  * This routine does three things:
365  * 1) It determines - based on the message headers - whether the
366  *    message body is a MIME message that may hold 8 bit data.
367  *    - A message that has a "quoted-printable" or "8bit" transfer 
368  *      encoding is assumed to contain 8-bit data (when decoded).
369  *    - A multipart message is assumed to contain 8-bit data
370  *      when decoded (there might be quoted-printable body-parts).
371  *    - All other messages are assumed NOT to include 8-bit data.
372  * 2) It determines the delimiter-string used in multi-part message
373  *    bodies.
374  * 3) It sets the initial values of the CurrEncodingIsQP, 
375  *    CurrTypeNeedsDecode, and BodyState variables, from the header 
376  *    contents.
377  *
378  * The return value is a bitmask.
379  */
380 int MimeBodyType(unsigned char *hdrs, int WantDecode)
381 {
382   unsigned char *NxtHdr = hdrs;
383   unsigned char *XferEnc, *XferEncOfs, *CntType, *MimeVer, *p;
384   int  HdrsFound = 0;     /* We only look for three headers */
385   int  BodyType;          /* Return value */ 
386
387   /* Setup for a standard (no MIME, no QP, 7-bit US-ASCII) message */
388   MultipartDelimiter[0] = '\0';
389   CurrEncodingIsQP = CurrTypeNeedsDecode = 0;
390   BodyState = S_BODY_DATA;
391   BodyType = 0;
392
393   /* Just in case ... */
394   if (hdrs == NULL)
395     return BodyType;
396
397   XferEnc = XferEncOfs = CntType = MimeVer = NULL;
398
399   do {
400     if (strncasecmp("Content-Transfer-Encoding:", NxtHdr, 26) == 0) {
401       XferEncOfs = NxtHdr;
402       p = nxtaddr(NxtHdr);
403       if (p != NULL) {
404         xalloca(XferEnc, char *, strlen(p) + 1);
405         strcpy(XferEnc, p);
406         HdrsFound++;
407       }
408     }
409     else if (strncasecmp("Content-Type:", NxtHdr, 13) == 0) {
410       /*
411        * This one is difficult. We cannot use the standard
412        * nxtaddr() routine, since the boundary-delimiter is
413        * (probably) enclosed in quotes - and thus appears
414        * as an rfc822 comment, and nxtaddr() "eats" up any
415        * spaces in the delimiter. So, we have to do this
416        * by hand.
417        */
418
419       /* Skip the "Content-Type:" part and whitespace after it */
420       for (NxtHdr += 13; ((*NxtHdr == ' ') || (*NxtHdr == '\t')); NxtHdr++);
421
422       /* 
423        * Get the full value of the Content-Type header;
424        * it might span multiple lines. So search for
425        * a newline char, but ignore those that have a
426        * have a TAB or space just after the NL (continued
427        * lines).
428        */
429       p = NxtHdr-1;
430       do {
431         p=strchr((p+1),'\n'); 
432       } while ( (p != NULL) && ((*(p+1) == '\t') || (*(p+1) == ' ')) );
433       if (p == NULL) p = NxtHdr + strlen(NxtHdr);
434
435       xalloca(CntType, char *, p-NxtHdr+2);
436       strncpy(CntType, NxtHdr, (p-NxtHdr));
437       *(CntType+(p-NxtHdr)) = '\0';
438       HdrsFound++;
439     }
440     else if (strncasecmp("MIME-Version:", NxtHdr, 13) == 0) {
441       p = nxtaddr(NxtHdr);
442       if (p != NULL) {
443         xalloca(MimeVer, char *, strlen(p) + 1);
444         strcpy(MimeVer, p);
445         HdrsFound++;
446       }
447     }
448
449     NxtHdr = (strchr(NxtHdr, '\n'));
450     if (NxtHdr != NULL) NxtHdr++;
451   } while ((NxtHdr != NULL) && (*NxtHdr) && (HdrsFound != 3));
452
453
454   /* Done looking through the headers, now check what they say */
455   if ((MimeVer != NULL) && (strcmp(MimeVer, "1.0") == 0)) {
456
457     CurrTypeNeedsDecode = CheckContentType(CntType);
458
459     /* Check Content-Type to see if this is a multipart message */
460     if ( (CntType != NULL) &&
461          ((strncasecmp(CntType, "multipart/mixed", 16) == 0) ||
462           (strncasecmp(CntType, "message/", 8) == 0)) ) {
463
464       char *p1 = GetBoundary(CntType);
465
466       if (p1 != NULL) {
467         /* The actual delimiter is "--" followed by 
468            the boundary string */
469         strcpy(MultipartDelimiter, "--");
470         strncat(MultipartDelimiter, p1, MAX_DELIM_LEN);
471         MultipartDelimiter[sizeof(MultipartDelimiter)-1] = '\0';
472         BodyType = (MSG_IS_8BIT | MSG_NEEDS_DECODE);
473       }
474     }
475
476     /* 
477      * Check Content-Transfer-Encoding, but
478      * ONLY for non-multipart messages (BodyType == 0).
479      */
480     if ((XferEnc != NULL) && (BodyType == 0)) {
481       if (strcasecmp(XferEnc, "quoted-printable") == 0) {
482         CurrEncodingIsQP = 1;
483         BodyType = (MSG_IS_8BIT | MSG_NEEDS_DECODE);
484         if (WantDecode && CurrTypeNeedsDecode) {
485            SetEncoding8bit(XferEncOfs);
486         }
487       }
488       else if (strcasecmp(XferEnc, "7bit") == 0) {
489         CurrEncodingIsQP = 0;
490         BodyType = (MSG_IS_7BIT);
491       }
492       else if (strcasecmp(XferEnc, "8bit") == 0) {
493         CurrEncodingIsQP = 0;
494         BodyType = (MSG_IS_8BIT);
495       }
496     }
497
498   }
499
500   return BodyType;
501 }
502
503
504 /*
505  * Decode one line of data containing QP data.
506  * Return flag set if this line ends with a soft line-break.
507  * 'bufp' is modified to point to the end of the output buffer.
508  */
509 static int DoOneQPLine(unsigned char **bufp, flag delimited, flag issoftline)
510 {
511   unsigned char *buf = *bufp;
512   unsigned char *p_in, *p_out, *p;
513   int n;
514   int ret = 0;
515
516   /*
517    * Special case: line consists of a single =2E and messages are 
518    * dot-terminated.  Line has to be dot-stuffed after decoding.
519    */
520   if (delimited && !issoftline && buf[0]=='=' && !strncmp(*bufp, "=2E\r\n", 5))
521   {
522       strcpy(buf, "..\r\n");
523       *bufp += 5;
524       return(FALSE);
525   }
526
527   p_in = buf;
528   if (delimited && issoftline && (strncmp(buf, "..", 2) == 0))
529     p_in++;
530
531   for (p_out = buf; (*p_in); ) {
532     p = strchr(p_in, '=');
533     if (p == NULL) {
534       /* No more QP data, just move remainder into place */
535       n = strlen(p_in);
536       memmove(p_out, p_in, n);
537       p_in += n; p_out += n;
538     }
539     else {
540       if (p > p_in) {
541         /* There are some uncoded chars at the beginning. */
542         n = (p - p_in);
543         memmove(p_out, p_in, n);
544         p_out += n;
545       }
546               
547       switch (*(p+1)) {
548       case '\0': case '\r': case '\n':
549         /* Soft line break, skip '=' */
550         p_in = p+1; 
551         if (*p_in == '\r') p_in++;
552         if (*p_in == '\n') p_in++;
553         ret = 1;
554         break;
555
556       default:
557         /* There is a QP encoded byte */
558         if (qp_char(*(p+1), *(p+2), p_out) == 0) {
559           p_in = p+3;
560         }
561         else {
562           /* Invalid QP data - pass through unchanged. */
563           *p_out = '=';
564           p_in = p+1;
565         }
566         p_out++;
567         break;
568       }
569     }
570   }
571
572   *p_out = '\0';
573   *bufp = p_out;
574   return ret;
575 }
576
577
578 /* This is called once per line in the message body.  We need to scan
579  * all lines in the message body for the multipart delimiter string,
580  * and handle any body-part headers in such messages (these can toggle
581  * qp-decoding on and off).
582  *
583  * Note: Messages that are NOT multipart-messages go through this
584  * routine quickly, since BodyState will always be S_BODY_DATA,
585  * and MultipartDelimiter is NULL.
586  *
587  * Return flag set if this line ends with a soft line-break.
588  * 'bufp' is modified to point to the end of the output buffer.
589  */
590
591 int UnMimeBodyline(unsigned char **bufp, flag delimited, flag softline)
592 {
593   unsigned char *buf = *bufp;
594   int ret = 0;
595
596   switch (BodyState) {
597   case S_BODY_HDR:
598     UnMimeHeader(buf);   /* Headers in body-parts can be encoded, too! */
599     if ((*buf == '\0') || (*buf == '\n') || (strcmp(buf, "\r\n") == 0)) {
600       BodyState = S_BODY_DATA;
601     } 
602     else if (strncasecmp("Content-Transfer-Encoding:", buf, 26) == 0) {
603       char *XferEnc;
604
605       XferEnc = nxtaddr(buf);
606       if ((XferEnc != NULL) && (strcasecmp(XferEnc, "quoted-printable") == 0)) {
607         CurrEncodingIsQP = 1;
608
609         /*
610          * Hmm ... we cannot be really sure that CurrTypeNeedsDecode
611          * has been set - we may not have seen the Content-Type header
612          * yet. But *usually* the Content-Type header comes first, so
613          * this will work. And there is really no way of doing it 
614          * "right" as long as we stick with the line-by-line processing.
615          */
616         if (CurrTypeNeedsDecode)
617             SetEncoding8bit(buf);
618       }
619     }
620     else if (strncasecmp("Content-Type:", buf, 13) == 0) {
621       CurrTypeNeedsDecode = CheckContentType(nxtaddr(buf));
622     }
623
624     *bufp = (buf + strlen(buf));
625     break;
626
627   case S_BODY_DATA:
628     if ((*MultipartDelimiter) && 
629         (strncmp(buf, MultipartDelimiter, strlen(MultipartDelimiter)) == 0)) {
630       BodyState = S_BODY_HDR;
631       CurrEncodingIsQP = CurrTypeNeedsDecode = 0;
632     }
633
634     if (CurrEncodingIsQP && CurrTypeNeedsDecode) 
635       ret = DoOneQPLine(bufp, delimited, softline);
636     else
637      *bufp = (buf + strlen(buf));
638     break;
639   }
640
641   return ret;
642 }
643
644
645 #ifdef STANDALONE
646 #include <stdio.h>
647 #include <unistd.h>
648
649 char *program_name = "unmime";
650 int outlevel = 0;
651
652 #define BUFSIZE_INCREMENT 4096
653
654 #ifdef DEBUG
655 #define DBG_FWRITE(B,L,BS,FD) fwrite(B, L, BS, FD)
656 #else
657 #define DBG_FWRITE(B,L,BS,FD)
658 #endif
659
660 int main(int argc, char *argv[])
661 {
662   unsigned int BufSize;
663   unsigned char *buffer, *buf_p;
664   int nl_count, i, bodytype;
665
666 #ifdef DEBUG
667   pid_t pid;
668   FILE *fd_orig, *fd_conv;
669   char fnam[100];
670
671   pid = getpid();
672   sprintf(fnam, "/tmp/i_unmime.%x", pid);
673   fd_orig = fopen(fnam, "w");
674   sprintf(fnam, "/tmp/o_unmime.%x", pid);
675   fd_conv = fopen(fnam, "w");
676 #endif
677
678   BufSize = BUFSIZE_INCREMENT;    /* Initial size of buffer */
679   buf_p = buffer = (unsigned char *) xmalloc(BufSize);
680   nl_count = 0;
681
682   do {
683     i = fread(buf_p, 1, 1, stdin);
684     switch (*buf_p) {
685      case '\n':
686        nl_count++;
687        break;
688
689      case '\r':
690        break;
691
692      default:
693        nl_count = 0;
694        break;
695     }
696
697     buf_p++;
698     if ((buf_p - buffer) == BufSize) {
699        /* Buffer is full! Get more room. */
700        buffer = xrealloc(buffer, BufSize+BUFSIZE_INCREMENT);
701        buf_p = buffer + BufSize;
702        BufSize += BUFSIZE_INCREMENT;
703     }
704   } while ((i > 0) && (nl_count < 2));
705
706   *buf_p = '\0';
707   DBG_FWRITE(buffer, strlen(buffer), 1, fd_orig);
708
709   UnMimeHeader(buffer);
710   bodytype = MimeBodyType(buffer, 1);
711
712   i = strlen(buffer);
713   fwrite(buffer, i, 1, stdout);
714   DBG_FWRITE(buffer, i, 1, fd_conv);
715   
716   do {
717      buf_p = (buffer - 1);
718      do {
719         buf_p++;
720         i = fread(buf_p, 1, 1, stdin);
721      } while ((i == 1) && (*buf_p != '\n'));
722      if (i == 1) buf_p++;
723      *buf_p = '\0';
724      DBG_FWRITE(buf, (buf_p - buffer), 1, fd_orig);
725
726      if (buf_p > buffer) {
727         if (bodytype & MSG_NEEDS_DECODE) {
728            buf_p = buffer;
729            UnMimeBodyline(&buf_p, 0, 0);
730         }
731         fwrite(buffer, (buf_p - buffer), 1, stdout);
732         DBG_FWRITE(buffer, (buf_p - buffer), 1, fd_conv);
733      }
734   } while (buf_p > buffer);
735
736   free(buffer);
737   fflush(stdout);
738
739 #ifdef DEBUG
740   fclose(fd_orig);
741   fclose(fd_conv);
742 #endif
743
744   return 0;
745 }
746 #endif
747