summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/mime/src/mimesun.cpp
blob: 03e25336c9d2a5978733cf7d747a735d9933c215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "mimesun.h"
#include "prmem.h"
#include "plstr.h"
#include "prlog.h"
#include "nsMimeTypes.h"
#include "msgCore.h"
#include "nsMimeStringResources.h"
#include <ctype.h>

#define MIME_SUPERCLASS mimeMultipartClass
MimeDefClass(MimeSunAttachment, MimeSunAttachmentClass, mimeSunAttachmentClass,
             &MIME_SUPERCLASS);

static MimeMultipartBoundaryType MimeSunAttachment_check_boundary(MimeObject*,
                                                                  const char*,
                                                                  int32_t);
static int MimeSunAttachment_create_child(MimeObject*);
static int MimeSunAttachment_parse_child_line(MimeObject*, const char*, int32_t,
                                              bool);
static int MimeSunAttachment_parse_begin(MimeObject*);
static int MimeSunAttachment_parse_eof(MimeObject*, bool);

static int MimeSunAttachmentClassInitialize(MimeSunAttachmentClass* clazz) {
  MimeObjectClass* oclass = (MimeObjectClass*)clazz;
  MimeMultipartClass* mclass = (MimeMultipartClass*)clazz;

  PR_ASSERT(!oclass->class_initialized);
  oclass->parse_begin = MimeSunAttachment_parse_begin;
  oclass->parse_eof = MimeSunAttachment_parse_eof;
  mclass->check_boundary = MimeSunAttachment_check_boundary;
  mclass->create_child = MimeSunAttachment_create_child;
  mclass->parse_child_line = MimeSunAttachment_parse_child_line;
  return 0;
}

static int MimeSunAttachment_parse_begin(MimeObject* obj) {
  int status = ((MimeObjectClass*)&MIME_SUPERCLASS)->parse_begin(obj);
  if (status < 0) return status;

  /* Sun messages always have separators at the beginning. */
  return MimeObject_write_separator(obj);
}

static int MimeSunAttachment_parse_eof(MimeObject* obj, bool abort_p) {
  int status = 0;

  status = ((MimeObjectClass*)&MIME_SUPERCLASS)->parse_eof(obj, abort_p);
  if (status < 0) return status;

  /* Sun messages always have separators at the end. */
  if (!abort_p) {
    status = MimeObject_write_separator(obj);
    if (status < 0) return status;
  }

  return 0;
}

static MimeMultipartBoundaryType MimeSunAttachment_check_boundary(
    MimeObject* obj, const char* line, int32_t length) {
  /* ten dashes */

  if (line && line[0] == '-' && line[1] == '-' && line[2] == '-' &&
      line[3] == '-' && line[4] == '-' && line[5] == '-' && line[6] == '-' &&
      line[7] == '-' && line[8] == '-' && line[9] == '-' &&
      (line[10] == '\r' || line[10] == '\n'))
    return MimeMultipartBoundaryTypeSeparator;
  else
    return MimeMultipartBoundaryTypeNone;
}

static int MimeSunAttachment_create_child(MimeObject* obj) {
  if (obj->options) obj->options->is_child = true;

  MimeMultipart* mult = (MimeMultipart*)obj;
  int status = 0;

  char* sun_data_type = 0;
  const char *mime_ct = 0, *sun_enc_info = 0, *mime_cte = 0;
  char* mime_ct2 = 0; /* sometimes we need to copy; this is for freeing. */
  MimeObject* child = 0;

  mult->state = MimeMultipartPartLine;

  sun_data_type =
      (mult->hdrs
           ? MimeHeaders_get(mult->hdrs, HEADER_X_SUN_DATA_TYPE, true, false)
           : 0);
  if (sun_data_type) {
    int i;
    static const struct {
      const char *in, *out;
    } sun_types[] = {

        /* Convert recognised Sun types to the corresponding MIME types,
           and convert unrecognized ones based on the file extension and
           the mime.types file.

           These are the magic types used by MailTool that I can determine.
           The only actual written spec I've found only listed the first few.
           The rest were found by inspection (both of real-world messages,
           and by running `strings' on the MailTool binary, and on the file
           /usr/openwin/lib/cetables/cetables (the "Class Engine", Sun's
           equivalent to .mailcap and mime.types.)
         */
        {"default", TEXT_PLAIN},
        {"default-doc", TEXT_PLAIN},
        {"text", TEXT_PLAIN},
        {"scribe", TEXT_PLAIN},
        {"sgml", TEXT_PLAIN},
        {"tex", TEXT_PLAIN},
        {"troff", TEXT_PLAIN},
        {"c-file", TEXT_PLAIN},
        {"h-file", TEXT_PLAIN},
        {"readme-file", TEXT_PLAIN},
        {"shell-script", TEXT_PLAIN},
        {"cshell-script", TEXT_PLAIN},
        {"makefile", TEXT_PLAIN},
        {"hidden-docs", TEXT_PLAIN},
        {"message", MESSAGE_RFC822},
        {"mail-message", MESSAGE_RFC822},
        {"mail-file", TEXT_PLAIN},
        {"gif-file", IMAGE_GIF},
        {"jpeg-file", IMAGE_JPG},
        {"ppm-file", IMAGE_PPM},
        {"pgm-file", "image/x-portable-graymap"},
        {"pbm-file", "image/x-portable-bitmap"},
        {"xpm-file", "image/x-xpixmap"},
        {"ilbm-file", "image/ilbm"},
        {"tiff-file", "image/tiff"},
        {"photocd-file", "image/x-photo-cd"},
        {"sun-raster", "image/x-sun-raster"},
        {"audio-file", AUDIO_BASIC},
        {"postscript", APPLICATION_POSTSCRIPT},
        {"postscript-file", APPLICATION_POSTSCRIPT},
        {"framemaker-document", "application/x-framemaker"},
        {"sundraw-document", "application/x-sun-draw"},
        {"sunpaint-document", "application/x-sun-paint"},
        {"sunwrite-document", "application/x-sun-write"},
        {"islanddraw-document", "application/x-island-draw"},
        {"islandpaint-document", "application/x-island-paint"},
        {"islandwrite-document", "application/x-island-write"},
        {"sun-executable", APPLICATION_OCTET_STREAM},
        {"default-app", APPLICATION_OCTET_STREAM},
        {0, 0}};
    for (i = 0; sun_types[i].in; i++)
      if (!PL_strcasecmp(sun_data_type, sun_types[i].in)) {
        mime_ct = sun_types[i].out;
        break;
      }
  }

  /* If we didn't find a type, look at the extension on the file name.
   */
  if (!mime_ct && obj->options && obj->options->file_type_fn) {
    char* name = MimeHeaders_get_name(mult->hdrs, obj->options);
    if (name) {
      mime_ct2 = obj->options->file_type_fn(name, obj->options->stream_closure);
      mime_ct = mime_ct2;
      PR_Free(name);
      if (!mime_ct2 || !PL_strcasecmp(mime_ct2, UNKNOWN_CONTENT_TYPE)) {
        PR_FREEIF(mime_ct2);
        mime_ct = APPLICATION_OCTET_STREAM;
      }
    }
  }
  if (!mime_ct) mime_ct = APPLICATION_OCTET_STREAM;

  PR_FREEIF(sun_data_type);

  /* Convert recognised Sun encodings to the corresponding MIME encodings.
   However, if the X-Sun-Encoding-Info field contains more than one
   encoding (that is, contains a comma) then assign it the encoding of
   the *rightmost* element in the list; and change its Content-Type to
   application/octet-stream.  Examples:

             Sun Type:                    Translates To:
        ==================            ====================
        type:     TEXT                type:     text/plain
        encoding: COMPRESS            encoding: x-compress

        type:     POSTSCRIPT          type:     application/x-compress
        encoding: COMPRESS,UUENCODE   encoding: x-uuencode

        type:     TEXT                type:     application/octet-stream
        encoding: UNKNOWN,UUENCODE    encoding: x-uuencode
   */

  sun_data_type =
      (mult->hdrs ? MimeHeaders_get(mult->hdrs, HEADER_X_SUN_ENCODING_INFO,
                                    false, false)
                  : 0);
  sun_enc_info = sun_data_type;

  /* this "adpcm-compress" pseudo-encoding is some random junk that
   MailTool adds to the encoding description of .AU files: we can
   ignore it if it is the leftmost element of the encoding field.
   (It looks like it's created via `audioconvert -f g721'.  Why?
   Who knows.)
   */
  if (sun_enc_info && !PL_strncasecmp(sun_enc_info, "adpcm-compress", 14)) {
    sun_enc_info += 14;
    while (IS_SPACE(*sun_enc_info) || *sun_enc_info == ',') sun_enc_info++;
  }

  /* Extract the last element of the encoding field, changing the content
   type if necessary (as described above.)
   */
  if (sun_enc_info && *sun_enc_info) {
    const char* prev;
    const char* end = PL_strrchr(sun_enc_info, ',');
    if (end) {
      const char* start = sun_enc_info;
      sun_enc_info = end + 1;
      while (IS_SPACE(*sun_enc_info)) sun_enc_info++;
      for (prev = end - 1; prev > start && *prev != ','; prev--)
        ;
      if (*prev == ',') prev++;

      if (!PL_strncasecmp(prev, "uuencode", end - prev))
        mime_ct = APPLICATION_UUENCODE;
      else if (!PL_strncasecmp(prev, "gzip", end - prev))
        mime_ct = APPLICATION_GZIP;
      else if (!PL_strncasecmp(prev, "compress", end - prev))
        mime_ct = APPLICATION_COMPRESS;
      else if (!PL_strncasecmp(prev, "default-compress", end - prev))
        mime_ct = APPLICATION_COMPRESS;
      else
        mime_ct = APPLICATION_OCTET_STREAM;
    }
  }

  /* Convert the remaining Sun encoding to a MIME encoding.
   If it isn't known, change the content-type instead.
   */
  if (!sun_enc_info || !*sun_enc_info)
    ;
  else if (!PL_strcasecmp(sun_enc_info, "compress"))
    mime_cte = ENCODING_COMPRESS;
  else if (!PL_strcasecmp(sun_enc_info, "uuencode"))
    mime_cte = ENCODING_UUENCODE;
  else if (!PL_strcasecmp(sun_enc_info, "gzip"))
    mime_cte = ENCODING_GZIP;
  else
    mime_ct = APPLICATION_OCTET_STREAM;

  PR_FREEIF(sun_data_type);

  /* Now that we know its type and encoding, create a MimeObject to represent
   this part.
   */
  child = mime_create(mime_ct, mult->hdrs, obj->options);
  if (!child) {
    status = MIME_OUT_OF_MEMORY;
    goto FAIL;
  }

  /* Fake out the child's content-type and encoding (it probably doesn't have
   one right now, because the X-Sun- headers aren't generally recognised by
   the rest of this library.)
   */
  PR_FREEIF(child->content_type);
  PR_FREEIF(child->encoding);
  PR_ASSERT(mime_ct);
  child->content_type = (mime_ct ? strdup(mime_ct) : 0);
  child->encoding = (mime_cte ? strdup(mime_cte) : 0);

  status = ((MimeContainerClass*)obj->clazz)->add_child(obj, child);
  if (status < 0) {
    mime_free(child);
    child = 0;
    goto FAIL;
  }

  /* Sun attachments always have separators between parts. */
  status = MimeObject_write_separator(obj);
  if (status < 0) goto FAIL;

  /* And now that we've added this new object to our list of
   children, start its parser going. */
  status = child->clazz->parse_begin(child);
  if (status < 0) goto FAIL;

FAIL:
  PR_FREEIF(mime_ct2);
  PR_FREEIF(sun_data_type);
  return status;
}

static int MimeSunAttachment_parse_child_line(MimeObject* obj, const char* line,
                                              int32_t length,
                                              bool first_line_p) {
  MimeContainer* cont = (MimeContainer*)obj;
  MimeObject* kid;

  /* This is simpler than MimeMultipart->parse_child_line in that it doesn't
   play games about body parts without trailing newlines.
   */

  PR_ASSERT(cont->nchildren > 0);
  if (cont->nchildren <= 0) return -1;

  kid = cont->children[cont->nchildren - 1];
  PR_ASSERT(kid);
  if (!kid) return -1;

  return kid->clazz->parse_buffer(line, length, kid);
}