]> code.citadel.org Git - citadel.git/blobdiff - citadel/mime_parser.c
fixes for BSDI. see ChangeLog.
[citadel.git] / citadel / mime_parser.c
index 9b21b25fc67adb6c3cf5b3b99cda7549bdc3564d..bc046ba8e27c963c7f2aeeadaacbade62fade08d 100644 (file)
@@ -9,6 +9,7 @@
  *
  */
 
+#include "sysdep.h"
 #include <stdlib.h>
 #include <unistd.h>
 #include <stdio.h>
 #include <ctype.h>
 #include <string.h>
 #include <sys/stat.h>
+#include <errno.h>
+#ifdef HAVE_PTHREAD_H
 #include <pthread.h>
+#endif
 #include "citadel.h"
 #include "mime_parser.h"
 #include "sysdep_decls.h"
@@ -77,11 +81,13 @@ char *memreadline(char *start, char *buf, int maxlen) {
 void mime_decode(char *partnum,
                char *part_start, size_t length,
                char *content_type, char *encoding,
+               char *disposition,
                char *name, char *filename,
                void (*CallBack)
                        (char *cbname,
                        char *cbfilename,
                        char *cbpartnum,
+                       char *cbdisp,
                        void *cbcontent,
                        char *cbtype,
                        size_t cblength)
@@ -97,15 +103,22 @@ void mime_decode(char *partnum,
        size_t blocksize;
        int write_error = 0;
 
+       lprintf(9, "mime_decode() called\n");
+
+       /* Some encodings aren't really encodings */
+       if (!strcasecmp(encoding, "7bit"))      strcpy(encoding, "");
+       if (!strcasecmp(encoding, "8bit"))      strcpy(encoding, "");
+       if (!strcasecmp(encoding, "binary"))    strcpy(encoding, "");
+
        /* If this part is not encoded, send as-is */
        if (strlen(encoding)==0) {
-               CallBack(name, filename, partnum, part_start,
+               CallBack(name, filename, partnum, disposition, part_start,
                        content_type, length);
                return;
                }
 
        if ( (strcasecmp(encoding, "base64"))
-            && (strcasecmp(encoding, "7bit"))  ) {
+            && (strcasecmp(encoding, "quoted-printable"))  ) {
                lprintf(5, "ERROR: unknown MIME encoding '%s'\n", encoding);
                return;
                }
@@ -114,9 +127,10 @@ void mime_decode(char *partnum,
         * Allocate a buffer for the decoded data.  The output buffer is the
         * same size as the input buffer; this assumes that the decoded data
         * will never be larger than the encoded data.  This is a safe
-        * assumption with base64, uuencode, and quoted-printable.
+        * assumption with base64, uuencode, and quoted-printable.  Just to
+        * be safe, we still pad the buffer a bit.
         */
-       decoded = mallok(length);
+       decoded = mallok(length + 1024);
        if (decoded == NULL) {
                lprintf(5, "ERROR: cannot allocate memory.\n");
                return;
@@ -125,14 +139,13 @@ void mime_decode(char *partnum,
        if (pipe(recvpipe) != 0) return;
 
        childpid = fork();
-       lprintf(9, "fork() returned %d\n", childpid);
        if (childpid < 0) {
                phree(decoded);
                return;
                }
 
        if (childpid == 0) {
-               /* close(2); FIX uncomment this when solid */
+               close(2);
                /* send stdio to the pipes */
                if (dup2(sendpipe[0], 0)<0) lprintf(5, "ERROR dup2()\n");
                if (dup2(recvpipe[1], 1)<0) lprintf(5, "ERROR dup2()\n");
@@ -140,8 +153,8 @@ void mime_decode(char *partnum,
                close(recvpipe[0]);
                if (!strcasecmp(encoding, "base64"))
                   execlp("./base64", "base64", "-d", NULL);
-               else if (!strcasecmp(encoding, "7bit"))
-                  execlp("/bin/dd", "dd", NULL);
+               else if (!strcasecmp(encoding, "quoted-printable"))
+                  execlp("./qpdecode", "qpdecode", NULL);
                lprintf(5, "ERROR: cannot exec decoder for %s\n", encoding);
                exit(1);
                }
@@ -149,8 +162,6 @@ void mime_decode(char *partnum,
        close(sendpipe[0]);      /* Close the ends we're not using  */
        close(recvpipe[1]);
 
-       lprintf(9, "ready to send %d bytes\n", length);
-
        while ( (bytes_sent < length) && (write_error == 0) ) {
                /* Empty the input pipe FIRST */
                while (fstat(recvpipe[0], &statbuf), (statbuf.st_size > 0) ) {
@@ -178,11 +189,10 @@ void mime_decode(char *partnum,
                bytes_recv = bytes_recv + blocksize;
                }
 
-       lprintf(9, "Decoded length = %d\n", bytes_recv);
-
        if (bytes_recv > 0)
-               CallBack(name, filename, partnum, decoded,
+               CallBack(name, filename, partnum, disposition, decoded,
                        content_type, bytes_recv);
+
        phree(decoded);
        }
 
@@ -198,6 +208,7 @@ void the_mime_parser(char *partnum,
                        (char *cbname,
                        char *cbfilename,
                        char *cbpartnum,
+                       char *cbdisp,
                        void *cbcontent,
                        char *cbtype,
                        size_t cblength)
@@ -212,6 +223,7 @@ void the_mime_parser(char *partnum,
        char endary[256];
        char content_type[256];
        char encoding[256];
+       char disposition[256];
        char name[256];
        char filename[256];
        int is_multipart;
@@ -220,6 +232,7 @@ void the_mime_parser(char *partnum,
        size_t length;
        char nested_partnum[256];
 
+       lprintf(9, "the_mime_parser() called\n");
        ptr = content_start;
        memset(boundary, 0, sizeof boundary);
        memset(content_type, 0, sizeof content_type);
@@ -243,7 +256,8 @@ void the_mime_parser(char *partnum,
                                extract_key(name, content_type, "name");
                                }
                        if (!strncasecmp(header, "Content-Disposition: ", 21)) {
-                               extract_key(filename, header, "filename");
+                               strcpy(disposition, &header[21]);
+                               extract_key(filename, disposition, "filename");
                                }
                        if (!strncasecmp(header,
                                "Content-transfer-encoding: ", 27))
@@ -256,6 +270,8 @@ void the_mime_parser(char *partnum,
                        strcat(header, buf);
                } while ((strlen(buf) > 0) && (*ptr != 0));
 
+       for (i=0; i<strlen(disposition); ++i) 
+               if (disposition[i]==';') disposition[i] = 0;
        for (i=0; i<strlen(content_type); ++i) 
                if (content_type[i]==';') content_type[i] = 0;
 
@@ -301,7 +317,7 @@ void the_mime_parser(char *partnum,
                        }
                mime_decode(partnum,
                                part_start, length,
-                               content_type, encoding,
+                               content_type, encoding, disposition,
                                name, filename, CallBack);
                }
        
@@ -318,10 +334,12 @@ void mime_parser(char *content_start, char *content_end,
                        (char *cbname,
                        char *cbfilename,
                        char *cbpartnum,
+                       char *cbdisp,
                        void *cbcontent,
                        char *cbtype,
                        size_t cblength)
                ) {
 
+       lprintf(9, "mime_parser() called\n");
        the_mime_parser("1", content_start, content_end, CallBack);
        }