Skip to content
Snippets Groups Projects
Commit 9520455c authored by Stephan Bosch's avatar Stephan Bosch
Browse files

Body extension: made parsing of content-type header more robust.

parent ecf0634c
No related branches found
No related tags found
No related merge requests found
...@@ -62,8 +62,7 @@ static bool _is_wanted_content_type ...@@ -62,8 +62,7 @@ static bool _is_wanted_content_type
if (wanted_subtype == NULL) { if (wanted_subtype == NULL) {
/* match only main type */ /* match only main type */
if (strlen(*wanted_types) == type_len && if (strlen(*wanted_types) == type_len &&
strncasecmp(*wanted_types, content_type, strncasecmp(*wanted_types, content_type, type_len) == 0)
type_len) == 0)
return TRUE; return TRUE;
} else { } else {
/* match whole type/subtype */ /* match whole type/subtype */
...@@ -162,12 +161,21 @@ static const char *_parse_content_type(const struct message_header_line *hdr) ...@@ -162,12 +161,21 @@ static const char *_parse_content_type(const struct message_header_line *hdr)
struct rfc822_parser_context parser; struct rfc822_parser_context parser;
string_t *content_type; string_t *content_type;
/* Initialize parsing */
rfc822_parser_init(&parser, hdr->full_value, hdr->full_value_len, NULL); rfc822_parser_init(&parser, hdr->full_value, hdr->full_value_len, NULL);
(void)rfc822_skip_lwsp(&parser); (void)rfc822_skip_lwsp(&parser);
/* Parse content type */
content_type = t_str_new(64); content_type = t_str_new(64);
if (rfc822_parse_content_type(&parser, content_type) < 0) if (rfc822_parse_content_type(&parser, content_type) < 0)
return ""; return "";
/* Header field must end here, otherwise content-type is invalid after all */
(void)rfc822_skip_lwsp(&parser);
if ( parser.data != parser.end && *parser.data != ';' )
return "";
/* Success */
return str_c(content_type); return str_c(content_type);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.