2016-07-18 15:06:41 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2016-07-26 16:17:31 +00:00
|
|
|
#include <strings.h>
|
2016-07-13 13:53:27 +00:00
|
|
|
#include <string.h>
|
2016-08-02 14:13:25 +00:00
|
|
|
#include <stdlib.h>
|
2016-07-13 13:53:27 +00:00
|
|
|
|
|
|
|
#include "blaze822.h"
|
|
|
|
#include "blaze822_priv.h"
|
|
|
|
|
2016-07-29 11:51:22 +00:00
|
|
|
// needs to be writable
|
|
|
|
char textplain[] = "text/plain; charset=US-ASCII";
|
|
|
|
|
2016-07-13 13:53:27 +00:00
|
|
|
int
|
|
|
|
blaze822_check_mime(struct message *msg)
|
|
|
|
{
|
2017-01-26 19:27:26 +00:00
|
|
|
char *v = blaze822_hdr(msg, "mime-version");
|
2016-07-29 14:41:45 +00:00
|
|
|
if (v &&
|
2016-07-13 13:53:27 +00:00
|
|
|
v[0] && v[0] == '1' &&
|
|
|
|
v[1] && v[1] == '.' &&
|
|
|
|
v[2] && v[2] == '0' &&
|
2016-07-29 14:41:45 +00:00
|
|
|
(!v[3] || iswsp(v[3])))
|
|
|
|
return 1;
|
|
|
|
v = blaze822_hdr(msg, "content-transfer-encoding");
|
|
|
|
if (v)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
2016-07-13 13:53:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2016-07-13 19:56:16 +00:00
|
|
|
blaze822_mime_body(struct message *msg,
|
|
|
|
char **cto, char **bodyo, size_t *bodyleno, char **bodychunko)
|
2016-07-13 13:53:27 +00:00
|
|
|
{
|
2016-07-13 19:34:46 +00:00
|
|
|
if (!msg->body || !msg->bodyend) {
|
|
|
|
*bodyo = 0;
|
|
|
|
*bodyleno = 0;
|
2016-07-14 13:20:59 +00:00
|
|
|
*bodychunko = 0;
|
|
|
|
return 0;
|
2017-01-26 19:27:26 +00:00
|
|
|
}
|
2016-07-13 13:53:27 +00:00
|
|
|
|
|
|
|
char *ct = blaze822_hdr(msg, "content-type");
|
|
|
|
char *cte = blaze822_hdr(msg, "content-transfer-encoding");
|
|
|
|
|
|
|
|
if (!ct)
|
2016-07-29 11:51:22 +00:00
|
|
|
ct = textplain;
|
2016-07-13 13:53:27 +00:00
|
|
|
|
|
|
|
char *s = ct;
|
2016-07-29 09:44:53 +00:00
|
|
|
while (*s && *s != ';') {
|
|
|
|
*s = lc(*s);
|
2016-07-13 13:53:27 +00:00
|
|
|
s++;
|
2016-07-29 09:44:53 +00:00
|
|
|
}
|
2016-07-13 13:53:27 +00:00
|
|
|
|
|
|
|
*cto = ct;
|
|
|
|
|
|
|
|
if (cte) {
|
2016-07-13 19:56:16 +00:00
|
|
|
if (strncasecmp(cte, "quoted-printable", 16) == 0) {
|
2016-11-08 15:19:26 +00:00
|
|
|
blaze822_decode_qp(msg->body, msg->bodyend, bodyo, bodyleno, 0);
|
2016-07-13 19:56:16 +00:00
|
|
|
*bodychunko = *bodyo;
|
|
|
|
} else if (strncasecmp(cte, "base64", 6) == 0) {
|
2016-07-13 13:53:27 +00:00
|
|
|
blaze822_decode_b64(msg->body, msg->bodyend, bodyo, bodyleno);
|
2016-07-13 19:56:16 +00:00
|
|
|
*bodychunko = *bodyo;
|
|
|
|
} else {
|
2016-07-13 13:53:27 +00:00
|
|
|
cte = 0;
|
2016-07-13 19:56:16 +00:00
|
|
|
}
|
2016-07-13 13:53:27 +00:00
|
|
|
}
|
|
|
|
if (!cte) {
|
|
|
|
*bodyo = msg->body;
|
|
|
|
*bodyleno = msg->bodyend - msg->body;
|
2016-07-13 19:56:16 +00:00
|
|
|
*bodychunko = 0;
|
2016-07-13 13:53:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-07-16 20:18:46 +00:00
|
|
|
int
|
|
|
|
blaze822_mime_parameter(char *s, char *name, char **starto, char **stopo)
|
|
|
|
{
|
2016-07-20 21:11:13 +00:00
|
|
|
if (!s)
|
|
|
|
return 0;
|
2016-07-16 20:18:46 +00:00
|
|
|
s = strchr(s, ';');
|
|
|
|
if (!s)
|
|
|
|
return 0;
|
|
|
|
s++;
|
|
|
|
|
|
|
|
size_t namelen = strlen(name);
|
|
|
|
|
|
|
|
while (*s) {
|
|
|
|
while (iswsp(*s))
|
|
|
|
s++;
|
|
|
|
if (strncasecmp(s, name, namelen) == 0 && s[namelen] == '=') {
|
|
|
|
s += namelen + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
s = strchr(s+1, ';');
|
|
|
|
if (!s)
|
|
|
|
return 0;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
if (!s || !*s)
|
|
|
|
return 0;
|
|
|
|
char *e;
|
|
|
|
if (*s == '"') {
|
|
|
|
s++;
|
|
|
|
e = strchr(s, '"');
|
|
|
|
if (!e)
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
e = s;
|
|
|
|
while (*e && !iswsp(*e) && *e != ';')
|
|
|
|
e++;
|
|
|
|
}
|
|
|
|
|
|
|
|
*starto = s;
|
|
|
|
*stopo = e;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-07-13 13:53:27 +00:00
|
|
|
int
|
|
|
|
blaze822_multipart(struct message *msg, struct message **imsg)
|
|
|
|
{
|
|
|
|
char *s = blaze822_hdr(msg, "content-type");
|
|
|
|
if (!s)
|
|
|
|
return 0;
|
|
|
|
while (*s && *s != ';')
|
|
|
|
s++;
|
|
|
|
if (!*s)
|
|
|
|
return 0;
|
|
|
|
|
2016-07-16 20:27:13 +00:00
|
|
|
char *boundary, *boundaryend;
|
|
|
|
if (!blaze822_mime_parameter(s, "boundary", &boundary, &boundaryend))
|
2016-07-13 13:53:27 +00:00
|
|
|
return 0;
|
|
|
|
char mboundary[256];
|
2016-07-16 20:27:13 +00:00
|
|
|
int boundarylen = boundaryend-boundary+2;
|
|
|
|
|
|
|
|
if (boundarylen >= 256)
|
|
|
|
return 0;
|
2016-07-13 13:53:27 +00:00
|
|
|
mboundary[0] = '-';
|
|
|
|
mboundary[1] = '-';
|
2016-07-16 20:27:13 +00:00
|
|
|
memcpy(mboundary+2, boundary, boundarylen-2);
|
|
|
|
mboundary[boundarylen] = 0;
|
2016-07-13 13:53:27 +00:00
|
|
|
|
|
|
|
char *prevpart;
|
|
|
|
if (*imsg)
|
|
|
|
prevpart = (*imsg)->bodyend;
|
|
|
|
else
|
|
|
|
prevpart = msg->body;
|
|
|
|
|
2016-07-26 16:10:39 +00:00
|
|
|
char *part = mymemmem(prevpart, msg->bodyend - prevpart, mboundary, boundarylen);
|
2016-07-13 13:53:27 +00:00
|
|
|
if (!part)
|
|
|
|
return 0;
|
2016-07-26 20:15:30 +00:00
|
|
|
|
2016-07-13 13:53:27 +00:00
|
|
|
part += boundarylen;
|
2016-07-13 14:05:31 +00:00
|
|
|
if (*part == '\r')
|
|
|
|
part++;
|
|
|
|
if (*part == '\n')
|
2016-07-13 13:53:27 +00:00
|
|
|
part++;
|
|
|
|
else if (*part == '-' && part < msg->bodyend && *(part+1) == '-')
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 0; // XXX error condition?
|
|
|
|
|
2016-07-26 16:10:39 +00:00
|
|
|
char *nextpart = mymemmem(part, msg->bodyend - part, mboundary, boundarylen);
|
2016-07-13 13:53:27 +00:00
|
|
|
if (!nextpart)
|
|
|
|
return 0; // XXX error condition
|
|
|
|
|
2016-08-06 17:09:49 +00:00
|
|
|
if (*(nextpart-1) == '\n')
|
|
|
|
nextpart--;
|
|
|
|
if (*(nextpart-1) == '\r')
|
|
|
|
nextpart--;
|
|
|
|
|
2016-07-13 13:53:27 +00:00
|
|
|
*imsg = blaze822_mem(part, nextpart-part);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2016-08-02 14:13:25 +00:00
|
|
|
|
|
|
|
blaze822_mime_action
|
|
|
|
blaze822_walk_mime(struct message *msg, int depth, blaze822_mime_callback visit)
|
|
|
|
{
|
|
|
|
char *ct, *body, *bodychunk;
|
|
|
|
size_t bodylen;
|
|
|
|
|
|
|
|
blaze822_mime_action r = MIME_CONTINUE;
|
|
|
|
|
|
|
|
if (blaze822_mime_body(msg, &ct, &body, &bodylen, &bodychunk)) {
|
|
|
|
|
|
|
|
r = visit(depth, msg, body, bodylen);
|
|
|
|
|
|
|
|
if (r == MIME_CONTINUE) {
|
|
|
|
if (strncmp(ct, "multipart/", 10) == 0) {
|
|
|
|
struct message *imsg = 0;
|
|
|
|
while (blaze822_multipart(msg, &imsg)) {
|
|
|
|
r = blaze822_walk_mime(imsg, depth+1, visit);
|
|
|
|
if (r == MIME_STOP)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (strncmp(ct, "message/rfc822", 14) == 0) {
|
|
|
|
struct message *imsg = blaze822_mem(body, bodylen);
|
|
|
|
if (imsg)
|
|
|
|
blaze822_walk_mime(imsg, depth+1, visit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(bodychunk);
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|